1
0

qemu: Shorten per-domain directory names

Per-domain directories were introduced in order to be able to
completely separate security labels for each domain (commit
f1f68ca33433825ce0deed2d96f1990200bc6618).  However when the domain
name is long (let's say a ridiculous 110 characters), we cannot
connect to the monitor socket because on length of UNIX socket address
is limited.  In order to get around this, let's shorten it in similar
fashion and in order to avoid conflicts, throw in an ID there as well.
Also save that into the status XML and load the old status XMLs
properly (to clean up after older domains).  That way we can change it
in the future.

The shortening can be seen in qemuxml2argv tests, for example in the
hugepages-pages2 case.

Signed-off-by: Martin Kletzander <mkletzan@redhat.com>
This commit is contained in:
Martin Kletzander 2016-02-26 09:15:55 +01:00
parent dca504a1b9
commit a89f05ba8d
463 changed files with 681 additions and 507 deletions

View File

@ -5711,9 +5711,9 @@ qemuBuildNumaCommandLine(virCommandPtr cmd,
static int static int
qemuBuildGraphicsVNCCommandLine(virQEMUDriverConfigPtr cfg, qemuBuildGraphicsVNCCommandLine(virQEMUDriverConfigPtr cfg,
virCommandPtr cmd, virCommandPtr cmd,
virDomainDefPtr def,
virQEMUCapsPtr qemuCaps, virQEMUCapsPtr qemuCaps,
virDomainGraphicsDefPtr graphics) virDomainGraphicsDefPtr graphics,
const char *domainLibDir)
{ {
virBuffer opt = VIR_BUFFER_INITIALIZER; virBuffer opt = VIR_BUFFER_INITIALIZER;
const char *listenNetwork; const char *listenNetwork;
@ -5731,7 +5731,7 @@ qemuBuildGraphicsVNCCommandLine(virQEMUDriverConfigPtr cfg,
if (graphics->data.vnc.socket || cfg->vncAutoUnixSocket) { if (graphics->data.vnc.socket || cfg->vncAutoUnixSocket) {
if (!graphics->data.vnc.socket && if (!graphics->data.vnc.socket &&
virAsprintf(&graphics->data.vnc.socket, virAsprintf(&graphics->data.vnc.socket,
"%s/domain-%s/vnc.sock", cfg->libDir, def->name) == -1) "%s/vnc.sock", domainLibDir) == -1)
goto error; goto error;
virBufferAsprintf(&opt, "unix:%s", graphics->data.vnc.socket); virBufferAsprintf(&opt, "unix:%s", graphics->data.vnc.socket);
@ -6080,7 +6080,8 @@ qemuBuildGraphicsCommandLine(virQEMUDriverConfigPtr cfg,
virCommandPtr cmd, virCommandPtr cmd,
virDomainDefPtr def, virDomainDefPtr def,
virQEMUCapsPtr qemuCaps, virQEMUCapsPtr qemuCaps,
virDomainGraphicsDefPtr graphics) virDomainGraphicsDefPtr graphics,
const char *domainLibDir)
{ {
switch ((virDomainGraphicsType) graphics->type) { switch ((virDomainGraphicsType) graphics->type) {
case VIR_DOMAIN_GRAPHICS_TYPE_SDL: case VIR_DOMAIN_GRAPHICS_TYPE_SDL:
@ -6112,7 +6113,8 @@ qemuBuildGraphicsCommandLine(virQEMUDriverConfigPtr cfg,
break; break;
case VIR_DOMAIN_GRAPHICS_TYPE_VNC: case VIR_DOMAIN_GRAPHICS_TYPE_VNC:
return qemuBuildGraphicsVNCCommandLine(cfg, cmd, def, qemuCaps, graphics); return qemuBuildGraphicsVNCCommandLine(cfg, cmd, qemuCaps,
graphics, domainLibDir);
case VIR_DOMAIN_GRAPHICS_TYPE_SPICE: case VIR_DOMAIN_GRAPHICS_TYPE_SPICE:
return qemuBuildGraphicsSPICECommandLine(cfg, cmd, qemuCaps, graphics); return qemuBuildGraphicsSPICECommandLine(cfg, cmd, qemuCaps, graphics);
@ -7013,7 +7015,9 @@ qemuBuildCommandLine(virConnectPtr conn,
bool enableFips, bool enableFips,
virBitmapPtr nodeset, virBitmapPtr nodeset,
size_t *nnicindexes, size_t *nnicindexes,
int **nicindexes) int **nicindexes,
const char *domainLibDir,
const char *domainChannelTargetDir)
{ {
virErrorPtr originalError = NULL; virErrorPtr originalError = NULL;
size_t i, j; size_t i, j;
@ -8055,8 +8059,7 @@ qemuBuildCommandLine(virConnectPtr conn,
if (channel->source.type == VIR_DOMAIN_CHR_TYPE_UNIX && if (channel->source.type == VIR_DOMAIN_CHR_TYPE_UNIX &&
!channel->source.data.nix.path) { !channel->source.data.nix.path) {
if (virAsprintf(&channel->source.data.nix.path, if (virAsprintf(&channel->source.data.nix.path,
"%s/domain-%s/%s", "%s/%s", domainChannelTargetDir,
cfg->channelTargetDir, def->name,
channel->target.name ? channel->target.name channel->target.name ? channel->target.name
: "unknown.sock") < 0) : "unknown.sock") < 0)
goto error; goto error;
@ -8188,7 +8191,7 @@ qemuBuildCommandLine(virConnectPtr conn,
for (i = 0; i < def->ngraphics; ++i) { for (i = 0; i < def->ngraphics; ++i) {
if (qemuBuildGraphicsCommandLine(cfg, cmd, def, qemuCaps, if (qemuBuildGraphicsCommandLine(cfg, cmd, def, qemuCaps,
def->graphics[i]) < 0) def->graphics[i], domainLibDir) < 0)
goto error; goto error;
} }

View File

@ -64,15 +64,18 @@ virCommandPtr qemuBuildCommandLine(virConnectPtr conn,
bool monitor_json, bool monitor_json,
virQEMUCapsPtr qemuCaps, virQEMUCapsPtr qemuCaps,
const char *migrateURI, const char *migrateURI,
virDomainSnapshotObjPtr current_snapshot, virDomainSnapshotObjPtr snapshot,
virNetDevVPortProfileOp vmop, virNetDevVPortProfileOp vmop,
qemuBuildCommandLineCallbacksPtr callbacks, qemuBuildCommandLineCallbacksPtr callbacks,
bool forXMLToArgv, bool standalone,
bool enableFips, bool enableFips,
virBitmapPtr nodeset, virBitmapPtr nodeset,
size_t *nnicindexes, size_t *nnicindexes,
int **nicindexes) int **nicindexes,
ATTRIBUTE_NONNULL(1) ATTRIBUTE_NONNULL(10); const char *domainLibDir,
const char *domainChannelTargetDir)
ATTRIBUTE_NONNULL(1) ATTRIBUTE_NONNULL(10)
ATTRIBUTE_NONNULL(16) ATTRIBUTE_NONNULL(17);
/* Generate '-device' string for chardev device */ /* Generate '-device' string for chardev device */
int int

View File

@ -472,6 +472,63 @@ qemuDomainDiskPrivateNew(void)
} }
/* This is the old way of setting up per-domain directories */
static int
qemuDomainSetPrivatePathsOld(virQEMUDriverPtr driver,
virDomainObjPtr vm)
{
qemuDomainObjPrivatePtr priv = vm->privateData;
virQEMUDriverConfigPtr cfg = virQEMUDriverGetConfig(driver);
int ret = -1;
if (!priv->libDir &&
virAsprintf(&priv->libDir, "%s/domain-%s",
cfg->libDir, vm->def->name) < 0)
goto cleanup;
if (!priv->channelTargetDir &&
virAsprintf(&priv->channelTargetDir, "%s/domain-%s",
cfg->channelTargetDir, vm->def->name) < 0)
goto cleanup;
ret = 0;
cleanup:
virObjectUnref(cfg);
return ret;
}
/*
* The newer version uses a magic number for one reason. The thing is
* that we need a bit shorter name in order to be able to connect to
* it using UNIX sockets which have path length limitation. Since the
* length is not guaranteed to be constant and similarly the lib
* directory is configurable and so on, we need to rather choose an
* arbitrary maximum length of the domain name that will be used.
* Thanks to the fact that we are now saving it in the status XML, we
* can change it later on whenever we feel like so.
*/
int
qemuDomainSetPrivatePaths(char **domainLibDir, char **domainChannelTargetDir,
const char *confLibDir, const char *confChannelDir,
const char *domainName, int domainId)
{
const int dommaxlen = 20;
if (!*domainLibDir &&
virAsprintf(domainLibDir, "%s/domain-%d-%.*s",
confLibDir, domainId, dommaxlen, domainName) < 0)
return -1;
if (!*domainChannelTargetDir &&
virAsprintf(domainChannelTargetDir, "%s/domain-%d-%.*s",
confChannelDir, domainId, dommaxlen, domainName) < 0)
return -1;
return 0;
}
static void * static void *
qemuDomainObjPrivateAlloc(void) qemuDomainObjPrivateAlloc(void)
{ {
@ -534,6 +591,10 @@ qemuDomainObjPrivateFree(void *data)
VIR_FREE(priv->cleanupCallbacks); VIR_FREE(priv->cleanupCallbacks);
virBitmapFree(priv->autoNodeset); virBitmapFree(priv->autoNodeset);
virBitmapFree(priv->autoCpuset); virBitmapFree(priv->autoCpuset);
VIR_FREE(priv->libDir);
VIR_FREE(priv->channelTargetDir);
VIR_FREE(priv); VIR_FREE(priv);
} }
@ -655,6 +716,11 @@ qemuDomainObjPrivateXMLFormat(virBufferPtr buf,
VIR_FREE(nodeset); VIR_FREE(nodeset);
} }
/* Various per-domain paths */
virBufferEscapeString(buf, "<libDir path='%s'/>\n", priv->libDir);
virBufferEscapeString(buf, "<channelTargetDir path='%s'/>\n",
priv->channelTargetDir);
return 0; return 0;
} }
@ -859,6 +925,15 @@ qemuDomainObjPrivateXMLParse(xmlXPathContextPtr ctxt,
virObjectUnref(caps); virObjectUnref(caps);
VIR_FREE(tmp); VIR_FREE(tmp);
if ((tmp = virXPathString("string(./libDir/@path)", ctxt)))
priv->libDir = tmp;
if ((tmp = virXPathString("string(./channelTargetDir/@path)", ctxt)))
priv->channelTargetDir = tmp;
tmp = NULL;
if (qemuDomainSetPrivatePathsOld(driver, vm) < 0)
goto error;
return 0; return 0;
error: error:

View File

@ -204,6 +204,8 @@ struct _qemuDomainObjPrivate {
bool signalIOError; /* true if the domain condition should be signalled on bool signalIOError; /* true if the domain condition should be signalled on
I/O error */ I/O error */
char *machineName; char *machineName;
char *libDir; /* base path for per-domain files */
char *channelTargetDir; /* base path for per-domain channel targets */
}; };
# define QEMU_DOMAIN_DISK_PRIVATE(disk) \ # define QEMU_DOMAIN_DISK_PRIVATE(disk) \
@ -528,4 +530,10 @@ bool qemuDomainSupportsNetdev(virDomainDefPtr def,
int qemuDomainNetVLAN(virDomainNetDefPtr def); int qemuDomainNetVLAN(virDomainNetDefPtr def);
int qemuDomainSetPrivatePaths(char **domainLibDir,
char **domainChannelTargetDir,
const char *confLibDir,
const char *confChannelDir,
const char *domainName,
int domainId);
#endif /* __QEMU_DOMAIN_H__ */ #endif /* __QEMU_DOMAIN_H__ */

View File

@ -7019,6 +7019,8 @@ static char *qemuConnectDomainXMLToNative(virConnectPtr conn,
size_t i; size_t i;
virQEMUDriverConfigPtr cfg; virQEMUDriverConfigPtr cfg;
virCapsPtr caps = NULL; virCapsPtr caps = NULL;
char *domainLibDir = NULL;
char *domainChannelTargetDir = NULL;
virCheckFlags(0, NULL); virCheckFlags(0, NULL);
@ -7048,6 +7050,12 @@ static char *qemuConnectDomainXMLToNative(virConnectPtr conn,
if (qemuProcessStartValidate(def, qemuCaps, false, false) < 0) if (qemuProcessStartValidate(def, qemuCaps, false, false) < 0)
goto cleanup; goto cleanup;
/* Generate per-domain paths because we don't have the domain object */
if (qemuDomainSetPrivatePaths(&domainLibDir, &domainChannelTargetDir,
cfg->libDir, cfg->channelTargetDir,
def->name, -1) < 0)
goto cleanup;
/* Since we're just exporting args, we can't do bridge/network/direct /* Since we're just exporting args, we can't do bridge/network/direct
* setups, since libvirt will normally create TAP/macvtap devices * setups, since libvirt will normally create TAP/macvtap devices
* directly. We convert those configs into generic 'ethernet' * directly. We convert those configs into generic 'ethernet'
@ -7138,7 +7146,7 @@ static char *qemuConnectDomainXMLToNative(virConnectPtr conn,
monitor_json = virQEMUCapsGet(qemuCaps, QEMU_CAPS_MONITOR_JSON); monitor_json = virQEMUCapsGet(qemuCaps, QEMU_CAPS_MONITOR_JSON);
if (qemuProcessPrepareMonitorChr(cfg, &monConfig, def->name) < 0) if (qemuProcessPrepareMonitorChr(&monConfig, def->name) < 0)
goto cleanup; goto cleanup;
if (qemuAssignDeviceAliases(def, qemuCaps) < 0) if (qemuAssignDeviceAliases(def, qemuCaps) < 0)
@ -7166,7 +7174,9 @@ static char *qemuConnectDomainXMLToNative(virConnectPtr conn,
&buildCommandLineCallbacks, &buildCommandLineCallbacks,
true, true,
qemuCheckFips(), qemuCheckFips(),
NULL, NULL, NULL))) NULL, NULL, NULL,
domainLibDir,
domainChannelTargetDir)))
goto cleanup; goto cleanup;
ret = virCommandToString(cmd); ret = virCommandToString(cmd);
@ -7177,6 +7187,8 @@ static char *qemuConnectDomainXMLToNative(virConnectPtr conn,
virDomainDefFree(def); virDomainDefFree(def);
virObjectUnref(caps); virObjectUnref(caps);
virObjectUnref(cfg); virObjectUnref(cfg);
VIR_FREE(domainLibDir);
VIR_FREE(domainChannelTargetDir);
return ret; return ret;
} }

View File

@ -2855,15 +2855,14 @@ static int qemuProcessHook(void *data)
} }
int int
qemuProcessPrepareMonitorChr(virQEMUDriverConfigPtr cfg, qemuProcessPrepareMonitorChr(virDomainChrSourceDefPtr monConfig,
virDomainChrSourceDefPtr monConfig, const char *domainDir)
const char *vm)
{ {
monConfig->type = VIR_DOMAIN_CHR_TYPE_UNIX; monConfig->type = VIR_DOMAIN_CHR_TYPE_UNIX;
monConfig->data.nix.listen = true; monConfig->data.nix.listen = true;
if (virAsprintf(&monConfig->data.nix.path, "%s/domain-%s/monitor.sock", if (virAsprintf(&monConfig->data.nix.path, "%s/monitor.sock",
cfg->libDir, vm) < 0) domainDir) < 0)
return -1; return -1;
return 0; return 0;
} }
@ -4263,14 +4262,10 @@ qemuProcessSetupBalloon(virQEMUDriverPtr driver,
static int static int
qemuProcessMakeDir(virQEMUDriverPtr driver, qemuProcessMakeDir(virQEMUDriverPtr driver,
virDomainObjPtr vm, virDomainObjPtr vm,
const char *parentDir) const char *path)
{ {
char *path = NULL;
int ret = -1; int ret = -1;
if (virAsprintf(&path, "%s/domain-%s", parentDir, vm->def->name) < 0)
goto cleanup;
if (virFileMakePathWithMode(path, 0750) < 0) { if (virFileMakePathWithMode(path, 0750) < 0) {
virReportSystemError(errno, _("Cannot create directory '%s'"), path); virReportSystemError(errno, _("Cannot create directory '%s'"), path);
goto cleanup; goto cleanup;
@ -4283,7 +4278,6 @@ qemuProcessMakeDir(virQEMUDriverPtr driver,
ret = 0; ret = 0;
cleanup: cleanup:
VIR_FREE(path);
return ret; return ret;
} }
@ -4908,11 +4902,19 @@ qemuProcessLaunch(virConnectPtr conn,
goto cleanup; goto cleanup;
} }
if (qemuDomainSetPrivatePaths(&priv->libDir,
&priv->channelTargetDir,
cfg->libDir,
cfg->channelTargetDir,
vm->def->name,
vm->def->id) < 0)
goto cleanup;
if (VIR_ALLOC(priv->monConfig) < 0) if (VIR_ALLOC(priv->monConfig) < 0)
goto cleanup; goto cleanup;
VIR_DEBUG("Preparing monitor state"); VIR_DEBUG("Preparing monitor state");
if (qemuProcessPrepareMonitorChr(cfg, priv->monConfig, vm->def->name) < 0) if (qemuProcessPrepareMonitorChr(priv->monConfig, priv->libDir) < 0)
goto cleanup; goto cleanup;
priv->monJSON = virQEMUCapsGet(priv->qemuCaps, QEMU_CAPS_MONITOR_JSON); priv->monJSON = virQEMUCapsGet(priv->qemuCaps, QEMU_CAPS_MONITOR_JSON);
@ -5000,7 +5002,9 @@ qemuProcessLaunch(virConnectPtr conn,
&buildCommandLineCallbacks, false, &buildCommandLineCallbacks, false,
qemuCheckFips(), qemuCheckFips(),
priv->autoNodeset, priv->autoNodeset,
&nnicindexes, &nicindexes))) &nnicindexes, &nicindexes,
priv->libDir,
priv->channelTargetDir)))
goto cleanup; goto cleanup;
if (incoming && incoming->fd != -1) if (incoming && incoming->fd != -1)
@ -5010,8 +5014,8 @@ qemuProcessLaunch(virConnectPtr conn,
* Create all per-domain directories in order to make sure domain * Create all per-domain directories in order to make sure domain
* with any possible seclabels can access it. * with any possible seclabels can access it.
*/ */
if (qemuProcessMakeDir(driver, vm, cfg->libDir) < 0 || if (qemuProcessMakeDir(driver, vm, priv->libDir) < 0 ||
qemuProcessMakeDir(driver, vm, cfg->channelTargetDir) < 0) qemuProcessMakeDir(driver, vm, priv->channelTargetDir) < 0)
goto cleanup; goto cleanup;
/* now that we know it is about to start call the hook if present */ /* now that we know it is about to start call the hook if present */
@ -5456,7 +5460,6 @@ void qemuProcessStop(virQEMUDriverPtr driver,
virNetDevVPortProfilePtr vport = NULL; virNetDevVPortProfilePtr vport = NULL;
size_t i; size_t i;
char *timestamp; char *timestamp;
char *tmppath = NULL;
virQEMUDriverConfigPtr cfg = virQEMUDriverGetConfig(driver); virQEMUDriverConfigPtr cfg = virQEMUDriverGetConfig(driver);
qemuDomainLogContextPtr logCtxt = NULL; qemuDomainLogContextPtr logCtxt = NULL;
@ -5542,15 +5545,8 @@ void qemuProcessStop(virQEMUDriverPtr driver,
priv->monConfig = NULL; priv->monConfig = NULL;
} }
ignore_value(virAsprintf(&tmppath, "%s/domain-%s", virFileDeleteTree(priv->libDir);
cfg->libDir, vm->def->name)); virFileDeleteTree(priv->channelTargetDir);
virFileDeleteTree(tmppath);
VIR_FREE(tmppath);
ignore_value(virAsprintf(&tmppath, "%s/domain-%s",
cfg->channelTargetDir, vm->def->name));
virFileDeleteTree(tmppath);
VIR_FREE(tmppath);
ignore_value(virDomainChrDefForeach(vm->def, ignore_value(virDomainChrDefForeach(vm->def,
false, false,

View File

@ -25,9 +25,8 @@
# include "qemu_conf.h" # include "qemu_conf.h"
# include "qemu_domain.h" # include "qemu_domain.h"
int qemuProcessPrepareMonitorChr(virQEMUDriverConfigPtr cfg, int qemuProcessPrepareMonitorChr(virDomainChrSourceDefPtr monConfig,
virDomainChrSourceDefPtr monConfig, const char *domainDir);
const char *vm);
int qemuProcessStartCPUs(virQEMUDriverPtr driver, int qemuProcessStartCPUs(virQEMUDriverPtr driver,
virDomainObjPtr vm, virDomainObjPtr vm,

View File

@ -15,7 +15,7 @@ QEMU_AUDIO_DRV=none \
-nographic \ -nographic \
-nodefconfig \ -nodefconfig \
-nodefaults \ -nodefaults \
-monitor unix:/tmp/test-monitor,server,nowait \ -monitor unix:/tmp/lib/domain--1-aarch64test/monitor.sock,server,nowait \
-boot c \ -boot c \
-kernel /aarch64.kernel \ -kernel /aarch64.kernel \
-initrd /aarch64.initrd \ -initrd /aarch64.initrd \

View File

@ -15,7 +15,7 @@ QEMU_AUDIO_DRV=none \
-nographic \ -nographic \
-nodefconfig \ -nodefconfig \
-nodefaults \ -nodefaults \
-monitor unix:/tmp/test-monitor,server,nowait \ -monitor unix:/tmp/lib/domain--1-aarch64test/monitor.sock,server,nowait \
-boot c \ -boot c \
-usb \ -usb \
-drive file=/aarch64.raw,format=raw,if=none,id=drive-virtio-disk0 \ -drive file=/aarch64.raw,format=raw,if=none,id=drive-virtio-disk0 \

View File

@ -14,7 +14,7 @@ QEMU_AUDIO_DRV=none \
-uuid 6ba410c5-1e5c-4d57-bee7-2228e7ffa32f \ -uuid 6ba410c5-1e5c-4d57-bee7-2228e7ffa32f \
-nographic \ -nographic \
-nodefaults \ -nodefaults \
-monitor unix:/tmp/test-monitor,server,nowait \ -monitor unix:/tmp/lib/domain--1-aarch64test/monitor.sock,server,nowait \
-no-acpi \ -no-acpi \
-boot c \ -boot c \
-usb -usb

View File

@ -14,7 +14,7 @@ QEMU_AUDIO_DRV=none \
-uuid 6ba410c5-1e5c-4d57-bee7-2228e7ffa32f \ -uuid 6ba410c5-1e5c-4d57-bee7-2228e7ffa32f \
-nographic \ -nographic \
-nodefaults \ -nodefaults \
-monitor unix:/tmp/test-monitor,server,nowait \ -monitor unix:/tmp/lib/domain--1-aarch64test/monitor.sock,server,nowait \
-no-acpi \ -no-acpi \
-boot c \ -boot c \
-usb -usb

View File

@ -14,7 +14,7 @@ QEMU_AUDIO_DRV=none \
-uuid 6ba410c5-1e5c-4d57-bee7-2228e7ffa32f \ -uuid 6ba410c5-1e5c-4d57-bee7-2228e7ffa32f \
-nographic \ -nographic \
-nodefaults \ -nodefaults \
-monitor unix:/tmp/test-monitor,server,nowait \ -monitor unix:/tmp/lib/domain--1-aarch64test/monitor.sock,server,nowait \
-no-acpi \ -no-acpi \
-boot c \ -boot c \
-usb -usb

View File

@ -15,7 +15,7 @@ QEMU_AUDIO_DRV=none \
-nographic \ -nographic \
-nodefconfig \ -nodefconfig \
-nodefaults \ -nodefaults \
-monitor unix:/tmp/test-monitor,server,nowait \ -monitor unix:/tmp/lib/domain--1-armtest/monitor.sock,server,nowait \
-boot c \ -boot c \
-kernel /arm.kernel \ -kernel /arm.kernel \
-initrd /arm.initrd \ -initrd /arm.initrd \

View File

@ -15,7 +15,7 @@ QEMU_AUDIO_DRV=none \
-nographic \ -nographic \
-nodefconfig \ -nodefconfig \
-nodefaults \ -nodefaults \
-monitor unix:/tmp/test-monitor,server,nowait \ -monitor unix:/tmp/lib/domain--1-aarch64-virt-default/monitor.sock,server,nowait \
-boot c \ -boot c \
-kernel /aarch64.kernel \ -kernel /aarch64.kernel \
-initrd /aarch64.initrd \ -initrd /aarch64.initrd \

View File

@ -15,7 +15,7 @@ QEMU_AUDIO_DRV=none \
-nographic \ -nographic \
-nodefconfig \ -nodefconfig \
-nodefaults \ -nodefaults \
-monitor unix:/tmp/test-monitor,server,nowait \ -monitor unix:/tmp/lib/domain--1-aarch64test/monitor.sock,server,nowait \
-boot c \ -boot c \
-kernel /aarch64.kernel \ -kernel /aarch64.kernel \
-initrd /aarch64.initrd \ -initrd /aarch64.initrd \

View File

@ -15,7 +15,7 @@ QEMU_AUDIO_DRV=none \
-nographic \ -nographic \
-nodefconfig \ -nodefconfig \
-nodefaults \ -nodefaults \
-monitor unix:/tmp/test-monitor,server,nowait \ -monitor unix:/tmp/lib/domain--1-aarch64test/monitor.sock,server,nowait \
-boot c \ -boot c \
-kernel /aarch64.kernel \ -kernel /aarch64.kernel \
-initrd /aarch64.initrd \ -initrd /aarch64.initrd \

View File

@ -15,7 +15,7 @@ QEMU_AUDIO_DRV=none \
-nographic \ -nographic \
-nodefconfig \ -nodefconfig \
-nodefaults \ -nodefaults \
-monitor unix:/tmp/test-monitor,server,nowait \ -monitor unix:/tmp/lib/domain--1-aarch64test/monitor.sock,server,nowait \
-boot c \ -boot c \
-kernel /aarch64.kernel \ -kernel /aarch64.kernel \
-initrd /aarch64.initrd \ -initrd /aarch64.initrd \

View File

@ -14,7 +14,7 @@ QEMU_AUDIO_DRV=none \
-nographic \ -nographic \
-nodefconfig \ -nodefconfig \
-nodefaults \ -nodefaults \
-monitor unix:/tmp/test-monitor,server,nowait \ -monitor unix:/tmp/lib/domain--1-armtest/monitor.sock,server,nowait \
-boot c \ -boot c \
-kernel /arm.kernel \ -kernel /arm.kernel \
-initrd /arm.initrd \ -initrd /arm.initrd \

View File

@ -14,7 +14,7 @@ QEMU_AUDIO_DRV=none \
-nographic \ -nographic \
-nodefconfig \ -nodefconfig \
-nodefaults \ -nodefaults \
-monitor unix:/tmp/test-monitor,server,nowait \ -monitor unix:/tmp/lib/domain--1-armtest/monitor.sock,server,nowait \
-boot c \ -boot c \
-kernel /arm.kernel \ -kernel /arm.kernel \
-initrd /arm.initrd \ -initrd /arm.initrd \

View File

@ -14,7 +14,7 @@ QEMU_AUDIO_DRV=none \
-nographic \ -nographic \
-nodefconfig \ -nodefconfig \
-nodefaults \ -nodefaults \
-monitor unix:/tmp/test-monitor,server,nowait \ -monitor unix:/tmp/lib/domain--1-armtest/monitor.sock,server,nowait \
-boot c \ -boot c \
-kernel /arm.kernel \ -kernel /arm.kernel \
-initrd /arm.initrd \ -initrd /arm.initrd \

View File

@ -14,7 +14,7 @@ QEMU_AUDIO_DRV=none \
-nographic \ -nographic \
-nodefconfig \ -nodefconfig \
-nodefaults \ -nodefaults \
-monitor unix:/tmp/test-monitor,server,nowait \ -monitor unix:/tmp/lib/domain--1-armtest/monitor.sock,server,nowait \
-boot c \ -boot c \
-kernel /arm.kernel \ -kernel /arm.kernel \
-initrd /arm.initrd \ -initrd /arm.initrd \

View File

@ -14,7 +14,7 @@ QEMU_AUDIO_DRV=none \
-nographic \ -nographic \
-nodefconfig \ -nodefconfig \
-nodefaults \ -nodefaults \
-monitor unix:/tmp/test-monitor,server,nowait \ -monitor unix:/tmp/lib/domain--1-QEMUGuest1/monitor.sock,server,nowait \
-no-acpi \ -no-acpi \
-boot c \ -boot c \
-device virtio-balloon-ccw,id=balloon0,devno=fe.0.000a,deflate-on-oom=on -device virtio-balloon-ccw,id=balloon0,devno=fe.0.000a,deflate-on-oom=on

View File

@ -14,7 +14,7 @@ QEMU_AUDIO_DRV=none \
-nographic \ -nographic \
-nodefconfig \ -nodefconfig \
-nodefaults \ -nodefaults \
-monitor unix:/tmp/test-monitor,server,nowait \ -monitor unix:/tmp/lib/domain--1-QEMUGuest1/monitor.sock,server,nowait \
-no-acpi \ -no-acpi \
-boot c \ -boot c \
-usb \ -usb \

View File

@ -14,7 +14,7 @@ QEMU_AUDIO_DRV=none \
-nographic \ -nographic \
-nodefconfig \ -nodefconfig \
-nodefaults \ -nodefaults \
-monitor unix:/tmp/test-monitor,server,nowait \ -monitor unix:/tmp/lib/domain--1-QEMUGuest1/monitor.sock,server,nowait \
-no-acpi \ -no-acpi \
-boot c \ -boot c \
-usb \ -usb \

View File

@ -14,7 +14,7 @@ QEMU_AUDIO_DRV=none \
-nographic \ -nographic \
-nodefconfig \ -nodefconfig \
-nodefaults \ -nodefaults \
-monitor unix:/tmp/test-monitor,server,nowait \ -monitor unix:/tmp/lib/domain--1-QEMUGuest1/monitor.sock,server,nowait \
-no-acpi \ -no-acpi \
-boot c \ -boot c \
-usb \ -usb \

View File

@ -14,7 +14,7 @@ QEMU_AUDIO_DRV=none \
-nographic \ -nographic \
-nodefconfig \ -nodefconfig \
-nodefaults \ -nodefaults \
-monitor unix:/tmp/test-monitor,server,nowait \ -monitor unix:/tmp/lib/domain--1-QEMUGuest1/monitor.sock,server,nowait \
-no-acpi \ -no-acpi \
-boot c \ -boot c \
-usb \ -usb \

View File

@ -14,7 +14,7 @@ QEMU_AUDIO_DRV=none \
-nographic \ -nographic \
-nodefconfig \ -nodefconfig \
-nodefaults \ -nodefaults \
-monitor unix:/tmp/test-monitor,server,nowait \ -monitor unix:/tmp/lib/domain--1-QEMUGuest1/monitor.sock,server,nowait \
-no-acpi \ -no-acpi \
-boot c \ -boot c \
-usb \ -usb \

View File

@ -15,7 +15,7 @@ QEMU_AUDIO_DRV=none \
-nographic \ -nographic \
-nodefconfig \ -nodefconfig \
-nodefaults \ -nodefaults \
-monitor unix:/tmp/test-monitor,server,nowait \ -monitor unix:/tmp/lib/domain--1-aarch64test/monitor.sock,server,nowait \
-boot c \ -boot c \
-kernel /aarch64.kernel \ -kernel /aarch64.kernel \
-initrd /aarch64.initrd \ -initrd /aarch64.initrd \

View File

@ -15,7 +15,7 @@ QEMU_AUDIO_DRV=none \
-uuid 362d1fc1-df7d-193e-5c18-49a71bd1da66 \ -uuid 362d1fc1-df7d-193e-5c18-49a71bd1da66 \
-nographic \ -nographic \
-nodefaults \ -nodefaults \
-monitor unix:/tmp/test-monitor,server,nowait \ -monitor unix:/tmp/lib/domain--1-test-bios/monitor.sock,server,nowait \
-boot c \ -boot c \
-usb \ -usb \
-drive file=/dev/HostVG/QEMUGuest1,format=raw,if=none,id=drive-ide0-0-0 \ -drive file=/dev/HostVG/QEMUGuest1,format=raw,if=none,id=drive-ide0-0-0 \

View File

@ -15,7 +15,7 @@ QEMU_AUDIO_DRV=none \
-nographic \ -nographic \
-nodefaults \ -nodefaults \
-device sga \ -device sga \
-monitor unix:/tmp/test-monitor,server,nowait \ -monitor unix:/tmp/lib/domain--1-test-bios/monitor.sock,server,nowait \
-no-acpi \ -no-acpi \
-boot c \ -boot c \
-usb \ -usb \

View File

@ -13,7 +13,7 @@ QEMU_AUDIO_DRV=none \
-uuid c7a5fdbd-edaf-9455-926a-d65c16db1809 \ -uuid c7a5fdbd-edaf-9455-926a-d65c16db1809 \
-nographic \ -nographic \
-nodefaults \ -nodefaults \
-monitor unix:/tmp/test-monitor,server,nowait \ -monitor unix:/tmp/lib/domain--1-QEMUGuest1/monitor.sock,server,nowait \
-no-acpi \ -no-acpi \
-boot c \ -boot c \
-usb \ -usb \

View File

@ -13,7 +13,7 @@ QEMU_AUDIO_DRV=none \
-uuid c7a5fdbd-edaf-9455-926a-d65c16db1809 \ -uuid c7a5fdbd-edaf-9455-926a-d65c16db1809 \
-nographic \ -nographic \
-nodefaults \ -nodefaults \
-monitor unix:/tmp/test-monitor,server,nowait \ -monitor unix:/tmp/lib/domain--1-QEMUGuest1/monitor.sock,server,nowait \
-no-acpi \ -no-acpi \
-boot c \ -boot c \
-usb \ -usb \

View File

@ -13,7 +13,7 @@ QEMU_AUDIO_DRV=none \
-uuid c7a5fdbd-edaf-9455-926a-d65c16db1809 \ -uuid c7a5fdbd-edaf-9455-926a-d65c16db1809 \
-nographic \ -nographic \
-nodefaults \ -nodefaults \
-monitor unix:/tmp/test-monitor,server,nowait \ -monitor unix:/tmp/lib/domain--1-QEMUGuest1/monitor.sock,server,nowait \
-no-acpi \ -no-acpi \
-boot c \ -boot c \
-usb \ -usb \

View File

@ -13,7 +13,7 @@ QEMU_AUDIO_DRV=none \
-uuid c7a5fdbd-edaf-9455-926a-d65c16db1809 \ -uuid c7a5fdbd-edaf-9455-926a-d65c16db1809 \
-nographic \ -nographic \
-nodefaults \ -nodefaults \
-monitor unix:/tmp/test-monitor,server,nowait \ -monitor unix:/tmp/lib/domain--1-QEMUGuest1/monitor.sock,server,nowait \
-no-acpi \ -no-acpi \
-boot c \ -boot c \
-usb \ -usb \

View File

@ -13,7 +13,7 @@ QEMU_AUDIO_DRV=none \
-uuid c7a5fdbd-edaf-9455-926a-d65c16db1809 \ -uuid c7a5fdbd-edaf-9455-926a-d65c16db1809 \
-nographic \ -nographic \
-nodefaults \ -nodefaults \
-monitor unix:/tmp/test-monitor,server,nowait \ -monitor unix:/tmp/lib/domain--1-QEMUGuest1/monitor.sock,server,nowait \
-no-acpi \ -no-acpi \
-boot d \ -boot d \
-usb \ -usb \

View File

@ -13,7 +13,7 @@ QEMU_AUDIO_DRV=none \
-uuid c7a5fdbd-edaf-9455-926a-d65c16db1809 \ -uuid c7a5fdbd-edaf-9455-926a-d65c16db1809 \
-nographic \ -nographic \
-nodefaults \ -nodefaults \
-monitor unix:/tmp/test-monitor,server,nowait \ -monitor unix:/tmp/lib/domain--1-QEMUGuest1/monitor.sock,server,nowait \
-no-acpi \ -no-acpi \
-usb \ -usb \
-drive file=/tmp/vda.img,format=raw,if=none,id=drive-virtio-disk0 \ -drive file=/tmp/vda.img,format=raw,if=none,id=drive-virtio-disk0 \

View File

@ -13,7 +13,7 @@ QEMU_AUDIO_DRV=none \
-uuid c7a5fdbd-edaf-9455-926a-d65c16db1809 \ -uuid c7a5fdbd-edaf-9455-926a-d65c16db1809 \
-nographic \ -nographic \
-nodefaults \ -nodefaults \
-monitor unix:/tmp/test-monitor,server,nowait \ -monitor unix:/tmp/lib/domain--1-QEMUGuest1/monitor.sock,server,nowait \
-no-acpi \ -no-acpi \
-boot dnca \ -boot dnca \
-usb \ -usb \

View File

@ -13,7 +13,7 @@ QEMU_AUDIO_DRV=none \
-uuid c7a5fdbd-edaf-9455-926a-d65c16db1809 \ -uuid c7a5fdbd-edaf-9455-926a-d65c16db1809 \
-nographic \ -nographic \
-nodefaults \ -nodefaults \
-monitor unix:/tmp/test-monitor,server,nowait \ -monitor unix:/tmp/lib/domain--1-QEMUGuest1/monitor.sock,server,nowait \
-no-acpi \ -no-acpi \
-boot a \ -boot a \
-device i82801b11-bridge,id=pci.1,bus=pcie.0,addr=0x1e \ -device i82801b11-bridge,id=pci.1,bus=pcie.0,addr=0x1e \

View File

@ -13,7 +13,7 @@ QEMU_AUDIO_DRV=none \
-uuid c7a5fdbd-edaf-9455-926a-d65c16db1809 \ -uuid c7a5fdbd-edaf-9455-926a-d65c16db1809 \
-nographic \ -nographic \
-nodefaults \ -nodefaults \
-monitor unix:/tmp/test-monitor,server,nowait \ -monitor unix:/tmp/lib/domain--1-QEMUGuest1/monitor.sock,server,nowait \
-no-acpi \ -no-acpi \
-boot a \ -boot a \
-usb \ -usb \

View File

@ -13,7 +13,7 @@ QEMU_AUDIO_DRV=none \
-uuid c7a5fdbd-edaf-9455-926a-d65c16db1809 \ -uuid c7a5fdbd-edaf-9455-926a-d65c16db1809 \
-nographic \ -nographic \
-nodefaults \ -nodefaults \
-monitor unix:/tmp/test-monitor,server,nowait \ -monitor unix:/tmp/lib/domain--1-QEMUGuest1/monitor.sock,server,nowait \
-no-acpi \ -no-acpi \
-boot menu=off \ -boot menu=off \
-usb \ -usb \

View File

@ -13,7 +13,7 @@ QEMU_AUDIO_DRV=none \
-uuid c7a5fdbd-edaf-9455-926a-d65c16db1809 \ -uuid c7a5fdbd-edaf-9455-926a-d65c16db1809 \
-nographic \ -nographic \
-nodefaults \ -nodefaults \
-monitor unix:/tmp/test-monitor,server,nowait \ -monitor unix:/tmp/lib/domain--1-QEMUGuest1/monitor.sock,server,nowait \
-no-acpi \ -no-acpi \
-boot order=d,menu=off \ -boot order=d,menu=off \
-usb \ -usb \

View File

@ -13,7 +13,7 @@ QEMU_AUDIO_DRV=none \
-uuid c7a5fdbd-edaf-9455-926a-d65c16db1809 \ -uuid c7a5fdbd-edaf-9455-926a-d65c16db1809 \
-nographic \ -nographic \
-nodefaults \ -nodefaults \
-monitor unix:/tmp/test-monitor,server,nowait \ -monitor unix:/tmp/lib/domain--1-QEMUGuest1/monitor.sock,server,nowait \
-no-acpi \ -no-acpi \
-boot order=d,menu=off \ -boot order=d,menu=off \
-usb \ -usb \

View File

@ -13,7 +13,7 @@ QEMU_AUDIO_DRV=none \
-uuid c7a5fdbd-edaf-9455-926a-d65c16db1809 \ -uuid c7a5fdbd-edaf-9455-926a-d65c16db1809 \
-nographic \ -nographic \
-nodefaults \ -nodefaults \
-monitor unix:/tmp/test-monitor,server,nowait \ -monitor unix:/tmp/lib/domain--1-QEMUGuest1/monitor.sock,server,nowait \
-no-acpi \ -no-acpi \
-boot order=d,menu=on,splash-time=3000 \ -boot order=d,menu=on,splash-time=3000 \
-usb \ -usb \

View File

@ -13,7 +13,7 @@ QEMU_AUDIO_DRV=none \
-uuid c7a5fdbd-edaf-9455-926a-d65c16db1809 \ -uuid c7a5fdbd-edaf-9455-926a-d65c16db1809 \
-nographic \ -nographic \
-nodefaults \ -nodefaults \
-monitor unix:/tmp/test-monitor,server,nowait \ -monitor unix:/tmp/lib/domain--1-QEMUGuest1/monitor.sock,server,nowait \
-no-acpi \ -no-acpi \
-boot order=d,menu=on \ -boot order=d,menu=on \
-usb \ -usb \

View File

@ -13,7 +13,7 @@ QEMU_AUDIO_DRV=none \
-uuid c7a5fdbd-edaf-9455-926a-d65c16db1809 \ -uuid c7a5fdbd-edaf-9455-926a-d65c16db1809 \
-nographic \ -nographic \
-nodefaults \ -nodefaults \
-monitor unix:/tmp/test-monitor,server,nowait \ -monitor unix:/tmp/lib/domain--1-QEMUGuest1/monitor.sock,server,nowait \
-no-acpi \ -no-acpi \
-boot order=dcna,menu=on \ -boot order=dcna,menu=on \
-usb \ -usb \

View File

@ -13,7 +13,7 @@ QEMU_AUDIO_DRV=none \
-uuid c7a5fdbd-edaf-9455-926a-d65c16db1809 \ -uuid c7a5fdbd-edaf-9455-926a-d65c16db1809 \
-nographic \ -nographic \
-nodefaults \ -nodefaults \
-monitor unix:/tmp/test-monitor,server,nowait \ -monitor unix:/tmp/lib/domain--1-QEMUGuest1/monitor.sock,server,nowait \
-no-acpi \ -no-acpi \
-boot n \ -boot n \
-usb \ -usb \

View File

@ -13,7 +13,7 @@ QEMU_AUDIO_DRV=none \
-uuid c7a5fdbd-edaf-9455-926a-d65c16db1809 \ -uuid c7a5fdbd-edaf-9455-926a-d65c16db1809 \
-nographic \ -nographic \
-nodefaults \ -nodefaults \
-monitor unix:/tmp/test-monitor,server,nowait \ -monitor unix:/tmp/lib/domain--1-QEMUGuest1/monitor.sock,server,nowait \
-no-acpi \ -no-acpi \
-usb \ -usb \
-drive file=/dev/HostVG/QEMUGuest1,format=raw,if=none,id=drive-ide0-0-0 \ -drive file=/dev/HostVG/QEMUGuest1,format=raw,if=none,id=drive-ide0-0-0 \

View File

@ -13,7 +13,7 @@ QEMU_AUDIO_DRV=none \
-uuid c7a5fdbd-edaf-9455-926a-d65c16db1809 \ -uuid c7a5fdbd-edaf-9455-926a-d65c16db1809 \
-nographic \ -nographic \
-nodefaults \ -nodefaults \
-monitor unix:/tmp/test-monitor,server,nowait \ -monitor unix:/tmp/lib/domain--1-QEMUGuest1/monitor.sock,server,nowait \
-no-acpi \ -no-acpi \
-boot strict=on \ -boot strict=on \
-usb \ -usb \

View File

@ -13,7 +13,7 @@ QEMU_AUDIO_DRV=none \
-uuid c7a5fdbd-edaf-9455-926a-d65c16db1809 \ -uuid c7a5fdbd-edaf-9455-926a-d65c16db1809 \
-nographic \ -nographic \
-nodefaults \ -nodefaults \
-monitor unix:/tmp/test-monitor,server,nowait \ -monitor unix:/tmp/lib/domain--1-QEMUGuest1/monitor.sock,server,nowait \
-no-acpi \ -no-acpi \
-device i82801b11-bridge,id=pci.1,bus=pcie.0,addr=0x1e \ -device i82801b11-bridge,id=pci.1,bus=pcie.0,addr=0x1e \
-device pci-bridge,chassis_nr=2,id=pci.2,bus=pci.1,addr=0x1 \ -device pci-bridge,chassis_nr=2,id=pci.2,bus=pci.1,addr=0x1 \

View File

@ -14,7 +14,8 @@ QEMU_AUDIO_DRV=none \
-nographic \ -nographic \
-nodefconfig \ -nodefconfig \
-nodefaults \ -nodefaults \
-chardev socket,id=charmonitor,path=/tmp/test-monitor,server,nowait \ -chardev socket,id=charmonitor,path=/tmp/lib/domain--1-QEMUGuest1/monitor.sock,\
server,nowait \
-mon chardev=charmonitor,id=monitor,mode=readline \ -mon chardev=charmonitor,id=monitor,mode=readline \
-no-acpi \ -no-acpi \
-boot c \ -boot c \

View File

@ -13,7 +13,7 @@ QEMU_AUDIO_DRV=spice \
-uuid c7a5fdbd-edaf-9455-926a-d65c16db1809 \ -uuid c7a5fdbd-edaf-9455-926a-d65c16db1809 \
-nodefconfig \ -nodefconfig \
-nodefaults \ -nodefaults \
-monitor unix:/tmp/test-monitor,server,nowait \ -monitor unix:/tmp/lib/domain--1-QEMUGuest1/monitor.sock,server,nowait \
-no-acpi \ -no-acpi \
-boot c \ -boot c \
-device virtio-serial-pci,id=virtio-serial1,bus=pci.0,addr=0xa \ -device virtio-serial-pci,id=virtio-serial1,bus=pci.0,addr=0xa \

View File

@ -13,7 +13,7 @@ QEMU_AUDIO_DRV=spice \
-uuid c7a5fdbd-edaf-9455-926a-d65c16db1809 \ -uuid c7a5fdbd-edaf-9455-926a-d65c16db1809 \
-nodefconfig \ -nodefconfig \
-nodefaults \ -nodefaults \
-monitor unix:/tmp/test-monitor,server,nowait \ -monitor unix:/tmp/lib/domain--1-QEMUGuest1/monitor.sock,server,nowait \
-no-acpi \ -no-acpi \
-boot c \ -boot c \
-device virtio-serial-pci,id=virtio-serial1,bus=pci.0,addr=0xa \ -device virtio-serial-pci,id=virtio-serial1,bus=pci.0,addr=0xa \

View File

@ -14,7 +14,8 @@ QEMU_AUDIO_DRV=none \
-nographic \ -nographic \
-nodefconfig \ -nodefconfig \
-nodefaults \ -nodefaults \
-chardev socket,id=charmonitor,path=/tmp/test-monitor,server,nowait \ -chardev socket,id=charmonitor,path=/tmp/lib/domain--1-QEMUGuest1/monitor.sock,\
server,nowait \
-mon chardev=charmonitor,id=monitor,mode=readline \ -mon chardev=charmonitor,id=monitor,mode=readline \
-no-acpi \ -no-acpi \
-boot c \ -boot c \

View File

@ -14,7 +14,8 @@ QEMU_AUDIO_DRV=none \
-nographic \ -nographic \
-nodefconfig \ -nodefconfig \
-nodefaults \ -nodefaults \
-chardev socket,id=charmonitor,path=/tmp/test-monitor,server,nowait \ -chardev socket,id=charmonitor,path=/tmp/lib/domain--1-QEMUGuest1/monitor.sock,\
server,nowait \
-mon chardev=charmonitor,id=monitor,mode=readline \ -mon chardev=charmonitor,id=monitor,mode=readline \
-no-acpi \ -no-acpi \
-boot c \ -boot c \

View File

@ -14,7 +14,8 @@ QEMU_AUDIO_DRV=none \
-nographic \ -nographic \
-nodefconfig \ -nodefconfig \
-nodefaults \ -nodefaults \
-chardev socket,id=charmonitor,path=/tmp/test-monitor,server,nowait \ -chardev socket,id=charmonitor,path=/tmp/lib/domain--1-QEMUGuest1/monitor.sock,\
server,nowait \
-mon chardev=charmonitor,id=monitor,mode=readline \ -mon chardev=charmonitor,id=monitor,mode=readline \
-no-acpi \ -no-acpi \
-boot c \ -boot c \

View File

@ -14,7 +14,8 @@ QEMU_AUDIO_DRV=none \
-nographic \ -nographic \
-nodefconfig \ -nodefconfig \
-nodefaults \ -nodefaults \
-chardev socket,id=charmonitor,path=/tmp/test-monitor,server,nowait \ -chardev socket,id=charmonitor,path=/tmp/lib/domain--1-QEMUGuest1/monitor.sock,\
server,nowait \
-mon chardev=charmonitor,id=monitor,mode=readline \ -mon chardev=charmonitor,id=monitor,mode=readline \
-no-acpi \ -no-acpi \
-boot c \ -boot c \

View File

@ -14,7 +14,8 @@ QEMU_AUDIO_DRV=none \
-nographic \ -nographic \
-nodefconfig \ -nodefconfig \
-nodefaults \ -nodefaults \
-chardev socket,id=charmonitor,path=/tmp/test-monitor,server,nowait \ -chardev socket,id=charmonitor,path=/tmp/lib/domain--1-QEMUGuest1/monitor.sock,\
server,nowait \
-mon chardev=charmonitor,id=monitor,mode=readline \ -mon chardev=charmonitor,id=monitor,mode=readline \
-no-acpi \ -no-acpi \
-boot c \ -boot c \

View File

@ -14,7 +14,8 @@ QEMU_AUDIO_DRV=none \
-nographic \ -nographic \
-nodefconfig \ -nodefconfig \
-nodefaults \ -nodefaults \
-chardev socket,id=charmonitor,path=/tmp/test-monitor,server,nowait \ -chardev socket,id=charmonitor,path=/tmp/lib/domain--1-QEMUGuest1/monitor.sock,\
server,nowait \
-mon chardev=charmonitor,id=monitor,mode=readline \ -mon chardev=charmonitor,id=monitor,mode=readline \
-no-acpi \ -no-acpi \
-boot c \ -boot c \
@ -24,16 +25,18 @@ QEMU_AUDIO_DRV=none \
-drive file=/dev/HostVG/QEMUGuest1,format=raw,if=none,id=drive-ide0-0-0 \ -drive file=/dev/HostVG/QEMUGuest1,format=raw,if=none,id=drive-ide0-0-0 \
-device ide-drive,bus=ide.0,unit=0,drive=drive-ide0-0-0,id=ide0-0-0 \ -device ide-drive,bus=ide.0,unit=0,drive=drive-ide0-0-0,id=ide0-0-0 \
-chardev socket,id=charchannel0,\ -chardev socket,id=charchannel0,\
path=/tmp/domain-QEMUGuest1/org.qemu.guest_agent.0,server,nowait \ path=/tmp/channel/domain--1-QEMUGuest1/org.qemu.guest_agent.0,server,nowait \
-device virtserialport,bus=virtio-serial0.0,nr=1,chardev=charchannel0,\ -device virtserialport,bus=virtio-serial0.0,nr=1,chardev=charchannel0,\
id=channel0,name=org.qemu.guest_agent.0 \ id=channel0,name=org.qemu.guest_agent.0 \
-chardev socket,id=charchannel1,path=/tmp/domain-QEMUGuest1/unknown.sock,server,\ -chardev socket,id=charchannel1,\
nowait \ path=/tmp/channel/domain--1-QEMUGuest1/unknown.sock,server,nowait \
-device virtserialport,bus=virtio-serial0.0,nr=2,chardev=charchannel1,\ -device virtserialport,bus=virtio-serial0.0,nr=2,chardev=charchannel1,\
id=channel1 \ id=channel1 \
-chardev socket,id=charchannel2,path=/tmp/domain-QEMUGuest1/ble,server,nowait \ -chardev socket,id=charchannel2,path=/tmp/channel/domain--1-QEMUGuest1/ble,\
server,nowait \
-device virtserialport,bus=virtio-serial0.0,nr=3,chardev=charchannel2,\ -device virtserialport,bus=virtio-serial0.0,nr=3,chardev=charchannel2,\
id=channel2,name=ble \ id=channel2,name=ble \
-chardev socket,id=charchannel3,path=/tmp/domain-QEMUGuest1/fdsa,server,nowait \ -chardev socket,id=charchannel3,path=/tmp/channel/domain--1-QEMUGuest1/fdsa,\
server,nowait \
-device virtserialport,bus=virtio-serial0.0,nr=4,chardev=charchannel3,\ -device virtserialport,bus=virtio-serial0.0,nr=4,chardev=charchannel3,\
id=channel3,name=fdsa id=channel3,name=fdsa

View File

@ -14,7 +14,8 @@ QEMU_AUDIO_DRV=none \
-nographic \ -nographic \
-nodefconfig \ -nodefconfig \
-nodefaults \ -nodefaults \
-chardev socket,id=charmonitor,path=/tmp/test-monitor,server,nowait \ -chardev socket,id=charmonitor,path=/tmp/lib/domain--1-QEMUGuest1/monitor.sock,\
server,nowait \
-mon chardev=charmonitor,id=monitor,mode=readline \ -mon chardev=charmonitor,id=monitor,mode=readline \
-no-acpi \ -no-acpi \
-boot c \ -boot c \

View File

@ -13,7 +13,7 @@ QEMU_AUDIO_DRV=none \
-uuid c7a5fdbd-edaf-9455-926a-d65c16db1809 \ -uuid c7a5fdbd-edaf-9455-926a-d65c16db1809 \
-nographic \ -nographic \
-nodefaults \ -nodefaults \
-monitor unix:/tmp/test-monitor,server,nowait \ -monitor unix:/tmp/lib/domain--1-QEMUGuest1/monitor.sock,server,nowait \
-rtc base=utc,driftfix=slew \ -rtc base=utc,driftfix=slew \
-no-acpi \ -no-acpi \
-boot c \ -boot c \

View File

@ -14,7 +14,7 @@ TZ=Europe/Paris \
-uuid c7a5fdbd-edaf-9455-926a-d65c16db1809 \ -uuid c7a5fdbd-edaf-9455-926a-d65c16db1809 \
-nographic \ -nographic \
-nodefaults \ -nodefaults \
-monitor unix:/tmp/test-monitor,server,nowait \ -monitor unix:/tmp/lib/domain--1-QEMUGuest1/monitor.sock,server,nowait \
-rtc base=localtime \ -rtc base=localtime \
-no-acpi \ -no-acpi \
-boot c \ -boot c \

View File

@ -13,7 +13,7 @@ QEMU_AUDIO_DRV=none \
-uuid c7a5fdbd-edaf-9455-926a-d65c16db1809 \ -uuid c7a5fdbd-edaf-9455-926a-d65c16db1809 \
-nographic \ -nographic \
-nodefaults \ -nodefaults \
-monitor unix:/tmp/test-monitor,server,nowait \ -monitor unix:/tmp/lib/domain--1-QEMUGuest1/monitor.sock,server,nowait \
-rtc base=utc,driftfix=slew \ -rtc base=utc,driftfix=slew \
-no-kvm-pit-reinjection \ -no-kvm-pit-reinjection \
-no-hpet \ -no-hpet \

View File

@ -13,7 +13,7 @@ QEMU_AUDIO_DRV=none \
-uuid 1c15a1f6-f4f0-4d3c-9002-667ddb458736 \ -uuid 1c15a1f6-f4f0-4d3c-9002-667ddb458736 \
-nographic \ -nographic \
-nodefaults \ -nodefaults \
-monitor unix:/tmp/test-monitor,server,nowait \ -monitor unix:/tmp/lib/domain--1-QEMUGuest1/monitor.sock,server,nowait \
-rtc base=2009-02-14T00:01:30 \ -rtc base=2009-02-14T00:01:30 \
-no-acpi \ -no-acpi \
-boot c \ -boot c \

View File

@ -13,7 +13,7 @@ QEMU_AUDIO_DRV=none \
-uuid c7a5fdbd-edaf-9455-926a-d65c16db1809 \ -uuid c7a5fdbd-edaf-9455-926a-d65c16db1809 \
-nographic \ -nographic \
-nodefaults \ -nodefaults \
-monitor unix:/tmp/test-monitor,server,nowait \ -monitor unix:/tmp/lib/domain--1-QEMUGuest1/monitor.sock,server,nowait \
-localtime \ -localtime \
-no-acpi \ -no-acpi \
-boot c \ -boot c \

View File

@ -14,7 +14,7 @@ QEMU_AUDIO_DRV=none \
-uuid c7a5fdbd-edaf-9455-926a-d65c16db1809 \ -uuid c7a5fdbd-edaf-9455-926a-d65c16db1809 \
-nographic \ -nographic \
-nodefaults \ -nodefaults \
-monitor unix:/tmp/test-monitor,server,nowait \ -monitor unix:/tmp/lib/domain--1-QEMUGuest1/monitor.sock,server,nowait \
-no-acpi \ -no-acpi \
-boot n \ -boot n \
-usb \ -usb \

View File

@ -14,7 +14,7 @@ QEMU_AUDIO_DRV=none \
-nographic \ -nographic \
-nodefconfig \ -nodefconfig \
-nodefaults \ -nodefaults \
-monitor unix:/tmp/test-monitor,server,nowait \ -monitor unix:/tmp/lib/domain--1-QEMUGuest1/monitor.sock,server,nowait \
-no-acpi \ -no-acpi \
-boot c \ -boot c \
-usb \ -usb \

View File

@ -13,7 +13,7 @@ QEMU_AUDIO_DRV=none \
-uuid c7a5fdbd-edaf-9455-926a-d65c16db1809 \ -uuid c7a5fdbd-edaf-9455-926a-d65c16db1809 \
-nographic \ -nographic \
-nodefaults \ -nodefaults \
-monitor unix:/tmp/test-monitor,server,nowait \ -monitor unix:/tmp/lib/domain--1-QEMUGuest1/monitor.sock,server,nowait \
-rtc base=2009-02-15T09:49:06 \ -rtc base=2009-02-15T09:49:06 \
-no-acpi \ -no-acpi \
-boot c \ -boot c \

View File

@ -13,7 +13,7 @@ QEMU_AUDIO_DRV=none \
-uuid c7a5fdbd-edaf-9455-926a-d65c16db1809 \ -uuid c7a5fdbd-edaf-9455-926a-d65c16db1809 \
-nographic \ -nographic \
-nodefaults \ -nodefaults \
-monitor unix:/tmp/test-monitor,server,nowait \ -monitor unix:/tmp/lib/domain--1-QEMUGuest1/monitor.sock,server,nowait \
-no-acpi \ -no-acpi \
-boot c \ -boot c \
-usb \ -usb \

View File

@ -14,7 +14,8 @@ QEMU_AUDIO_DRV=none \
-nographic \ -nographic \
-nodefconfig \ -nodefconfig \
-nodefaults \ -nodefaults \
-chardev socket,id=charmonitor,path=/tmp/test-monitor,server,nowait \ -chardev socket,id=charmonitor,path=/tmp/lib/domain--1-QEMUGuest1/monitor.sock,\
server,nowait \
-mon chardev=charmonitor,id=monitor,mode=readline \ -mon chardev=charmonitor,id=monitor,mode=readline \
-no-acpi \ -no-acpi \
-boot c \ -boot c \

View File

@ -13,7 +13,7 @@ QEMU_AUDIO_DRV=none \
-uuid c7a5fdbd-edaf-9455-926a-d65c16db1809 \ -uuid c7a5fdbd-edaf-9455-926a-d65c16db1809 \
-nographic \ -nographic \
-nodefaults \ -nodefaults \
-monitor unix:/tmp/test-monitor,server,nowait \ -monitor unix:/tmp/lib/domain--1-QEMUGuest1/monitor.sock,server,nowait \
-no-acpi \ -no-acpi \
-boot c \ -boot c \
-usb \ -usb \

View File

@ -14,7 +14,8 @@ QEMU_AUDIO_DRV=none \
-nographic \ -nographic \
-nodefconfig \ -nodefconfig \
-nodefaults \ -nodefaults \
-chardev socket,id=charmonitor,path=/tmp/test-monitor,server,nowait \ -chardev socket,id=charmonitor,path=/tmp/lib/domain--1-QEMUGuest1/monitor.sock,\
server,nowait \
-mon chardev=charmonitor,id=monitor,mode=readline \ -mon chardev=charmonitor,id=monitor,mode=readline \
-no-acpi \ -no-acpi \
-boot c \ -boot c \

View File

@ -14,7 +14,8 @@ QEMU_AUDIO_DRV=none \
-nographic \ -nographic \
-nodefconfig \ -nodefconfig \
-nodefaults \ -nodefaults \
-chardev socket,id=charmonitor,path=/tmp/test-monitor,server,nowait \ -chardev socket,id=charmonitor,path=/tmp/lib/domain--1-QEMUGuest1/monitor.sock,\
server,nowait \
-mon chardev=charmonitor,id=monitor,mode=readline \ -mon chardev=charmonitor,id=monitor,mode=readline \
-no-acpi \ -no-acpi \
-device virtio-serial-ccw,id=virtio-serial0,devno=fe.0.0001 \ -device virtio-serial-ccw,id=virtio-serial0,devno=fe.0.0001 \

View File

@ -14,7 +14,8 @@ QEMU_AUDIO_DRV=none \
-nographic \ -nographic \
-nodefconfig \ -nodefconfig \
-nodefaults \ -nodefaults \
-chardev socket,id=charmonitor,path=/tmp/test-monitor,server,nowait \ -chardev socket,id=charmonitor,path=/tmp/lib/domain--1-QEMUGuest1/monitor.sock,\
server,nowait \
-mon chardev=charmonitor,id=monitor,mode=readline \ -mon chardev=charmonitor,id=monitor,mode=readline \
-no-acpi \ -no-acpi \
-boot c \ -boot c \

View File

@ -14,7 +14,8 @@ QEMU_AUDIO_DRV=none \
-nographic \ -nographic \
-nodefconfig \ -nodefconfig \
-nodefaults \ -nodefaults \
-chardev socket,id=charmonitor,path=/tmp/test-monitor,server,nowait \ -chardev socket,id=charmonitor,path=/tmp/lib/domain--1-QEMUGuest1/monitor.sock,\
server,nowait \
-mon chardev=charmonitor,id=monitor,mode=readline \ -mon chardev=charmonitor,id=monitor,mode=readline \
-no-acpi \ -no-acpi \
-device virtio-serial-s390,id=virtio-serial0 \ -device virtio-serial-s390,id=virtio-serial0 \

View File

@ -14,7 +14,8 @@ QEMU_AUDIO_DRV=none \
-nographic \ -nographic \
-nodefconfig \ -nodefconfig \
-nodefaults \ -nodefaults \
-chardev socket,id=charmonitor,path=/tmp/test-monitor,server,nowait \ -chardev socket,id=charmonitor,path=/tmp/lib/domain--1-QEMUGuest1/monitor.sock,\
server,nowait \
-mon chardev=charmonitor,id=monitor,mode=readline \ -mon chardev=charmonitor,id=monitor,mode=readline \
-no-acpi \ -no-acpi \
-boot c \ -boot c \

View File

@ -13,7 +13,8 @@ QEMU_AUDIO_DRV=spice \
-smp 4 \ -smp 4 \
-uuid d091ea82-29e6-2e34-3005-f02617b36e87 \ -uuid d091ea82-29e6-2e34-3005-f02617b36e87 \
-nodefaults \ -nodefaults \
-chardev socket,id=charmonitor,path=/tmp/test-monitor,server,nowait \ -chardev socket,id=charmonitor,path=/tmp/lib/domain--1-fdr/monitor.sock,server,\
nowait \
-mon chardev=charmonitor,id=monitor,mode=readline \ -mon chardev=charmonitor,id=monitor,mode=readline \
-boot order=cna,menu=off \ -boot order=cna,menu=off \
-device piix3-usb-uhci,id=usb,bus=pci.0,addr=0x1.0x2 \ -device piix3-usb-uhci,id=usb,bus=pci.0,addr=0x1.0x2 \

View File

@ -14,7 +14,7 @@ QEMU_AUDIO_DRV=none \
-uuid c7a5fdbd-edaf-9455-926a-d65c16db1809 \ -uuid c7a5fdbd-edaf-9455-926a-d65c16db1809 \
-nographic \ -nographic \
-nodefaults \ -nodefaults \
-monitor unix:/tmp/test-monitor,server,nowait \ -monitor unix:/tmp/lib/domain--1-QEMUGuest1/monitor.sock,server,nowait \
-no-acpi \ -no-acpi \
-boot n \ -boot n \
-usb \ -usb \

View File

@ -14,7 +14,7 @@ QEMU_AUDIO_DRV=none \
-uuid c7a5fdbd-edaf-9455-926a-d65c16db1809 \ -uuid c7a5fdbd-edaf-9455-926a-d65c16db1809 \
-nographic \ -nographic \
-nodefaults \ -nodefaults \
-monitor unix:/tmp/test-monitor,server,nowait \ -monitor unix:/tmp/lib/domain--1-QEMUGuest1/monitor.sock,server,nowait \
-no-acpi \ -no-acpi \
-boot n \ -boot n \
-usb \ -usb \

View File

@ -14,7 +14,7 @@ QEMU_AUDIO_DRV=none \
-uuid c7a5fdbd-edaf-9455-926a-d65c16db1809 \ -uuid c7a5fdbd-edaf-9455-926a-d65c16db1809 \
-nographic \ -nographic \
-nodefaults \ -nodefaults \
-monitor unix:/tmp/test-monitor,server,nowait \ -monitor unix:/tmp/lib/domain--1-QEMUGuest1/monitor.sock,server,nowait \
-no-acpi \ -no-acpi \
-boot n \ -boot n \
-usb \ -usb \

View File

@ -14,7 +14,7 @@ QEMU_AUDIO_DRV=none \
-uuid c7a5fdbd-edaf-9455-926a-d65c16db1809 \ -uuid c7a5fdbd-edaf-9455-926a-d65c16db1809 \
-nographic \ -nographic \
-nodefaults \ -nodefaults \
-monitor unix:/tmp/test-monitor,server,nowait \ -monitor unix:/tmp/lib/domain--1-QEMUGuest1/monitor.sock,server,nowait \
-no-acpi \ -no-acpi \
-boot n \ -boot n \
-usb \ -usb \

View File

@ -14,7 +14,7 @@ QEMU_AUDIO_DRV=none \
-uuid c7a5fdbd-edaf-9455-926a-d65c16db1809 \ -uuid c7a5fdbd-edaf-9455-926a-d65c16db1809 \
-nographic \ -nographic \
-nodefaults \ -nodefaults \
-monitor unix:/tmp/test-monitor,server,nowait \ -monitor unix:/tmp/lib/domain--1-QEMUGuest1/monitor.sock,server,nowait \
-boot n \ -boot n \
-usb \ -usb \
-device virtio-balloon-pci,id=balloon0,bus=pci.0,addr=0x3 -device virtio-balloon-pci,id=balloon0,bus=pci.0,addr=0x3

View File

@ -14,7 +14,7 @@ QEMU_AUDIO_DRV=none \
-uuid c7a5fdbd-edaf-9455-926a-d65c16db1809 \ -uuid c7a5fdbd-edaf-9455-926a-d65c16db1809 \
-nographic \ -nographic \
-nodefaults \ -nodefaults \
-monitor unix:/tmp/test-monitor,server,nowait \ -monitor unix:/tmp/lib/domain--1-QEMUGuest1/monitor.sock,server,nowait \
-boot n \ -boot n \
-usb \ -usb \
-device virtio-balloon-pci,id=balloon0,bus=pci.0,addr=0x3 -device virtio-balloon-pci,id=balloon0,bus=pci.0,addr=0x3

View File

@ -14,7 +14,7 @@ QEMU_AUDIO_DRV=none \
-uuid c7a5fdbd-edaf-9455-926a-d65c16db1809 \ -uuid c7a5fdbd-edaf-9455-926a-d65c16db1809 \
-nographic \ -nographic \
-nodefaults \ -nodefaults \
-monitor unix:/tmp/test-monitor,server,nowait \ -monitor unix:/tmp/lib/domain--1-QEMUGuest1/monitor.sock,server,nowait \
-no-acpi \ -no-acpi \
-boot n \ -boot n \
-usb \ -usb \

View File

@ -14,7 +14,7 @@ QEMU_AUDIO_DRV=none \
-uuid c7a5fdbd-edaf-9455-926a-d65c16db1809 \ -uuid c7a5fdbd-edaf-9455-926a-d65c16db1809 \
-nographic \ -nographic \
-nodefaults \ -nodefaults \
-monitor unix:/tmp/test-monitor,server,nowait \ -monitor unix:/tmp/lib/domain--1-QEMUGuest1/monitor.sock,server,nowait \
-no-acpi \ -no-acpi \
-boot n \ -boot n \
-usb \ -usb \

View File

@ -14,7 +14,7 @@ QEMU_AUDIO_DRV=none \
-uuid c7a5fdbd-edaf-9455-926a-d65c16db1809 \ -uuid c7a5fdbd-edaf-9455-926a-d65c16db1809 \
-nographic \ -nographic \
-nodefaults \ -nodefaults \
-monitor unix:/tmp/test-monitor,server,nowait \ -monitor unix:/tmp/lib/domain--1-QEMUGuest1/monitor.sock,server,nowait \
-no-acpi \ -no-acpi \
-boot n \ -boot n \
-usb \ -usb \

View File

@ -14,7 +14,7 @@ QEMU_AUDIO_DRV=none \
-uuid c7a5fdbd-edaf-9455-926a-d65c16db1809 \ -uuid c7a5fdbd-edaf-9455-926a-d65c16db1809 \
-nographic \ -nographic \
-nodefaults \ -nodefaults \
-monitor unix:/tmp/test-monitor,server,nowait \ -monitor unix:/tmp/lib/domain--1-QEMUGuest1/monitor.sock,server,nowait \
-no-acpi \ -no-acpi \
-boot n \ -boot n \
-usb \ -usb \

View File

@ -15,7 +15,7 @@ QEMU_AUDIO_DRV=none \
-uuid c7a5fdbd-edaf-9455-926a-d65c16db1809 \ -uuid c7a5fdbd-edaf-9455-926a-d65c16db1809 \
-nographic \ -nographic \
-nodefaults \ -nodefaults \
-monitor unix:/tmp/test-monitor,server,nowait \ -monitor unix:/tmp/lib/domain--1-QEMUGuest1/monitor.sock,server,nowait \
-no-acpi \ -no-acpi \
-boot n \ -boot n \
-usb \ -usb \

View File

@ -15,7 +15,7 @@ QEMU_AUDIO_DRV=none \
-uuid c7a5fdbd-edaf-9455-926a-d65c16db1809 \ -uuid c7a5fdbd-edaf-9455-926a-d65c16db1809 \
-nographic \ -nographic \
-nodefaults \ -nodefaults \
-monitor unix:/tmp/test-monitor,server,nowait \ -monitor unix:/tmp/lib/domain--1-QEMUGuest1/monitor.sock,server,nowait \
-no-acpi \ -no-acpi \
-boot n \ -boot n \
-usb \ -usb \

View File

@ -15,7 +15,7 @@ QEMU_AUDIO_DRV=none \
-uuid c7a5fdbd-edaf-9455-926a-d65c16db1809 \ -uuid c7a5fdbd-edaf-9455-926a-d65c16db1809 \
-nographic \ -nographic \
-nodefaults \ -nodefaults \
-monitor unix:/tmp/test-monitor,server,nowait \ -monitor unix:/tmp/lib/domain--1-QEMUGuest1/monitor.sock,server,nowait \
-no-acpi \ -no-acpi \
-boot n \ -boot n \
-usb \ -usb \

View File

@ -15,7 +15,7 @@ QEMU_AUDIO_DRV=none \
-uuid c7a5fdbd-edaf-9455-926a-d65c16db1809 \ -uuid c7a5fdbd-edaf-9455-926a-d65c16db1809 \
-nographic \ -nographic \
-nodefaults \ -nodefaults \
-monitor unix:/tmp/test-monitor,server,nowait \ -monitor unix:/tmp/lib/domain--1-QEMUGuest1/monitor.sock,server,nowait \
-no-acpi \ -no-acpi \
-boot n \ -boot n \
-usb \ -usb \

View File

@ -14,7 +14,7 @@ QEMU_AUDIO_DRV=none \
-uuid c7a5fdbd-edaf-9455-926a-d65c16db1809 \ -uuid c7a5fdbd-edaf-9455-926a-d65c16db1809 \
-nographic \ -nographic \
-nodefaults \ -nodefaults \
-monitor unix:/tmp/test-monitor,server,nowait \ -monitor unix:/tmp/lib/domain--1-QEMUGuest1/monitor.sock,server,nowait \
-no-acpi \ -no-acpi \
-boot c \ -boot c \
-usb \ -usb \

View File

@ -14,7 +14,7 @@ QEMU_AUDIO_DRV=none \
-uuid c7a5fdbd-edaf-9455-926a-d65c16db1809 \ -uuid c7a5fdbd-edaf-9455-926a-d65c16db1809 \
-nographic \ -nographic \
-nodefaults \ -nodefaults \
-monitor unix:/tmp/test-monitor,server,nowait \ -monitor unix:/tmp/lib/domain--1-QEMUGuest1/monitor.sock,server,nowait \
-no-acpi \ -no-acpi \
-boot n \ -boot n \
-usb \ -usb \

View File

@ -15,7 +15,7 @@ QEMU_AUDIO_DRV=none \
-uuid c7a5fdbd-edaf-9455-926a-d65c16db1809 \ -uuid c7a5fdbd-edaf-9455-926a-d65c16db1809 \
-nographic \ -nographic \
-nodefaults \ -nodefaults \
-monitor unix:/tmp/test-monitor,server,nowait \ -monitor unix:/tmp/lib/domain--1-QEMUGuest1/monitor.sock,server,nowait \
-no-acpi \ -no-acpi \
-boot n \ -boot n \
-usb \ -usb \

View File

@ -15,7 +15,7 @@ QEMU_AUDIO_DRV=none \
-uuid c7a5fdbd-edaf-9455-926a-d65c16db1809 \ -uuid c7a5fdbd-edaf-9455-926a-d65c16db1809 \
-nographic \ -nographic \
-nodefaults \ -nodefaults \
-monitor unix:/tmp/test-monitor,server,nowait \ -monitor unix:/tmp/lib/domain--1-QEMUGuest1/monitor.sock,server,nowait \
-no-acpi \ -no-acpi \
-boot n \ -boot n \
-usb \ -usb \

View File

@ -15,7 +15,7 @@ QEMU_AUDIO_DRV=none \
-uuid c7a5fdbd-edaf-9455-926a-d65c16db1809 \ -uuid c7a5fdbd-edaf-9455-926a-d65c16db1809 \
-nographic \ -nographic \
-nodefaults \ -nodefaults \
-monitor unix:/tmp/test-monitor,server,nowait \ -monitor unix:/tmp/lib/domain--1-QEMUGuest1/monitor.sock,server,nowait \
-no-acpi \ -no-acpi \
-boot n \ -boot n \
-usb \ -usb \

View File

@ -15,7 +15,7 @@ QEMU_AUDIO_DRV=none \
-uuid c7a5fdbd-edaf-9455-926a-d65c16db1809 \ -uuid c7a5fdbd-edaf-9455-926a-d65c16db1809 \
-nographic \ -nographic \
-nodefaults \ -nodefaults \
-monitor unix:/tmp/test-monitor,server,nowait \ -monitor unix:/tmp/lib/domain--1-QEMUGuest1/monitor.sock,server,nowait \
-no-acpi \ -no-acpi \
-boot n \ -boot n \
-usb \ -usb \

View File

@ -15,7 +15,7 @@ QEMU_AUDIO_DRV=none \
-uuid c7a5fdbd-edaf-9455-926a-d65c16db1809 \ -uuid c7a5fdbd-edaf-9455-926a-d65c16db1809 \
-nographic \ -nographic \
-nodefaults \ -nodefaults \
-monitor unix:/tmp/test-monitor,server,nowait \ -monitor unix:/tmp/lib/domain--1-QEMUGuest1/monitor.sock,server,nowait \
-no-acpi \ -no-acpi \
-boot n \ -boot n \
-usb \ -usb \

View File

@ -15,7 +15,7 @@ QEMU_AUDIO_DRV=none \
-uuid c7a5fdbd-edaf-9455-926a-d65c16db1809 \ -uuid c7a5fdbd-edaf-9455-926a-d65c16db1809 \
-nographic \ -nographic \
-nodefaults \ -nodefaults \
-monitor unix:/tmp/test-monitor,server,nowait \ -monitor unix:/tmp/lib/domain--1-QEMUGuest1/monitor.sock,server,nowait \
-no-acpi \ -no-acpi \
-boot n \ -boot n \
-usb \ -usb \

View File

@ -15,7 +15,7 @@ QEMU_AUDIO_DRV=none \
-uuid c7a5fdbd-edaf-9455-926a-d65c16db1809 \ -uuid c7a5fdbd-edaf-9455-926a-d65c16db1809 \
-nographic \ -nographic \
-nodefaults \ -nodefaults \
-monitor unix:/tmp/test-monitor,server,nowait \ -monitor unix:/tmp/lib/domain--1-QEMUGuest1/monitor.sock,server,nowait \
-no-acpi \ -no-acpi \
-boot n \ -boot n \
-usb \ -usb \

View File

@ -14,7 +14,7 @@ QEMU_AUDIO_DRV=none \
-uuid c7a5fdbd-edaf-9455-926a-d65c16db1809 \ -uuid c7a5fdbd-edaf-9455-926a-d65c16db1809 \
-nographic \ -nographic \
-nodefaults \ -nodefaults \
-monitor unix:/tmp/test-monitor,server,nowait \ -monitor unix:/tmp/lib/domain--1-QEMUGuest1/monitor.sock,server,nowait \
-no-acpi \ -no-acpi \
-boot n \ -boot n \
-usb \ -usb \

Some files were not shown because too many files have changed in this diff Show More