mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2024-11-03 20:01:16 +00:00
e8c2c8bd07
The latter is deprecated and will be removed soon. The advised replacement is '-overcommit mem-lock=on|off'. Signed-off-by: Michal Privoznik <mprivozn@redhat.com> Reviewed-by: Ján Tomko <jtomko@redhat.com>
60 lines
2.5 KiB
Plaintext
60 lines
2.5 KiB
Plaintext
LC_ALL=C \
|
|
PATH=/bin \
|
|
HOME=/tmp/lib/domain--1-QEMUGuest1 \
|
|
USER=test \
|
|
LOGNAME=test \
|
|
XDG_DATA_HOME=/tmp/lib/domain--1-QEMUGuest1/.local/share \
|
|
XDG_CACHE_HOME=/tmp/lib/domain--1-QEMUGuest1/.cache \
|
|
XDG_CONFIG_HOME=/tmp/lib/domain--1-QEMUGuest1/.config \
|
|
QEMU_AUDIO_DRV=none \
|
|
/usr/bin/qemu-system-x86_64 \
|
|
-name guest=QEMUGuest1,debug-threads=on \
|
|
-S \
|
|
-object secret,id=masterKey0,format=raw,\
|
|
file=/tmp/lib/domain--1-QEMUGuest1/master-key.aes \
|
|
-machine pc-q35-3.1,accel=tcg,usb=off,dump-guest-core=off \
|
|
-m 214 \
|
|
-overcommit mem-lock=off \
|
|
-smp 1,sockets=1,cores=1,threads=1 \
|
|
-uuid c7a5fdbd-edaf-9455-926a-d65c16db1809 \
|
|
-display none \
|
|
-no-user-config \
|
|
-nodefaults \
|
|
-chardev socket,id=charmonitor,fd=1729,server,nowait \
|
|
-mon chardev=charmonitor,id=monitor,mode=control \
|
|
-rtc base=utc \
|
|
-no-shutdown \
|
|
-no-acpi \
|
|
-boot strict=on \
|
|
-device pcie-root-port,port=0x8,chassis=1,id=pci.1,bus=pcie.0,multifunction=on,\
|
|
addr=0x1 \
|
|
-device pcie-pci-bridge,id=pci.2,bus=pci.1,addr=0x0 \
|
|
-device pcie-root-port,port=0x9,chassis=3,id=pci.3,bus=pcie.0,addr=0x1.0x1 \
|
|
-device virtio-scsi-pci,disable-legacy=off,disable-modern=off,id=scsi0,\
|
|
bus=pci.2,addr=0x4 \
|
|
-device virtio-serial-pci,disable-legacy=off,disable-modern=off,\
|
|
id=virtio-serial0,bus=pci.2,addr=0x3 \
|
|
-drive file=/dev/HostVG/QEMUGuest1,format=raw,if=none,id=drive-virtio-disk0 \
|
|
-device virtio-blk-pci,disable-legacy=off,disable-modern=off,scsi=off,\
|
|
bus=pci.2,addr=0x5,drive=drive-virtio-disk0,id=virtio-disk0,bootindex=1 \
|
|
-fsdev local,security_model=passthrough,id=fsdev-fs0,path=/export/fs1 \
|
|
-device virtio-9p-pci,disable-legacy=off,disable-modern=off,id=fs0,\
|
|
fsdev=fsdev-fs0,mount_tag=fs1,bus=pci.2,addr=0x1 \
|
|
-netdev user,id=hostnet0 \
|
|
-device virtio-net-pci,disable-legacy=off,disable-modern=off,netdev=hostnet0,\
|
|
id=net0,mac=00:11:22:33:44:55,bus=pci.2,addr=0x2 \
|
|
-device virtio-input-host-pci,disable-legacy=off,disable-modern=off,id=input0,\
|
|
evdev=/dev/input/event1234,bus=pci.2,addr=0x9 \
|
|
-device vhost-scsi-pci,disable-legacy=off,disable-modern=off,\
|
|
wwpn=naa.5123456789abcde0,vhostfd=3,id=hostdev0,bus=pci.2,addr=0x6 \
|
|
-device virtio-balloon-pci,disable-legacy=off,disable-modern=off,id=balloon0,\
|
|
bus=pci.2,addr=0x7 \
|
|
-object rng-random,id=objrng0,filename=/dev/urandom \
|
|
-device virtio-rng-pci,disable-legacy=off,disable-modern=off,rng=objrng0,\
|
|
id=rng0,bus=pci.2,addr=0x8 \
|
|
-sandbox on,obsolete=deny,elevateprivileges=deny,spawn=deny,\
|
|
resourcecontrol=deny \
|
|
-device vhost-vsock-pci,disable-legacy=off,disable-modern=off,id=vsock0,\
|
|
guest-cid=4,vhostfd=6789,bus=pci.2,addr=0xa \
|
|
-msg timestamp=on
|