Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion install.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,10 @@
#!/bin/sh

# download iso to 9front.iso
curl -L http://9front.org/iso/9front-7781.38dcaeaa222c.amd64.iso.gz -o plan9.iso
curl -L http://9front.org/iso/9front-7781.38dcaeaa222c.amd64.iso.gz -o 9front.iso.gz && gunzip 9front.iso.gz

# create the hard drive image
qemu-img create -f qcow2 -o preallocation=metadata 9front.qcow2.img 30G

# Run qemu with installation arguments
qemu-system-x86_64 -hda 9front.qcow2.img -cdrom ./9front.iso -boot d -vga std -m 768
Expand Down