Vagrant: Unknown configuration section vbguest

#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

Vagrant: 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!

About HuuPV

My name is Huu. I love technology and especially Devops Skill such as Docker, vagrant, git so forth. I likes open-sources. so I created DevopsRoles.com site to share the knowledge that I have learned. My Job: IT system administrator. Hobbies: summoners war game, gossip.
View all posts by HuuPV →

Leave a Reply

Your email address will not be published. Required fields are marked *

This site uses Akismet to reduce spam. Learn how your comment data is processed.