一、主机安装NFS
#sudo apt-get install nfs-kernel-server
Ubuntu 10.10中的已经是最新版本了,无需安装
打开/etc/exports文件,在末尾加入:
/tftpboot *(rw,sync,no_root_squash)
注:nfs允许挂载的目录及权限,在文件/etc/exports中进行定义, 各字段含义如下:
/tftpboot:要共享的目录
* :允许所有的网段访问
rw :读写权限
sync:资料同步写入内在和硬盘
no_root_squash:nfs客户端共享目录使用者权限
重启服务:
#sudo /etc/init.d/portmap restart <---重启portmap,很重要
#sudo /etc/init.d/nfs-kernel-server restart <---重启nfs服务
#showmount -e <---显示共享出的目录
二、开发板挂载主机共享目录
在超级终端中输入命令:
#mount -t nfs -o nolock 192.168.1.103:/tftpboot /mnt
其中 192.168.1.103:/tftpboot 是主机的共享目录 /mnt是所挂载的目的地
退出挂载命令:
#umount /mnt
挂载成功---->
NFS开启命令:
sudo service portmap start
sudo service nfs-kernel-server start |