Forked from parshap/install-vbox-guest-additions.sh
Created
January 28, 2022 12:45
-
-
Save turkerali/e8335df6b836be02b50cec42025d8a11 to your computer and use it in GitHub Desktop.
Install VirtualBox Guest Additions on a headless server
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
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 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment