|
|
ispeter
鐵驢友〔初級〕
. 積分: 32
. 文章: 170
. 收花: 92 支
. 送花: 566 支
. 比例: 6.15
. 在線: 227 小時
. 瀏覽: 2520 頁
. 註冊: 7287 天
. 失蹤: 5011 天
|
|
|
|
|
|
|
#1 : 2005-12-17 02:52 PM
只看本作者
|
送花
(9)
送出中...
|
|
|
|
此文章來自 ispeter , 請勿轉載 !!
[教學][RHEL] NFS
NFS 需要下列這兩個套件:
- # rpm -ivh nfs-utils-1.0.5-3
- # rpm -ivh portmap-4.0-56
設定步驟:
- NFS 需要 Portmap 的 RPC,所以要先啟動 Portmap
# chkconfig portmap on
# service portmap start
# netstat -tunple | grep portmap
- 啟動 NFS
# chkconfig nfs on
# service nfs start
- 簡易設定 "/etc/exports"
# vi /etc/exports
增加一行
/tmp 重新啟動 NFS
# service nfs restart
檢查
# showmount -e 127.0.0.1
- 進階設定 "/etc/exports"
# vi /etc/exports
下列選項有下列選項可供選擇:
/tmp (ro)
/tmp station4.example.com(rw)
/tmp station4.example.com(rw)station5.example.com(ro)
/tmp *.example.com(ro)
/tmp 192.168.1.0/255.255.255.0(rw) 重新啟動 NFS
# service nfs restart
檢查
# showmount -e 127.0.0.1
- Mount NFS
# mkdir /mnt/nfs ; mount 61.56.191.187:/tmp /mnt/nfs
# vi /etc/fstab
61.56.191.187:/tmp /mnt/nfs nfs defaults 0 0
[如果你喜歡本文章,就按本文章之鮮花~送花給作者吧,你的支持就是別人的動力來源]
|
|