[SOLVED] Unable to browse my NFS folder shares (But does work on Pi)

Hi,

Just received the Vero today, updated everything and tried to add my video folder, a NFS share.

I can see my server, see the video folder. but I am unable to browse the folder (or any other of my shares)
My raspberry has always worked properly with the shares, never a problem. The raspberry is at the moment also connected and has normal access to my shares.

I have already set the insecure flag on my NFS Export file:

/home/xxx/Videos 192.168.1.4/192.168.1.150(rw,async,no_subtree_check,insecure,all_squash,anonuid=0,anongid=0)
/home/xxx/Music192.168.1.4/192.168.1.150(rw,async,no_subtree_check,insecure,all_squash,anonuid=0,anongid=0)
/home/xxx/Pictures 192.168.1.4/192.168.1.150(rw,async,no_subtree_check,insecure,all_squash,anonuid=0,anongid=0)

I can see the folders, but not browse them. I also set a folder to 777, no effect

Can anyone help please?
Do I need to provide a log, what log do you need?

The format of your exports file doesn’t look quite right to me, although I haven’t got a PI or Vero or played with OSMC yet.

192.168.1.4/192.168.1.150 doesn’t look right, are they the two hosts you are trying to grant access to? Or a range of IP addresses?

It should be in the format :-

export host1(options) host2(options) hostn(options)
e.g
/home/xxx/Videos 192.168.1.4(rw,async,etc…) 192.168.1.150(rw,…)

Or if trying to do a range of IP :-
/home/xxx/Videos 192.168.1.0/24(rw,…)

The entry 192.168.1.0/24 = hosts 192.168.1.1 to 192.168.1.255

Try changing your files and see if that helps, and re-export your nfs shares on your server, probably :-
/usr/sbin/exportfs -r

But would really depend on your server flavour :slight_smile:

Thank you for the advise, the 192.168.1.4/192.168.1.150 was indeed defined as a range.

I changed the the “range” to 192.168.1.0/24 for each share and:

  • ran the command sudo /usr/bin/exportsfs -r
  • restarted the NFS server

The Vero can see my shares again :smile:

ps. strange that it always has worked with the Pi

SOLVED!!