MOUNT SYNOLOGY NFS SHARED FOLDER ON LINUX

A step-by-setp setup instructions

Posted by argansos on December 16, 2020
Mount directly via terminal (need to do it every time you restart the pc)
1
2
# Mount the nfs shared folder
sudo mount -t nfs 169.254.254.168:/volume1/tom /nfsfile

You may need to install nfs-common before you mount nfs shared folder.

Automatically mount after the computer started
1
2
# Edit the fstab file
sudo vi /etc/fstab

Then, append the following text in the end of the file, save and reboot.

169.254.254.166:/volume1/tom /nfsfile nfs defaults 0 0