Skip to content

Instantly share code, notes, and snippets.

@mcenirm
Last active November 30, 2016 05:28
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mcenirm/e9628229bdbe897bb8949870cda52d77 to your computer and use it in GitHub Desktop.
Save mcenirm/e9628229bdbe897bb8949870cda52d77 to your computer and use it in GitHub Desktop.
Install VirtualBox guest additions in Centos 6
# VirtualBox 5.0.30, Centos 6.8
sudo yum -y install kernel-devel gcc perl
# VirtualBox VM menu: Devices > Insert Guest Additions CD image...
sudo mount -v -o ro /dev/cdrom1 /mnt
cd /mnt
sudo sh VBoxLinuxAdditions.run --nox11
cd
sudo umount -v /mnt
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment