Had another look on the Arch Linux forum and this post rang a few bells:
https://bbs.archlinux.org/viewtopic.php?id=193410

I now have a version 3 NFS client connection working on my RPi.  I was
reminded that to make a version 3 mount of a NFS share requires rpcbind,
but this is disabled by default in SOA.  Once the rpcbind service is
enabled you can mount the NFS share temporarily at the command line. or
permanently via the webui.

1. As root enable rpcbind


Code:
--------------------
    
  systemctl enable rpcbind.service
  systemctl start rpcbind.service
  
--------------------


2. Enter share details on WebUI, using a "vers=3" option, e.g.:


'[image: http://s28.postimg.org/twda4chdl/soanfs3.jpg]'
(http://postimg.org/image/twda4chdl/)

add share

'[image: http://s15.postimg.org/4jbzi3laf/soanfs4.jpg]'
(http://postimg.org/image/4jbzi3laf/)

3. Check /etc/fstab has been re-written. e.g.:


Code:
--------------------
    
  [root@soa-rpi ~]# cat /etc/fstab
  #
  # /etc/fstab: static file system information
  #
  # <file system> <dir>   <type>  <options>       <dump>  <pass>
  /dev/mmcblk0p1  /boot   vfat    defaults        0       0
  # start added by soa-web
  192.168.0.20:/media/musdata/Test        /mnt/disk1      nfs     
ro,vers=3,rsize=1024,wsize=1024 0       0
  # end added by soa-web
  
  
--------------------


Let me know if this works for you.


------------------------------------------------------------------------
Krisbee's Profile: http://forums.slimdevices.com/member.php?userid=59080
View this thread: http://forums.slimdevices.com/showthread.php?t=101624

_______________________________________________
unix mailing list
[email protected]
http://lists.slimdevices.com/mailman/listinfo/unix

Reply via email to