Install software:

opkg update
opkg install  kmod-fs-nfs-common
opkg install  kmod-fs-nfs
opkg install  nfs-utils

Testing:

mkdir -p /mnt/nfs/var/nfs
mount -t nfs 192.168.0.220:/var/nfs /mnt/nfs/var/nfs -o nolock
cd /mnt/nfs/var/nfs
touch test111

Mount NFS at reboot:

nano /etc/rc.local
...
wifi-live-or-reset
mount -t nfs 192.168.0.220:/var/nfs /mnt/nfs/var/nfs -o nolock
exit 0

Comments powered by CComment