Created
November 11, 2012 20:21
-
-
Save NapoleonWils0n/4056134 to your computer and use it in GitHub Desktop.
macosx: VirtualBox guest additions install
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
# VirtualBox guest additions install | |
sudo apt-get install linux-headers-$(uname -r) | |
25 - install guest additions | |
sudo apt-get install dkms | |
select install guest additions from the devices menu | |
check the device menu, CD/DVD devices VboxGuestAdditions.iso should be selected | |
switch to the terminal | |
create the mount point for the cd | |
sudo mkdir /media/cdrom | |
sudo mount /dev/cdrom /media/cdrom | |
cd /media/cdrom | |
check which version server you are running 32 or 64 bit | |
uname -a | |
i386/i486/i586/i686 it is a 32 bit kernel. | |
sudo ./VBoxLinuxAdditions-x86.run |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment