Mac-Osx
掛載文件系統的 nfs 掛載
我有一個導出的捲:
/dev/disk5s2 on /Volumes/encrypted (hfs, NFS exported, local, nodev, nosuid, journaled)
/etc/export 中的條目是:
/Volumes/encrypted/paperwork -ro -fspath=/Volumes/encrypted
該卷通過以下方式安裝:
/usr/bin/hdiutil attach /Volumes/primary/encrypted/encrypted.dmg.sparsebundle
但從我的客戶那裡做了一個簡單的事情:
mount -t nfs -o vers=3,tcp,soft,noowners,rdonly "192.168.1.14:/Volumes/primary/encrypted/paperwork" "/Volumes/encrypted"
我收到錯誤消息:“權限被拒絕”。
檢查了明顯的東西。我確實有權限, showmount -e 顯示掛載點:
Airy:bin paulhargreaves$ showmount -e 192.168.1.14 Exports list on 192.168.1.14: /Volumes/encrypted/paperwork Everyone
下一步該怎麼做才能排除故障?
微妙的空白錯誤似乎是原因。重新輸入所有條目,它工作。