Last active
November 29, 2020 06:59
-
-
Save fabianmu/3467a28e274f03fd9dfe20b2a6f7feca to your computer and use it in GitHub Desktop.
Virtualbox 5.2 on scaleway
This file contains 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
# this is a copay/paste combination of https://gist.github.com/nictuku/13afc808571e742d3b1aaa0310ee8a8d & https://gist.github.com/Rahul91/f051a391fac62ccebb581370b0ac644d | |
# so that we can install virtualbox via apt-get | |
for x in xenial xenial-security xenial-updates; do | |
egrep -qe "deb-src.* $x " /etc/apt/sources.list || echo "deb-src http://archive.ubuntu.com/ubuntu ${x} main universe" | sudo tee -a /etc/apt/sources.list | |
done | |
echo "deb http://download.virtualbox.org/virtualbox/debian xenial contrib" | sudo tee -a /etc/apt/sources.list.d/virtualbox.list | |
wget -q https://www.virtualbox.org/download/oracle_vbox_2016.asc -O- | sudo apt-key add - | |
# allow us to make a kernel | |
apt-get install unzip build-essential libssl-dev -y | |
arch="$(uname -m)" | |
release="$(uname -r)" | |
upstream="${release%%-*}" | |
local="${release#*-}" | |
echo $release | |
echo $local | |
echo $upstream | |
mkdir -p /usr/src | |
wget -O "/usr/src/linux-${upstream}.tar.xz" "https://cdn.kernel.org/pub/linux/kernel/v4.x/linux-${upstream}.tar.xz" | |
tar xf "/usr/src/linux-${upstream}.tar.xz" -C /usr/src/ | |
ln -fns "/usr/src/linux-${upstream}" /usr/src/linux | |
ln -fns "/usr/src/linux-${upstream}" "/lib/modules/${release}/build" | |
zcat /proc/config.gz > /usr/src/linux/.config | |
printf 'CONFIG_LOCALVERSION="%s"\nCONFIG_CROSS_COMPILE=""\n' "${local:+-$local}" >> /usr/src/linux/.config | |
wget -O /usr/src/linux/Module.symvers "http://mirror.scaleway.com/kernel/${arch}/${release}/Module.symvers" | |
# make kernel (no idea why? but anyway) | |
NUM_CORES=$(cat /proc/cpuinfo|grep vendor_id|wc -l) | |
make -j${NUM_CORES} -C /usr/src/linux prepare modules_prepare | |
KDIR=/lib/modules/$(uname -r)/build/ | |
# install virtualbox (which also does some kernel stuff) | |
apt-get install dkms virtualbox-5.2 -y | |
/sbin/rcvboxdrv setup | |
VBoxManage --version | |
wget http://download.virtualbox.org/virtualbox/5.2.0/Oracle_VM_VirtualBox_Extension_Pack-5.2.0-118431.vbox-extpack | |
VBoxManage extpack install ./Oracle_VM_VirtualBox_Extension_Pack-5.2.0-118431.vbox-extpack | |
# install a windows guest, as of https://github.com/magnetikonline/linuxmicrosoftievirtualmachines#ie9---windows-7 | |
mkdir -p ~/vm/ie9-windows7 && cd ~/vm/ie9-windows7 | |
wget -ci https://github.com/magnetikonline/linuxmicrosoftievirtualmachines/raw/master/vmarchiveset/ie9-windows7.txt | |
cat IE9.Win7.For.Linux.VirtualBox.zip.00? >IE9.Win7.For.Linux.VirtualBox.zip | |
rm ie9-windows7.txt IE9.Win7.For.Linux.VirtualBox.zip.00? | |
unzip IE9.Win7.For.Linux.VirtualBox.zip | |
rm IE9.Win7.For.Linux.VirtualBox.zip | |
VBoxManage import IE9\ -\ Win7.ova | |
# enable remote desktop so that we can connect to windows via a rdc app | |
VBoxManage modifyvm "IE9 - Win7" --vrde on | |
VBoxManage modifyvm "IE9 - Win7" --memory 4096 --cpus ${NUM_CORES} --accelerate2dvideo on --accelerate3d off --cpuhotplug on | |
VBoxManage startvm "IE9 - Win7" --type=headless | |
VBoxManage controlvm "IE9 - Win7" acpipowerbutton | |
# mound guest additions to guest | |
vboxmanage storageattach "IE9 - Win7" --storagectl "IDE" --port 1 --device 0 --type dvddrive --medium /usr/share/virtualbox/VBoxGuestAdditions.iso |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment