1.建立共享目錄
#mkdir /home/hellolinux/nfs
2.建立或修改/etc/exports檔案
#vi /etc/exports
home/hellolinux/nfs 192.168.0.*(rw,sync,no_root_squash)
3.nfs服務的啟動與停止
#service nfs start
#service nfs stop
#service nfs restart
#servcie nfs status(服務狀態)
4 在客戶機上檢視nfs的資源共享情況
# showmount -e 192.168.0.1
export list for 192.168.0.1:
/home/hellolinux/nfs 192.168.0.*
5 .使用mount命令掛栽共享資源
mount -t nfs -o nolock 192.168.0.1:/home/hellolinux/nfs /mnt/nfs
出現的問題與解決方法:
[root@forlinx6410]# mount -t nfs 192.168.0.1:/home/hellolinux/rootfs /mnt/nfs
svc: failed to register lockdv1 rpc service (errno 111).
mount: mounting 192.168.0.1:/home/hellolinux/rootfs on /mnt/nfs failed: connection refused
解決方案:
nfs mount 預設選項包括檔案鎖,依賴於portmap提供的動態埠分配功能。
解決方法:kill 檔案鎖(lockd)或者mount -o nolock
1.2.
嵌入式nfs問題解決總結
剛開始用的ubuntu10.04,無論如何搞都不成功,最後無奈選擇 fedora14,nfs成功,現記錄如下 1 如果沒有安裝nfs則安裝nfs,每種發行版linux安裝方法不同 2 改寫 etc exports 檔案,我增加了一行 root sync,rw,no root squash sync,...
nfs常見問題解決辦法
造成這種現象的原因是nfs伺服器 網路掛了,nfs客戶端預設採用hard mount選項,而不是soft mount。他們的區別是 soft mount 當客戶端載入nfs不成功時,重試retrans設定的次數.如果retrans次都不成功,則放棄此操作,返回錯誤資訊 connect time ou...
nfs常見問題解決辦法
感謝原文作者分享。之前開發時就碰到過nfs客戶端卡住的情況,umount f mnt提示device is busy,並且嘗試訪問掛載目錄 df h等操作都會使終端卡住,ctrl c也不能強行退出。當時忙著趕進度,沒研究這個問題。最近倒出功夫研究一下,順便學習一下nfs的優化。造成這種現象的原因是n...