NFS服务器 10.13.120.232
NFS客户端 10.13.120.233 10.13.120.236 ......
------------------步骤一:NFS服务器配置------------------
$sudo apt-get install nfs-kernel-server
$sudo mkdir /home/a/nfsroot
$sudo chmod 777 /home/a/nfsroot
$sudo vim /etc/exports
#添加如下内容:
/home/a/nfsroot *(rw,sync,no_root_squash)
$sudo vim /etc/hosts.deny
#添加如下内容
portmap:ALL
lockd:ALL
mountd:ALL
rquotad:ALL
statd:ALL
$sudo vim /etc/hosts.allow
#添加如下内容
portmap: 10.13.120.
lockd: 10.13.120.
rquotad: 10.13.120.
mountd: 10.13.120.
statd: 10.13.120.
$sudo dpkg-reconfigure portmap
选择 :NO
$sudo /etc/init.d/nfs-kernel-server restart
$sudo /etc/init.d/portmap restart
#在服务器上本地挂载测试
$sudo mount localhost:/home/a/nfsroot /mnt
$ df /mnt
文件系统 1K-块 已用 可用 已用% 挂载点
localhost:/home/a/nfsroot
147794432 47781888 92505088 35% /mnt
-----------------------步骤二:NFS客户端配置--------------------------------
$ sudo apt-get install nfs-common
$ sudo mount -t nfs 10.13.120.232:/home/a/nfsroot /mnt
$ df /mnt
文件系统 1K-块 已用 可用 已用% 挂载点
10.13.120.232:/home/a/nfsroot
147794432 47781888 92504576 35% /mnt