Skip to content

Instantly share code, notes, and snippets.

@Crowles
Created April 20, 2018 10:33
Show Gist options
  • Save Crowles/de838fc9119b10fbfa2b31537eab849d to your computer and use it in GitHub Desktop.
Save Crowles/de838fc9119b10fbfa2b31537eab849d to your computer and use it in GitHub Desktop.
Guest Additions
#!/bin/bash
echo "Installing EPEL Repository"
yum -y install epel-release
echo "Updating Packages"
yum update
echo "Installing Development Tools"
yum -y groupinstall "Development Tools"
yum -y install kernel-devel
echo "Installing Kernel Support"
yum -y install dkms
echo "Mounting CD-ROM"
mkdir /mnt/VBoxLinuxAdditions
mount /dev/cdrom /mnt/VBoxLinuxAdditions
echo "Installing Guest Additions"
sh /mnt/VBoxLinuxAdditions/VBoxLinuxAdditions.run
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment