Dear plcnext team, We can’t use nfs on the latest firmware anymore. Mounting our share results in: mount -t nfs -o nolock 10.131.1.4:/export/home/bla /home/bla mount: /home/bla: bad option; for several filesystems (e.g. nfs, cifs) you might need a /sbin/mount. helper program. I’ve tried to install nfs-utils already but this did not fix it either. Is this a known bug or something I am missing? Kind regards, Michael
Hi, I’ve fixed it event though I do not know if this is the ideal solution: 1. install ipkg package manager wget -O - http://ipkg.nslu2-linux.org/optware-ng/bootstrap/buildroot-armeabihf-bootstrap.sh | sh export PATH=$PATH:/opt/bin:/opt/sbin 2. install nfs-utils ipkg update ipkg install nfs-utils 3. create a link of /opt/sbin/mount.nfs in /sbin/mount.nfs and do the same for umount.nfs as follows: ln -s /opt/sbin/mount.nfs /sbin/mount.nfs ln -s /opt/sbin/umount.nfs /sbin/umount.nfs
Hey Michael Kroen, this happened because we now have a full implementation of mount and there is the nfs feature not included.. You can switch back to the busybox implementation of previous FW versions if you want to by adding “busybox” to your command. “busybox mount -t nfs -o nolock 10.131.1.4:/export/home/bla /home/bla” Maybe we will add mount.nfs in one of the next versions. thanks for your report. kind regards, Oliver

