一:服务器端
第一步:关闭防火墙
sudo ufw disable
第二步:安装nfs
sudo apt-get install nfs-kernel-server
第三步:
打开/etc/exports文件,在文件末尾入加入:
/home/wyy/tmp_share *(rw,sync,no_root_squash)
注:nfs允许挂载的目录及权限,在文件/etc/exports中进行定义,各字段含义如下:
/home/wyy/tmp_share:要共享的目录
*:允许所有的网段访问
rw:读写权限
sync:资料同步写入内在和硬盘
no_root_squash:nfs客户端共享目录使用者权限
第四步:重启服务:
sudo /etc/init.d/nfs-kernel-server restart //重启nfs服务
第五步: showmount -e //显示共享出的目录
二:客户端
nfs client端安装和配置
(1)安装nfsclient
sudo apt-get install nfs-common
(2)查看nfsserver上共享的目录
#sudo mount -t nfs 192.168.10.71:/home/wyy/tmp_share /mnt 或者
mount -o nolock 192.168.10.71:/home/wyy/tmp_share /mnt/
注意:挂载在板子也一样,如下就是在板子上的操作
mount -t nfs -o nolock 192.168.10.71:/home/wyy/tmp_share /mnt/nfs
192.168.10.71:服务器IP 最好板子和服务同个网段即板子IP为:192.168.10.x
板子IP可以通过ifconfig eth0 xxx.xxx.xxx.xxx 来改 然后可以用ping来测试下两者是否互通。
192.168.10.71为服务器端IP地址这样就把共享目录挂到了/mnt目录
取消挂载用这个指令:
#sudo umount /mnt