[root@localhost /]# mount -t nfs 192.168.1.202:/home/share /mnt
mount: RPC: Timed out
[root@localhost /]# cd /mnt/
[root@localhost mnt]# ls
cdrom floppy (注意:这里没有nfs这个目录!)
[root@localhost mnt]# mkdir nfs
[root@localhost mnt]# ls
cdrom floppy nfs
[root@localhost mnt]# cd /
[root@localhost /]# mount -t nfs 192.168.1.202:/home/share /mnt/nfs/
[root@localhost /]# cd /mnt/nfs/
[root@localhost nfs]# ls
hello linux-2.6.30
.............
我的NFS配置都没有问题,但是还是出现RPC的问题
通过我的尝试发现:
要挂载nfs格式的文件,就必须要挂载到nfs这个文件夹中。要不然就出现了mount: RPC: Timed out这样的错误。
我尝试挂载到别的目录下,看看能不能挂,结果能挂
[root@localhost nfs]# cd /
[root@localhost /]# umount mnt/nfs/
[root@localhost /]# mount -t nfs 192.168.1.202:/home/share /mnt/cdrom/
[root@localhost /]# cd /mnt/cdrom/
[root@localhost cdrom]# ls
hello
linux-2.6.30
..................
这个说明nfs格式的文件不能直接挂到/mnt这个文件夹中!(不解啊!!!!!!)