방랑자와 함께 NFS 설정을 얻는 데 문제가 있습니다.
내 로컬 컴퓨터에 NFS를 설치했습니다.
apt-get install nfs-common nfs-kernel-server
그리고 내 Vagrantfile에서 사용하도록 설정하십시오.
config.vm.share_folder("v-root", "/vagrant", ".", :nfs => true)
에 vagrant up
내가 얻을 :
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.
여기에 한두 단계가 빠져 있습니까?
우분투 스 암호화 된 홈 폴더 및 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- 커먼 서버뿐만 아니라 nfs-common이 설치되어 있습니까?
—
mpez0