1、[root@localhost /]# exportfs -rv
exportfs: No 'sync' or 'async' option specified for export"*:/home/haiyang".
Assuming default behaviour ('sync').
NOTE: this default has changed from previousversions
原因:是权限没有设定好
将/etc/exports中的/home/haiyang 202.204.53.224(rw)
改为 /home/haiyang 202.204.53.224(rw,sync)即可搞定
2、[root@localhost /]# mount -t nfs 202.204.53.224:/home/haiyang/mnt
[root@localhost /]# cd /mnt
bash: cd: /mnt: Permission denied
原因:应该是在root下不能访问挂载的文件
解决:转为user目录下访问即可解决
[root@localhost /]# su haiyang
[haiyang@localhost /]$ cd
[haiyang@localhost haiyang]$ cd /mnt
[haiyang@localhost mnt]$ ls
liuux_source software VMToosl
3、[root@FORLINX6410]# mount -t nfs 202.204.53.224:/home/haiyang/mnt
mount: 202.204.53.224:/home/haiyang failed, reason given by server:Permission denied
原因:不知道
解决:# mount -o nolock -t nfs 202.204.53.224:/home/haiyang /mnt
4、nfs板子挂载过程
(1)设置板子和宿主机的网段一致
(2)启动nfs:service nfs start
启动portmap:service portmap start
关闭防火墙:service iptables stop
(3)主机上设置 vi /etc/exports为/home/haiyang 202.204.53.*(rw,sync)
注:/home/haiyang为主机上共享的文件目录,202.204.53.*(rw,sync)为板子为202.204.53.网段,都可以共享主机上的共享文件
(4)在板子的dnw上输入
# mount -o nolock -t nfs 202.204.53.224:/home/haiyang /mnt
即可将主机的/home/haiyang 挂载到板子的/mnt目录下
注:如果挂载的内容太大,超出了板子的容量,可能会报错,无法查看挂载的东西。
5、卸载nfs挂载的目录
[root@FORLINX6410]# umount/mnt
注意:首先要退出/mnt目录,再卸载;否则会出现错误:umount: can't umount /mnt: Device orresource busy
6、查看是否安装了nfs:service nfs start