Table of Contents
#Introduction
In this tutorial, How to fix the Unknown configuration section vbguest on Vagrant. Now, let’s fix Vagrant: Unknown configuration section vbguest.
- Environment: CentOS 6x.
- Vagrant version 2.2.18
My Vagrantfile
Vagrant.configure("2") do |config|
-----
config.vbguest.auto_update = false
-----
Error: Unknown configuration section vbguest
The reason is because of the missing vagrant.vbguest plugin.
Check plugin for Vagrant
C:\Users\HuuPV>vagrant plugin list
not found
1.If not, install “vagrant-vbguest“
C:\MyData\Vagrant_VMS\Projects\Vagrant\Centos6.5-LAMP>vagrant plugin install vagrant-vbguest
Installing the 'vagrant-vbguest' plugin. This can take a few minutes...
Fetching micromachine-3.0.0.gem
Fetching vagrant-vbguest-0.30.0.gem
Installed the plugin 'vagrant-vbguest (0.30.0)'!
2. If exist, uninstall and reinstall “vagrant-vbguest“
vagrant plugin uninstall vagrant-vbguest
vagrant plugin install vagrant-vbguest
Conclusion
You have fixed Vagrant: Unknown configuration section vbguest. I hope will this your helpful. Thank you for reading the DevopsRoles page!