File Shares

Mount an NFS Share

mount 192.168.1.1:/backups /var/backups

If the error "mount.nfs: Protocol family not supported" is received:

mount -o vers=3 192.168.1.1:/tintri /tmp/mnt

Unmount the share

umount /tmp/mnt

Recursively List All Files in a Share:

smbclient  //192.168.1.1/users$ -c 'recurse;ls' -U DOMAIN/Administrator --pw-nt-hash

Last updated

Was this helpful?