Skip to content

Instantly share code, notes, and snippets.

@kenanhancer
Created July 21, 2018 17:03
Show Gist options
  • Save kenanhancer/f953691c3435cf33e791e6f5f994cc52 to your computer and use it in GitHub Desktop.
Save kenanhancer/f953691c3435cf33e791e6f5f994cc52 to your computer and use it in GitHub Desktop.
Uninstall Vagrant on Ubuntu
//Uninstall just vagrant
//This will remove just the vagrant package itself.
sudo apt-get remove vagrant
//Uninstall vagrant and its dependencies
//To remove the vagrant package and any other dependant package which are no longer needed from Ubuntu.
sudo apt-get remove --auto-remove vagrant
//Purging vagrant (your config/data too)
//If you also want to delete your local/config files for vagrant then this will work.
sudo apt-get purge vagrant
//To delete configuration and/or data files of vagrant and it’s dependencies from Ubuntu then execute
sudo apt-get purge --auto-remove vagrant
@GitauHarrison
Copy link

Many thanks. Helpful.

@rahaalizade
Copy link

THANK YOU!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment