Access Files (using NFS) on the Synology NAS from a Virtual Machine on the Synology NAS

In this video I access files on a Synology NAS from a virtual machine running on the Synology NAS. A prerequisite to this is to set up an SMB share on the Synology NAS.

Accessing using SMB: https://youtu.be/afHieDHizjc

Synology Playlist: https://www.youtube.com/playlist?list=PLErU2HjQZ_ZPL8Yx7FxnY6xKxcMiVWkkJ

Synology DS918+ (Amazon Affiliate)
US: https://amzn.to/2EECW3Q
UK: https://amzn.to/35BD9jW
CA: https://amzn.to/35ILfYs
DE: https://amzn.to/2VsP561
ES: https://amzn.to/3eIwJWc
FR: https://amzn.to/2VqZHCo
IT: https://amzn.to/2XEQC8T
IN: https://amzn.to/2Th9pom

(x4) WD RED WD40EFRX CMR* (Amazon Affiliate)
US: https://amzn.to/3ewSHvC
UK: https://amzn.to/354lcOk
CA: https://amzn.to/3l5syGK
DE: https://amzn.to/2IfafjF
ES: https://amzn.to/2TXqa99
FR: https://amzn.to/35178VF
IT: https://amzn.to/32fNx28
IN: https://amzn.to/3l5X6bh
AU: https://amzn.to/2JCUyn7

* Please verify that you have chosen the WD40EFRX (CMR) model when ordering. Also check that you got the correct drives when your order arrives. Avoid the WD40EFAX SMR models!

Crucial 16GB (8GBx2) RAM CT2K8G3S186DM (Amazon Affiliate)
US: https://amzn.to/35TmsB1
UK: https://amzn.to/35Pvsa5
CA: https://amzn.to/2thVWUy
ES: https://amzn.to/2VgoecJ
FR: https://amzn.to/2NoBZSv
IT: https://amzn.to/2VgwIkb
DE: https://amzn.to/3avuVwe (HX318LS11IB/8)
IN: https://amzn.to/37Y1Fgz
AU: https://amzn.to/2CGypRH

Install NFS Software
sudo apt install nfs-common
Create Mount Point
sudo mkdir /mnt/DS_Share
Mount Share
sudo mount.nfs ip_of_Synology:/volume1/DS_Share /mnt/DS_Share
Move to Share Directory
cd /mnt/DS_Share
List Directory Contents
ls
Create Test File
touch temp
Remove Test file
rm temp
Move to Home Directory
cd
Unmount Share
sudo umount /mnt/DS_Share
Mount Share on Boot
sudo nano /etc/fstab
ip_of_Synology:/volume1/DS_Share /mnt/DS_Share nfs defaults,rsize=32768,wsize=32768 0 0

Type control-o to save, control-x to exit.

Mount All Share in fstab
sudo mount -a
View NFS Manual Page
sudo man nfs