First, make sure that the relevant Linux components are installed.
For Debian/Ubuntu and derivatives:
Code:
sudo apt-get install nfs-common
For an example:
Code:
Code:
sudo mkdir /mnt/myfolder
Code:
sudo nano /etc/fstab
Code:
myserver:/mypath /mnt/myfolder nfs defaults 0 0
Ctrl+X to exit the nano editor, Y to save changes when prompted.
To test if your fstab changes are operational:
Code:
sudo mount -a
Once mount -a succeeded, check if your share content shows up in the local mount point folder:
Code:
ls /mnt/myfolder
Leave a comment: