Created
July 15, 2013 14:10
-
-
Save brianherman/6000220 to your computer and use it in GitHub Desktop.
Get rid of virtual box files under linux.
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
| sudo find /etc -name "*vboxadd*" -exec rm {} \; | |
| sudo find /etc -name "*vboxvfs*" -exec rm {} \; | |
| sudo rm -r /usr/src/vboxadd-* | |
| sudo rm -r /usr/src/vboxvfs-* | |
| sudo rm /usr/sbin/vboxadd-timesync | |
| sudo rm /lib/modules/`uname -r`/misc/vboxadd.ko | |
| sudo rm /lib/modules/`uname -r`/misc/vboxvfs.ko |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment