1、安装NFS服务器:apt-get install nfs-kernel-server
2、设置共享文件夹:vim /etc/exports,添加要共享的(多个)目录,如:
/home/sl/ding *(rw,sync,no_root_squash)
/home/hhit/workspace *(rw,sync,no_root_squash)
(前面那个目录/home/sl/ding是与nfs服务客户端共享的目录,*代表允许所有的网段访问(也可以使用具体的IP)
rw:挂接此目录的客户端对该共享目录具有读写权限
sync:资料同步写入内存和硬盘
no_root_squash:客户机用root访问该共享文件夹时,不映射root用户。(root_squash:客户机用root用户访问该共享文件夹时,将root用户映射成匿名用户))
3、重启NFS服务
/etc/init.d/rpcbind restart
/etc/init.d/nfs-kernel-server restart
4、在客户端挂载服务器目录:mount -t nfs -o nolock 服务器IP:共享目录 客户端目录。如:mount -t nfs -o nolock 192.168.1.162:/home/hhit/workspace /home(取消挂载:umount /home)
我的小程序: