赞
踩
sudo dnf -y install qemu-system-aarch64
qemu-img create kylin-2107-arm.qcow2 -f qcow2 60G
注:麒麟系统要求磁盘大小在50G以上.
qemu-system-aarch64 \ -m 4096 \ -cpu cortex-a72 \ -smp 8,cores=8,threads=1,sockets=1 \ -M virt \ -bios QEMU_EFI.fd \ -device nec-usb-xhci \ -device usb-kbd \ -device usb-mouse \ -device VGA \ -vnc :1 \ -drive if=none,file=Kylin-Desktop-V10-SP1-Release-2107-arm64.iso,id=cdrom,media=cdrom \ -device virtio-scsi-device \ -device scsi-cd,drive=cdrom \ -drive file=kylin-2107-arm.qcow2,if=none,format=qcow2,id=hd0 \ -device virtio-blk-device,drive=hd0
参数说明:
-m 4096
指定内存大小,单位MB-cpu cortex-a72
CPU 型号-smp 8,cores=8,threads=1,sockets=1
1颗CPU,8核8线程(不超过物理CPU核数)-vnc :1
启用虚拟机的VNC服务,服务端口为 5901 (:2
表示 5902,依此类推)要访问VNC服务,先要安装VNC客户端。这里使用 tigervnc.
sudo dnf -y install tigervnc
运行 TigerVNC Viewer,输入虚拟机VNC服务地址: 127.0.0.1:5901
,点击“连接”,即可显示虚拟机画面。
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。