我无法挂载 nfs

我无法挂载 nfs

我有一块开发板,上面有我自己使用 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 时遇到问题可能是什么原因造成的?

预先感谢您的任何帮助。

相关内容