正常下面的语句即可:
mount -t nfs 192.168.1.102:/home/nfs /mnt但在使用基于busybox的文件系统时,进行操作是会卡死。等待
解决办法:
mount -t nfs -o nolock 192.168.1.102:/home/nfs /mnt==>nolock表示不使用文件锁功能。
本文介绍在使用基于BusyBox的文件系统时遇到的NFS挂载问题及解决方法。通过添加'nolock'选项避免了挂载过程中的卡死现象。
正常下面的语句即可:
mount -t nfs 192.168.1.102:/home/nfs /mnt解决办法:
mount -t nfs -o nolock 192.168.1.102:/home/nfs /mnt
4100

被折叠的 条评论
为什么被折叠?