When “vagrant up” it says “It appears your machine doesn't support NFS” (Debian jessie)

后端 未结 3 1670
南旧
南旧 2021-02-09 11:10

Issue

when vagrant up it says \"It appears your machine doesn\'t support NFS\"

Setups

  • Debian GNU/Linux 8 (jessie)
  • Vagrant
3条回答
  •  时光取名叫无心
    2021-02-09 11:28

    Can be fixed by adding any exports to /etc/exports.

    by :

       modprobe nfs
       modprobe nfsd
    

    then running vagrant, which will add /etc/exports, then reloading kernel-server and restarting vagrant.

    issue http://jb-blog.readthedocs.io/en/latest/posts/0021-vagrant-nfs-problems.html

    instead of installed NFS cos really no supported :

    Try just removing type: nfs from the vagrant_synced_folders

    More : https://www.vagrantup.com/docs/synced-folders/nfs.html

提交回复
热议问题