我有一个带有工作系统的Red Hat 6.9 .qcow2,我想将它克隆/复制到另一个VM(或者作为virsh如何调用它的域)但是当我使用以下命令时:
virt-install \
--name rhel69 \
--ram 4096 \
--disk path=./rhel69_vol.qcow2,size=32 \
--vcpus 4 \
--os-type linux \
--os-variant generic \
--boot hd \
--network bridge=virbr1,mac=52:54:00:12:34:56 \
--graphics none \
--console pty,target_type=serial
我创建了我的虚拟机但我无法像这样访问控制台:
virsh console rhel69
并且主机上的VM进程占用100%的CPU。我有足够的RAM来托管它。我试过例如virsh console rhel69
但我一无所获。
我做错了什么?