mirror of https://gitee.com/openkylin/libvirt.git
29 lines
868 B
Plaintext
29 lines
868 B
Plaintext
LC_ALL=C \
|
|
PATH=/bin \
|
|
HOME=/home/test \
|
|
USER=test \
|
|
LOGNAME=test \
|
|
QEMU_AUDIO_DRV=none \
|
|
/usr/bin/qemu-system-ppc64 \
|
|
-name QEMUGuest1 \
|
|
-S \
|
|
-M pseries \
|
|
-m 2048 \
|
|
-smp 8,sockets=2,cores=1,threads=4 \
|
|
-object memory-backend-ram,id=ram-node0,size=1073741824,host-nodes=1,\
|
|
policy=bind \
|
|
-numa node,nodeid=0,cpus=0-3,memdev=ram-node0 \
|
|
-object memory-backend-ram,id=ram-node1,size=1073741824,host-nodes=2,\
|
|
policy=bind \
|
|
-numa node,nodeid=1,cpus=4-7,memdev=ram-node1 \
|
|
-uuid 87eedafe-eedc-4336-8130-ed9fe5dc90c8 \
|
|
-nographic \
|
|
-nodefaults \
|
|
-chardev socket,id=charmonitor,path=/tmp/lib/domain--1-QEMUGuest1/monitor.sock,\
|
|
server,nowait \
|
|
-mon chardev=charmonitor,id=monitor,mode=control \
|
|
-boot c \
|
|
-device spapr-pci-host-bridge,index=1,id=pci.1,numa_node=1 \
|
|
-device spapr-pci-host-bridge,index=2,id=pci.2 \
|
|
-device spapr-pci-host-bridge,index=3,id=pci.3,numa_node=0
|