關於開發板的nfs掛載

huangzi666發表於2015-06-26

開發專案時遇到一些關於開發板nfs掛載虛擬機器linux系統某個目錄到開發板上的問題,做個記錄,方便以後開發專案。

nfs掛載的步驟:

1.確保linux系統有nfs服務。

2.在linux系統終端vim  /etc/exports 開啟exports這個檔案,在檔案裡寫入 /root/independen_door_lock/test/ *(rw,sync,no_root_squash)      然後儲存退出。注:test目錄是你想要掛載的目錄,test前面的是目錄的絕對路徑。

3.在linux系統終端輸入 service nfs restart 。

4.在開發板終端輸入 mount -t nfs -o nolock 192.168.1.159:/root/independen_door_lock/test  /mnt   注:192.168.1.159是虛擬機器的IP地址。


然後在開發板終端輸入 ls /mnt 就會看到虛擬機器linux系統/root/independen_door_lock/test 這個目錄裡面的內容,說明已經掛載成功。

當你在開發板拷貝/mnt目錄裡的檔案出來時,可能會很慢,然後還會報這樣的錯NFS:server not responing ,still trying,我在網上看了下別人的解決辦法,應該使用這樣的掛載命令 mount -t nfs -o intr,nolock,rsize=1024,wsize=1024 192.168.1.159:/root/independen_door_lock/test /mnt  這時你拷貝就正常了。


取消掛載:umount  /mnt

相關文章