第一步:安装NFS服务器(所有操作都在Ubuntu系统终端Root权限下执行)
sudo apt-get install nfs-kernel-server
第二步:配置NFS服务器
sudo vi /etc/exports
内容如下:
# /etc/exports: the access control list for filesystems which may be exported
# to NFS clients. See exports(5).## Example for NFSv2 and NFSv3:# /srv/homes hostname1(rw,sync,no_subtree_check) hostname2(ro,sync, no_subtree_check)## Example for NFSv4:# /srv/nfs4 gss/krb5i(rw,sync,fsid=0,crossmnt,no_subtree_check)# /srv/nfs4/homes gss/krb5i(rw,sync,no_subtree_check)#/source/rootfs *(rw,sync,no_root_squash) //主要是加上这句话第三步:在根目录下创建文件夹 /source/rootfs
第四步:重启NFS服务
sudo /etc/init.d/nfs-kernel-server start
sudo /etc/init.d/nfs-kernel-server stop
sudo /etc/init.d/nfs-kernel-server restart
第五步:测试
在/mnt下创建文件夹nfs,再新建个文件
sudo mount -t nfs 127.0.0.1:/source/rootfs /mnt/nfs
ls /mnt/nfs //查看是否挂载成功
umount /mnt/nfs