解释一下: 4、更新exports文件 sudo exportfs -r 5、重启NFS服务 sudo /etc/init.d/nfs-kernel-server restart 重启nfs服务 6、进行测试 尝试一下挂载本地磁盘(我的linux系统IP为202.198.137.18,将/home/nfsboot挂载到/mnt)
$ sudo mount 202.198.137.18:/home/nfsboot /mnt
运行 $ df 看看结果
$ sudo umount /mnt 5、嵌入式系统中使用NFS服务挂载(来自网上)
嵌入式要mount 的时候 使用
mount -o nolock 192.168.1.99:/armnfs/new8120 /mnt/net
注:在内核的配置里面的
Networking options --->选项中
启用 TCP/IP networking
启用IP: kernel level autoconfiguration
General setup ---> 选项中 ,
Default kernel command string: (默认的内核命令行)
加入绿色字中的字符
root=/dev/nfs rw nfsroot=192.168.1.99:/armnfs/ ip=192.168.1.201 init=/linuxrc console=ttyS0
File system ---> Network File System --->选项
启用 NFS file system support
启用 Provide NFSv3 client support
启用 Root file system on NFS
原文:http://blog.csdn.net/SpringBuilder/archive/2008/11/18/3326684.aspx