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

后端 未结 3 1665
南旧
南旧 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:24

    The command mentioned below works for linux mint 18.3:

    sudo apt-get install nfs-common nfs-kernel-server
    
    0 讨论(0)
  • 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

    0 讨论(0)
  • 2021-02-09 11:45

    For Windows users seeing that error, run the following command to add support for NFS for Vagrant:

    vagrant plugin install vagrant-winnfsd
    

    The GitHub repo for this plugin is found here.

    Also, to see the currently installed Vagrant plugins run this:

    vagrant plugin list
    
    0 讨论(0)
提交回复
热议问题