我有一块开发板,上面有我自己使用 Yocto Project 创建的 Linux 发行版,还有一台装有 Ubuntu 的笔记本电脑。我希望开发板作为服务器,笔记本电脑作为客户端。
在开发板上我创建了一个/nfsserver
想要/mnt/nfsclient
在 Ubuntu 上安装的目录。
的内容/etc/exports
如下:
/nfsserver clientIP(rw,no_root_squash,sync)
rpcinfo -p | grep nfs
在服务器和rpcinfo -p serverIP | grep nfs
客户端上显示:
100003 2 tcp 2049 nfs
showmount -e
在服务器上显示:
/nfsserver clientIP
showmount -e serverIP
客户端显示:
Export list for serverIP:
/nfsserver clientIP
当我尝试使用时,sudo mount -V 2 -t nfs serverIP:/nfsserver /mnt/nfsclient
我得到以下输出:
mount from util-linux 2.31.1 (libmount 2.31.1: selinux, btrfs, assert, debug)
df -h
显示没有新条目。
我在挂载 nfs 时遇到问题可能是什么原因造成的?
预先感谢您的任何帮助。