15 lines
445 B
Bash
15 lines
445 B
Bash
SPICE_PORT=5924
|
|
qemu-system-x86_64 -enable-kvm -daemonize \
|
|
-cpu host \
|
|
-drive file=ubuntu.img,if=virtio \
|
|
-net nic -net user,hostname=ubuntuvm \
|
|
-m 1G \
|
|
-vga qxl \
|
|
-spice port=${SPICE_PORT},disable-ticketing \
|
|
-device virtio-serial \
|
|
-chardev spicevmc,id=vdagent,name=vdagent \
|
|
-device virtserialport,chardev=vdagent,name=com.redhat.spice.0 \
|
|
-cdrom server.iso \
|
|
-boot menu=on \
|
|
-hda ubuntu2.img
|