-
Notifications
You must be signed in to change notification settings - Fork 1
[Snippet] Mount a NFS drive
Éric Massé edited this page Mar 15, 2015
·
5 revisions
- Setting up an NFS Client
- Mounting WD My Cloud to Ubuntu 13.10 folder
- Setting up an NFS Server and Client on Debian Wheezy
- Snippet: Setup-sudoedit
sudo apt-get install nfs-common
showmount -e 192.168.1.21
sudo mount -o rw,soft,intr,nfsvers=3 192.168.1.21:/media/wdmycloud/shares /shared
sudoedit /etc/fstab
192.168.1.21:/media/wdmycloud/shares /shared nfs rw,soft,intr,rsize=8192,wsize=8192,addr=192.168.1.21 0 0