qemu wasn't restoring the terminal if it was terminated early

You would need to run reset to regain control of your terminal after
this happened, so this turns off the monitor and serial port mux to
stdout.
This commit is contained in:
Brian C. Lane 2019-03-22 15:19:50 -07:00
parent 6c6e4fced1
commit d178189ef3
1 changed files with 1 additions and 1 deletions

View File

@ -226,7 +226,7 @@ class QEMUInstall(object):
else:
display_args = opts.vnc
log.info("qemu %s", display_args)
qemu_cmd += ["-nographic", "-display", display_args ]
qemu_cmd += ["-nographic", "-monitor", "none", "-serial", "null", "-display", display_args ]
# Setup the virtio log port
qemu_cmd += ["-device", "virtio-serial-pci,id=virtio-serial0"]