Hello,
i’m having trouble mounting my NFS shares on a new rpi3, i have it setup exactly as my rpi2 yet the shares are not mounting!.
in /home i used sudo to create the two shares “peliculasnfs” and “seriesnfs” and chmod 777 them
then in etc/fstab i set:
osmc@osmc:~$ cat /etc/fstab /dev/mmcblk0p1 /boot vfat defaults,noatime 0 0 /dev/mmcblk0p2 / ext4 defaults,noatime 0 0 192.168.2.9:/mnt/tank/general/peliculas /home/osmc/peliculasnfs nfs _netdev,udp,noatime,vers=3,ro,auto,rsize=32768,wsize=32768 0 0 192.168.2.9:/mnt/tank/general/Series /home/osmc/seriesnfs nfs _netdev,udp,noatime,vers=3,ro,auto,rsize=32768,wsize=32768 0 0
but it’s not working.
if i manually mount it with sudo mount -r -v -t nfs -o udp,noatime,vers=3,ro,auto,rsize=32768,wsize=32768 192.168.2.9:/mnt/tank/general/Series /home/osmc/seriesnfs
then it works flawlessly.
what am i missing?