Deepin安装使用KVM
约 86 字
预计阅读 1 分钟
次阅读
安装
1
2
3
|
sudo apt-get install kvm qtemu ##安装kvm和qt前端
apt install qemu-kvm libvirt-clients qemu-utils libvirt-daemon-system # deepin 15.8
sudo apt-get install qemu-system #deepin 15.8
|
卸载
1
2
|
sudo apt-get remove kvm qtemu ##卸载kvm和qt前端
apt-get install libvirt-bin virt-manager ##工作常用工具
|
ovf to qcow2
1
2
3
|
sudo apt-get install qemu-utils
qemu-img convert -O qcow2 input.vmdk output.qcow2
|