linux--nfs
1.安裝nfs
網上學習NFS的安裝,發現很多文章都說要用到portmap,但是在CentOS的官方軟件源裏面又找不到該軟件包。
後來才知道portmap在CentOS 6上已經更名為rpcbind了。
默認rpcbind是已經安裝的,該服務隨系統啟動時自動啟動:
[[email protected] ~]$ chkconfig rpcbind --list
rpcbind 0:off 1:off 2:on 3:on 4:on 5:on 6:off
若要重新安裝,可以使用下面的命令:
[[email protected]
然後再安裝nfs
yum install nfs-utils
2.查看是否已經安裝:
rpm -qa|grep nfs
rpm -qa|grep rpcbind
3.啟動nfs
service rpcbind start
service nfs start
4.修改配置文件:vi /etc/exports
/text 127.0.0.1(rw,sync,no_root_squash)
/text 要共享的目錄
127.0.0.1 能訪問共享目錄的電腦的ip地址
rw 讀寫
sync 同步
no_root_squash 如果是root登錄,則擁有root權限
5.修改完配置文件,需要使其生效:
exportfs -rv
6.這時就可以去另一臺電腦上去掛載目錄了(指定的ip地址,這裏是127.0.0.1)
mount 127.0.0.1:/test/ /test-b/
7.要卸載掉 掛載目錄時,先把/etc/exports 下的共享目錄註釋掉,
然後就可以 umount /test-b 了
linux--nfs