CONFIGURE NFS ON A SYNOLOGY
Here is how I configure NFS on my synoloy so that I can copy files from my synology over to my Ubuntu 22.04 AI system that uses a JBOD
Login into your synology
Click Control Panel
Click File Services
Select the NFS Tab at the top
Place a checkmark next to Enable NFS
I use NFSv3
Then Click Apply or Save/
Go back to Control Panel
Then select Shared Folder
Click on the Share that you want to Enable NFS on
Click Edit
Then click NFS Permissions
Select Create
Type in the IP for your Ubuntu 22.04 computer and make sure the rest of the settings are set just like the picture here:
Click Save
Then on your Ubuntu box you will want to
Open a Terminal
sudo su –
cd /mnt
sudo mount -t nfs 192.168.1.100:/volume1/Folder /mnt/synology
replace Folder with your actual folder, and use the ip of the share you want to copy from
cd /mnt/synology
cp -R -v /mnt/synology/* /media/ubuntu/JBOD\ Disk\ 5/
this will copy everything from the synology folder that is connected to your synology, and it will place it into JBOD disk 5 (change the paths to whatever you need for you)