服务端:
[root@localhost tmp]# rpm -qa | grep nfs
nfs-utils-lib-1.0.8-7.6.el5
nfs-utils-1.0.9-44.el5 //提供文件系统
system-config-nfs-1.3.23-1.el5
[root@localhost tmp]# rpm -qa | grep portmap
portmap-4.0-65.2.2.1 //提供rpc协议
[root@localhost tmp]# /etc/init.d/nfs restart
[root@localhost tmp]# /etc/init.d/portmap restart
[root@localhost tmp]# vim /etc/exports //配置文件,开始是空文件
/tmp 192.168.1.0/24(ro,no_root_squash) // 共享目录 共享网段(共享出去之后的属性)
[root@localhost tmp]# showmount -a //查看已经挂载共享目录的客户端/一般在服务器使用All mount points on localhost.localdomain:
192.168.1.200:/tmp
客户端:
[root@localhost opt]# mount -t nfs 192.168.1.250:/tmp /opt
-t 指定文件系统类型
autofs自动挂载:
vim /etc/auto.master
/mynfs /etc/auto.nfs
vim /etc/auto.nfs
haha -fstype=nfs 192.168.1.250:/tmp
mkdir mynfs
/etc/init.d/autofs restart
[root@localhost opt]# showmount -e 192.168.1.250
Export list for 192.168.1.250:
/tmp 192.168.1.0/24 //客户端可以查看服务器的共享
NFS (network file systerm) 只用于局域网,布布扣,bubuko.com
NFS (network file systerm) 只用于局域网
原文地址:http://jpkingofkings.blog.51cto.com/4342950/1437945