Skip to content

Instantly share code, notes, and snippets.

@billputer
Created March 5, 2013 19:41
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save billputer/5093503 to your computer and use it in GitHub Desktop.
Save billputer/5093503 to your computer and use it in GitHub Desktop.
install virtualbox guest additions on ubuntu/debian
VBOX_VERSION=4.2.8
sudo apt-get install build-essential linux-headers-$(uname -r)
wget http://download.virtualbox.org/virtualbox/${VBOX_VERSION}/VBoxGuestAdditions_${VBOX_VERSION}.iso
sudo mkdir /media/vbox
sudo mount -o loop VBoxGuestAdditions_${VBOX_VERSION}.iso /media/vbox
sudo /media/vbox/VBoxLinuxAdditions.run --nox11
sudo umount /media/vbox
sudo rmdir /media/vbox
rm VBoxGuestAdditions_${VBOX_VERSION}.iso
@faddat
Copy link

faddat commented Apr 5, 2016

Thank you.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment