Here a quick guide to how to mount / list / umount an NFS NAS drive

# install nfs-common
sudo apt-get install nfs-common
# create a folder inside mnt
sudo mkdir /mnt/<insertfoldername>
# mount remote drive into that folder
sudo mount -t nfs <ip>:/<folder> /mnt/<folder>
# list all the mounted nfs
mount -l | grep nfs
# disconnect - umount drive
# f == force, l == lazy
umount -f -l /mnt/backup
Categories: BashServer

0 Comments

Leave a Reply

Avatar placeholder

Your email address will not be published.