13y, 271d ago
[edited]
Install the needed packages:
sudo apt-get install autofs nfs-client:
Enable auto-mount to search network
sudo vim /etc/auto.master
Un-comment the /net line:
Restart autofs:
sudo service autofs restart
Test:
cd /net/[nfs server hostname]
cd /net/guile.foxhop.net
Success!
Now I would suggest creating a link in your home directory.
This is how I made the link:
ln -s /net/guile.foxhop.net/mnt/mirror /home/fox/mirror
temporary NFS mount
# as root
apt-get install nfs-common
mkdir /mnt/temp-mount/
mount -o soft,intr,rsize=8192,wsize=8192 server:/data/NbClient /mnt/temp-mount/
# when finished, clean up mount
umount /mnt/temp-mount/
Comments