mirror of https://gitee.com/openkylin/libvirt.git
25 lines
574 B
Plaintext
25 lines
574 B
Plaintext
|
LC_ALL=C \
|
||
|
PATH=/bin \
|
||
|
HOME=/home/test \
|
||
|
USER=test \
|
||
|
LOGNAME=test \
|
||
|
QEMU_AUDIO_DRV=none \
|
||
|
/usr/bin/qemu-system-aarch64 \
|
||
|
-name guest \
|
||
|
-S \
|
||
|
-M virt \
|
||
|
-m 512 \
|
||
|
-smp 1,sockets=1,cores=1,threads=1 \
|
||
|
-uuid 1ccfd97d-5eb4-478a-bbe6-88d254c16db7 \
|
||
|
-nographic \
|
||
|
-nodefconfig \
|
||
|
-nodefaults \
|
||
|
-chardev socket,id=charmonitor,path=/tmp/lib/domain--1-guest/monitor.sock,\
|
||
|
server,nowait \
|
||
|
-mon chardev=charmonitor,id=monitor,mode=readline \
|
||
|
-no-acpi \
|
||
|
-boot c \
|
||
|
-device virtio-serial,id=virtio-serial0 \
|
||
|
-chardev pty,id=charconsole0 \
|
||
|
-device virtconsole,chardev=charconsole0,id=console0
|