vagrantを使用してNFSをセットアップするのに問題があります:
ローカルマシンにNFSをインストールしました。
apt-get install nfs-common nfs-kernel-server
そして、私のVagrantfileで使用するように設定します:
config.vm.share_folder("v-root", "/vagrant", ".", :nfs => true)
上のvagrant up
I取得します:
exportfs: /home/<user>/path/to/dir does not support NFS export
Mounting NFS shared folders failed. This is most often caused by the NFS
client software not being installed on the guest machine. Please verify
that the NFS client software is properly installed, and consult any resources
specific to the linux distro you're using for more information on how to
do this.
ここで1つまたは2つのステップがありませんか?
ubuntusで暗号化されたホームフォルダーとNFSに関するいくつかの問題を認識していますが、これはブート前の問題であることのみを意図していることを理解しています。
[更新] /etc/exports
ファイルは次のようになります。
# VAGRANT-BEGIN: 5af3e5d6-b086-416d-8eab-987275445634
/home/<user>/path/to/dir 192.168.33.11(rw,no_subtree_check,all_squash,
anonuid=1000,anongid=1000,fsid$
# VAGRANT-END: 5af3e5d6-b086-416d-8eab-987275445634
作業しているマシンにもNFSクライアントソフトウェアがありますか?nfs-common(nfs-kernel-serverだけでなく)がインストールされていますか?
—
mpez0