Vagrant error : Failed to mount folders in Linux guest

后端 未结 21 2428
臣服心动
臣服心动 2020-11-27 08:46

I have some issues with Vagrant shared folders, my base system is Ubuntu 13.10 desktop.

I do not understand why I have this error is something that is not right conf

21条回答
  •  北海茫月
    2020-11-27 09:20

    Try like it:

    vagrant plugin install vagrant-vbguest
    

    In Vagrantfile add:

    config.vbguest.iso_path = "http://download.virtualbox.org/virtualbox/VERSION/VBoxGuestAdditions_VERSION.iso"
    config.vbguest.auto_update = false
    config.vbguest.installer_arguments = %w{--nox11 -- --force}
    

    Run:

    vagrant vbguest --do install -f -b
    
    vagrant reload
    

提交回复
热议问题