From 6529b3e5e85fb5ace14ce2d6d914dc4521060e1f Mon Sep 17 00:00:00 2001 From: "Brian C. Lane" Date: Fri, 22 Mar 2019 15:19:50 -0700 Subject: [PATCH] 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. Resolves: rhbz#1691632 --- src/pylorax/installer.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pylorax/installer.py b/src/pylorax/installer.py index a2f71586..8256442d 100644 --- a/src/pylorax/installer.py +++ b/src/pylorax/installer.py @@ -214,7 +214,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 virtio networking qemu_cmd += ["-netdev", "user,id=n1", "-device", "virtio-net-pci,netdev=n1"]