-
-
Save igorvoltaic/1a592bfe6c9b18548b73d2ffdb888ff5 to your computer and use it in GitHub Desktop.
Running debian 8.1 in xhyve
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
#!/bin/bash | |
# debian in xhyve | |
img_name="@1" | |
tmp=$(mktemp -d) | |
pushd "$tmp" | |
iso="$HOME"/Downloads/$img_name | |
echo "fixing disk" | |
dd if=/dev/zero bs=2k count=1 of=tmp.iso | |
dd if="$iso" bs=2k skip=1 >> tmp.iso | |
echo "mounting disk" | |
diskinfo=$(hdiutil attach tmp.iso) | |
disk=$(echo "$diskinfo" | cut -d' ' -f1) | |
mnt=$(echo "$diskinfo" | perl -ne '/(\/Volumes.*)/ and print $1') | |
echo "mounted as $disk at $mnt" | |
echo "extracting kernel" | |
ls "$mnt" | |
cp "$mnt/install.amd/vmlinuz" . | |
cp "$mnt/install.amd/initrd.gz" . | |
diskutil eject "$disk" | |
echo "creating hdd" | |
dd if=/dev/zero of=hdd.img bs=100m count=1 | |
# optionally | |
#mkfile 20g hdd.dmg | |
KERNEL="vmlinuz" | |
INITRD="initrd.gz" | |
CMDLINE="earlyprintk=serial console=ttyS0" | |
MEM="-m 1G" | |
SMP="-c 2" | |
NET="-s 2:0,virtio-net" | |
IMG_CD="-s 3,ahci-cd,$iso" | |
IMG_HDD="-s 4,virtio-blk,hdd.img" | |
PCI_DEV="-s 0:0,hostbridge -s 31,lpc" | |
LPC_DEV="-l com1,stdio" | |
ACPI="-A" | |
# shellcheck disable=SC2086 | |
sudo xhyve $ACPI $MEM $SMP $PCI_DEV $LPC_DEV $NET $IMG_CD $IMG_HDD -f kexec,$KERNEL,$INITRD,"$CMDLINE" | |
popd | |
rm -rf "$tmp" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment