Skip to content

Instantly share code, notes, and snippets.

@brianherman
Created July 15, 2013 14:10
Show Gist options
  • Save brianherman/6000220 to your computer and use it in GitHub Desktop.
Save brianherman/6000220 to your computer and use it in GitHub Desktop.
Get rid of virtual box files under linux.
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