Last active
December 14, 2015 08:19
-
-
Save sakama/5056972 to your computer and use it in GitHub Desktop.
VirtualBoxをCentOS6系にインストールする
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
yum install dkms binutils gcc make patch libgomp glibc-headers glibc-devel kernel-headers | |
yum install kernel-devel | |
#VirtualBoxのインストール | |
cd /usr/local/src | |
wget http://download.virtualbox.org/virtualbox/4.2.8/VirtualBox-4.2-4.2.8_83876_el6-1.x86_64.rpm | |
yum localinstall VirtualBox-4.2-4.2.8_83876_el6-1.x86_64.rpm | |
#VBoxGuestAdditionsのインストール | |
wget http://download.virtualbox.org/virtualbox/4.2.8/VBoxGuestAdditions_4.2.8.iso | |
mount VBoxGuestAdditions_4.2.8.iso -o loop /mnt | |
cd /mnt | |
sh VBoxLinuxAdditions.run --nox11 | |
#あきらめた(・ω・) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment