I’ve been using nfs to access shared folders on my Synology. After upgrading to 19.3 I noticed some stuttering playing some movies, especially 4k60p content and want to see if using fstab mounting will help.
I tried following the tutorial from Chillbo but am having some problems getting it to work.
Here’s my output from showmount -e
osmc@vero4k2:~$ showmount -e 192.168.1.245
Export list for 192.168.1.245:
/volume1/video *
/volume1/4kvideo *
Thanks Tom, after changing those commands I can now see the directories under volume1 but I can’t change to them and sudo mount gives me an error.
osmc@vero4k2:~$ sudo nano /etc/fstab
osmc@vero4k2:~$ sudo mount -a
osmc@vero4k2:~$ sudo systemctl daemon-reload
osmc@vero4k2:~$ sudo systemctl restart remote-fs.target
osmc@vero4k2:~$ cd /volume1/video
-bash: cd: /volume1/video: No such device
osmc@vero4k2:~$ cd /volume1
osmc@vero4k2:/volume1$ ls
4kvideo video
osmc@vero4k2:/volume1$
osmc@vero4k2:/volume1$ sudo mount /volume1/video
mount.nfs: access denied by server while mounting 192.168.1.245:/volume1
osmc@vero4k2:/volume1$ sudo mount /volume1/4kvideo
mount.nfs: access denied by server while mounting 192.168.1.245:/volume1
Is a mountpoint folder the same as a shared folder? If so then yes I created the 2 shared folders on my NAS and have been using them successfully for quite a while without fstab.
Yes, I can now play titles from /mnt/4kvideo but not /mnt/video
osmc@vero4k2:~$ mount | grep 4k
devtmpfs on /dev type devtmpfs (rw,relatime,size=1015064k,nr_inodes=253766,mode=755)
192.168.1.245:/volume1/4kvideo on /mnt/4kvideo type nfs (rw,relatime,vers=3,rsize=131072,wsize=131072,namlen=255,hard,proto=tcp,timeo=600,retrans=2,sec=sys,mountaddr=192.168.1.245,mountvers=3,mountport=892,mountproto=udp,local_lock=none,addr=192.168.1.245)
osmc@vero4k2:~$