Created
August 27, 2015 17:21
-
-
Save lloeki/ca1d508cbc7692dfba52 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 | |
# unfortunately debian currently panics in xhyve | |
tmp=$(mktemp -d) | |
pushd "$tmp" | |
iso="$HOME"/Downloads/debian-8.1.0-amd64-netinst.iso | |
#iso="$HOME"/Downloads/debian-8.1.0-i386-netinst.iso | |
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" . | |
#cp "$mnt/install.386/vmlinuz" . | |
#cp "$mnt/install.386/initrd.gz" . | |
diskutil eject "$disk" | |
echo "creating hdd" | |
dd if=/dev/zero of=hdd.img bs=100m count=1 | |
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