NFS

Network file share protocol allows users to share the disk accross the network which can be mounted to the machine on demand

Accessing

showmount -e $ip

Mounting

# mount -t cifs/nfs $ip:<shared_folder> <target> -o nolock
mkdir /tmp/mount
mount -t cifs $ip:dnoscp/ /tmp/mount -o nolock

Last updated