Guest User

Untitled

a guest
Jul 21st, 2018
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.58 KB | None | 0 0
  1. //Uninstall just vagrant
  2. //This will remove just the vagrant package itself.
  3. sudo apt-get remove vagrant
  4.  
  5.  
  6. //Uninstall vagrant and its dependencies
  7. //To remove the vagrant package and any other dependant package which are no longer needed from Ubuntu.
  8. sudo apt-get remove --auto-remove vagrant
  9.  
  10.  
  11. //Purging vagrant (your config/data too)
  12. //If you also want to delete your local/config files for vagrant then this will work.
  13. sudo apt-get purge vagrant
  14.  
  15. //To delete configuration and/or data files of vagrant and it’s dependencies from Ubuntu then execute
  16. sudo apt-get purge --auto-remove vagrant
Add Comment
Please, Sign In to add comment