mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2024-11-03 20:01:16 +00:00
815d98ac0b
When parsing a command line with USB devices that have no address specified, QEMU automatically adds a USB hub if the device would fill up all the available USB ports. To help most of the users, add one hub if there are more USB devices than available ports. For wilder configurations, expect the user to provide us with more hubs and/or controllers.
29 lines
744 B
Plaintext
29 lines
744 B
Plaintext
LC_ALL=C \
|
|
PATH=/bin \
|
|
HOME=/home/test \
|
|
USER=test \
|
|
LOGNAME=test \
|
|
QEMU_AUDIO_DRV=none \
|
|
/usr/bin/qemu \
|
|
-name QEMUGuest1 \
|
|
-S \
|
|
-M pc \
|
|
-m 214 \
|
|
-smp 1,sockets=1,cores=1,threads=1 \
|
|
-uuid c7a5fdbd-edaf-9455-926a-d65c16db1809 \
|
|
-nographic \
|
|
-nodefconfig \
|
|
-nodefaults \
|
|
-chardev socket,id=charmonitor,path=/tmp/lib/domain--1-QEMUGuest1/monitor.sock,\
|
|
server,nowait \
|
|
-mon chardev=charmonitor,id=monitor,mode=readline \
|
|
-no-acpi \
|
|
-boot c \
|
|
-usb \
|
|
-device usb-hub,id=hub0,bus=usb.0,port=1 \
|
|
-device usb-mouse,id=input0,bus=usb.0,port=2 \
|
|
-device usb-mouse,id=input1,bus=usb.0,port=1.1 \
|
|
-device usb-mouse,id=input2,bus=usb.0,port=1.2 \
|
|
-device usb-tablet,id=input3,bus=usb.0,port=1.3 \
|
|
-device virtio-balloon-pci,id=balloon0,bus=pci.0,addr=0x3
|