Last active
October 1, 2018 15:46
-
-
Save myersg86/bfa9c9a98b2f7e97d7dc7f222eec5707 to your computer and use it in GitHub Desktop.
[virtualbox-purge] uninstall virtualbox & purge all residual VMs and Virtual-HDs including data & settings #virtualbox #purge #uninstall #remove
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
| #!/bin/bash | |
| sudo apt-get remove --purge virtualbox | |
| sudo rm -Rf ~/"VirtualBox VMs" | |
| sudo rm ~/.config/VirtualBox/ -Rf | |
| echo "" | |
| echo "Virtualbox successfully purged from local machine" | |
| echo "" | |
| echo "for a fresh virtualbox installation, run:" | |
| echo "" | |
| echo "sudo apt-get install virtualbox" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment