Created
July 21, 2018 17:03
-
-
Save kenanhancer/f953691c3435cf33e791e6f5f994cc52 to your computer and use it in GitHub Desktop.
Uninstall Vagrant on Ubuntu
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//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 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Many thanks. Helpful.