summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSuren A. Chilingaryan <csa@suren.me>2018-07-05 06:19:09 +0200
committerSuren A. Chilingaryan <csa@suren.me>2018-07-05 06:19:09 +0200
commitacb918cf6c5401d805273c5661ec336d14b9c009 (patch)
tree2656fabf91df08430c7b5360c523af3bab7cab8b
parentdb87d3dc5284372b73fbd50e96755d15deb70268 (diff)
downloadkickstart-acb918cf6c5401d805273c5661ec336d14b9c009.tar.gz
kickstart-acb918cf6c5401d805273c5661ec336d14b9c009.tar.bz2
kickstart-acb918cf6c5401d805273c5661ec336d14b9c009.tar.xz
kickstart-acb918cf6c5401d805273c5661ec336d14b9c009.zip
Add script to create testing KVM virtual machine
-rwxr-xr-xbootcd/testvm.sh10
1 files changed, 10 insertions, 0 deletions
diff --git a/bootcd/testvm.sh b/bootcd/testvm.sh
new file mode 100755
index 0000000..ee29f5d
--- /dev/null
+++ b/bootcd/testvm.sh
@@ -0,0 +1,10 @@
+#! /bin/bash
+
+sudo modprobe kvm-intel
+sudo /etc/init.d/vde start
+
+mkdir -p vm
+[ ! -f vm/1.qcow2 ] && qemu-img create -f qcow2 vm/1.qcow2 "80G"
+[ ! -f vm/2.qcow2 ] && qemu-img create -f qcow2 vm/2.qcow2 "80G"
+
+qemu-system-x86_64 -enable-kvm -display sdl -hda vm/1.qcow2 -hdb vm/2.qcow2 -m 2048 -net nic,macaddr=66:66:66:13:13:00 -net vde,sock=/var/run/vde.ctl -cdrom iso/centos74-ands.iso -boot order=d