diff options
-rw-r--r-- | .gitignore | 4 | ||||
-rwxr-xr-x | qemu.sh | 5 |
2 files changed, 9 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..c32a010 --- /dev/null +++ b/.gitignore | |||
@@ -0,0 +1,4 @@ | |||
1 | debian-live-8.4.0-amd64-gnome-desktop.disk | ||
2 | debian-live-8.4.0-amd64-gnome-desktop.iso | ||
3 | boot | ||
4 | var | ||
@@ -0,0 +1,5 @@ | |||
1 | #!/bin/sh | ||
2 | sudo qemu-system-x86_64 -enable-kvm -smp 2 -m \ | ||
3 | 640 -k en-us -net nic,vlan=0,model=virtio -net \ | ||
4 | tap,vlan=0,ifname=tap0,script=no,downscript=no -vga qxl -rtc \ | ||
5 | base=localtime -hda debian-live-8.4.0-amd64-gnome-desktop.disk -boot n | ||