NFS is compatible across Windows, MacOS and Linux.
NFS stands for Network File System.
Microsoft has a handy overview of NFS that will teach you the basics.
Check out our Synology NFS guide for instructions on how to enable NFS on your Synology NAS.
In Ubuntu, run a command like the following:
mkdir -p /home/synology/homes
mount -t nfs 192.168.86.50:/volume1/homes /home/synology/homes
mkdir -p /home/synology/homes
does. It makes a directory (mkdir
) at /home/synology/homes
. The -p
flag creates any parent directories that don't already exist./volume1/homes
. If you're on a different system, experiment with different paths. Also make sure that your NFS share allows read/write access to your client. Permissions can be tricky to debug and require some persistence.nfs://192.168.86.50/volume1/homes