#########################################################
#linux NFS实验
#date:2011-08-08
#作者:Jeacen
#QQ:198888885 MAIL:jeacen@lamphelp.org
#blog: http://jeacen.blog.51cto.com
#psite: http://www.lamphelp.org
#pblog:http://www.jeacen.com
##########################################################
2011.2.24 Linux Nfs实验
服务端:192.168.1.103
客户端:192.168.1.101
1.启动nfs
# service portmap start
# service nfs start
2.设置运行级别的自动启动
# chkconfig --level 235 portmap on
# chkconfig --level 235 nfs on
3.创建nfs目录
a.服务端:
#mkdir /nfs/110
b.#mkdir /nfs/112
4.修改nfs配置文件
#vi /etc/exports //编辑配置文件
#/nfs110 192.168.1.101(rw,sync,no_root_squash)
5.重启nfs服务
#/etc/init.d/nfs restart
6.mount -t nfs 192.168.1.103:/nfs110 /nfs112 //服务端103,共享文件nfs110 到客户端nfs112
7.[root@spancer nfs112]# df -h
Filesystem Size Used Avail Use% Mounted on
/dev/sda3 6.7G 4.4G 2.0G 70% /
/dev/sda1 145M 12M 126M 9% /boot
tmpfs 252M 0 252M 0% /dev/shm
192.168.1.103:/nfs110/
6.7G 4.4G 2.0G 70% /nfs112
本文出自 “jeacen的技术屋” 博客,请务必保留此出处http://jeacen.blog.51cto.com/920211/634571
|