20190521
openwrt的nfs服务器和客户端安装:
make menuconfig -->
Base system -->[*]busybox -->Linux System Utilities -->[*] Support
mounting NFS file system on Linux < 2.6.23
Kernel modules -->Filesystems --><*>kmod-fs-nfs
<*>kmod-fs-nfs-common
<*>kmod-fs-nfsd
Utilities -->Filesystem -->[*]nfs-utils
Network -->Filesystem-->[*]nfs-kernel-server
-->[*]nfs-kernel-server-utils
ubuntu的nfs服务器和客户端安装:
nfs服务器和客户端的安装方法,上网搜索
错误解决:
mount:文件系统类型错误、选项错误、192.168.56.107:/root/nfsshare 有坏超级块,
缺少代码页或助手程序,或其他错误
(对某些文件系统(如 nfs、cifs) 您可能需要
一款 /sbin/mount.<类型> 助手程序)
有些情况下在 syslog 中可以找到一些有用信息- 请尝试
dmesg | tail 这样的命令看看。
解决方案:
sudo apt-get install nfs-common
virtualbox配置:
openwrt虚拟机:
网卡2
[*]启用网络连接(E)
连接方式(A):仅主机(Host-Only)网络
界面名称(N):VirtualBox Host-Only Ethernet Adapter
|>高级(d)
ubuntu虚拟机:
网卡1
[*]启用网络连接(E)
连接方式(A):仅主机(Host-Only)网络
界面名称(N):VirtualBox Host-Only Ethernet Adapter
|>高级(d)
/etc/exports配置:
openwrt虚拟机的/etc/exports内容:
/mnt *(ro,all_squash,insecure,sync)
ubuntu虚拟机的/etc/exports内容:
/home/ubuntu/nfsshare *(rw,sync,no_root_aquash,no_subtree_check)
注意:两个配置方法不同,否则会挂载不上的。
ubuntu虚拟机终端执行:
sudo mount -t nfs 192.168.56.107:/mnt ~/mntshare -o nolock
openwrt虚拟机终端执行:
sudo mount -t nfs 192.168.56.111:/home/ubuntu/nfsshare /root/nfsshare -o nolock