2011/05/16

輕鬆架設 NFS (Network file system)

1. 安裝必要工具
nfs-utils
portmap

2. 在server上設定分享目錄
$ vim /etc/exports
加入 /home/brian/share 192.168.0.100(rw,async,anonuid=123,anongid=123)
參數說明:
IP: 只允許192.168.0.100的IP存取
rw: 可讀可寫
async: 非同步存取加快速度
123: 是brian在/etc/passwd的id,也就是你將會在Windows會使用brian這個帳號透過NFS存取存取Linux檔案

2. 重啟NFS
$ /etc/init.d/portmap start
$ /etc/init.d/nfs start

3. 檢視一下分享目錄
$ showmount -e

4. 在其他主機掛載看看
$ mount -t nfs server_hostname:/home/brian/share /mnt/my_nfs


參考資料
鳥哥的 Linux 私房菜 -- NFS 伺服器
柏青哥的 SuSE Linux -- 架設 NFS 及 NIS Server
Optimizing NFS Performance


沒有留言:

張貼留言