Skip to content

Instantly share code, notes, and snippets.

@parshap
Created July 31, 2014 19:35
Show Gist options
  • Star 19 You must be signed in to star a gist
  • Fork 3 You must be signed in to fork a gist
  • Save parshap/095b8d46503b852f4e0a to your computer and use it in GitHub Desktop.
Save parshap/095b8d46503b852f4e0a to your computer and use it in GitHub Desktop.
Install VirtualBox Guest Additions on a headless server
wget http://download.virtualbox.org/virtualbox/4.3.12/VBoxGuestAdditions_4.3.12.iso
sudo mkdir /media/iso
sudo mount -o loop ./VBoxGuestAdditions_4.3.12.iso /media/iso
sudo bash /media/iso/VBoxLinuxAdditions.run --nox11
sudo umount /media/iso
@mrusa
Copy link

mrusa commented Feb 24, 2016

thanks! worked like a charm using windows 8 as a host and ubuntu 14 as a guest (headless) 👍

@younglinuxer
Copy link

这样真的好吗

@zbeekman
Copy link

👍 Why they don't put a link to the guest additions ISO on their downloads page, I have no idea...

@denysvitali
Copy link

denysvitali commented Feb 13, 2017

@zbeekman Because it's already available at /usr/share/virtualbox/VBoxGuestAdditions.iso !

@thatguypark
Copy link

thatguypark commented Sep 26, 2018

Thank you for that for providing a link to the ISO.

Was banging my head against the wall wasting time on all these supposed "non-GUI" tutorials always end up giving instructions on how to click on the menu option in the GUI.

Also, anyone ever known a repo (Debian is preferable) for installing the guest additions without having to install all the linux kernel building packages? trying to keep my VM guest light

@thatguypark
Copy link

thatguypark commented Sep 26, 2018

Spoke too soon....seems there are some packages under the URI's folder... https://download.virtualbox.org/virtualbox/4.3.12/ (most recent's at https://download.virtualbox.org/virtualbox/5.2.18/)

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