busybox掛載nfs到tmp檔案系統上遇到Input/output error
阿新 • • 發佈:2019-02-15
錯誤如下
mount -t nfs 192.168.1.83:/home/wrr /tmp/wrr
<4>svc: failed to register lockdv1 RPC service (errno 111).
<4>lockd_up: makesock failed, error=-111
如果加上nolock引數會直接返回。但後面拷貝檔案卡死。但也拷了一點。
而後
mount -t nfs 192.168.1.83:/home/wrr/web /tmp/wrr
<4>svc: failed to register lockdv1 RPC service (errno 110).
mount: mounting 192.168.1.83:/home/wrr/web on /tmp/wrr failed: Connection timed out
可能這個錯誤和Nfs伺服器許可權相關,在伺服器那加上no_root_squard引數。繼續。還是有錯。
因為排除了nfs伺服器因素,然後掛載也沒什麼問題(因為拷了一點東西)。所以這是一個和伺服器和掛載都無關的故事。
在英文帖子上看到(http://forums.xilinx.com/t5/Embedded-Linux/nfs-mount-problem-on-microblaze/td-p/153272)
大意是busybox檔案系統上有一些東西沒有執行。需要加上一些額外的引數。
mount -o port=2049,nolock,proto=tcp -t nfs 192.168.103.83:/home/wrr/web /tmp/wrr
居然成功了。有魔法的引數就在port和proto=tcp這兩點。具體原因未知。