qemu-虚拟机

qemu

官网下载地址
https://www.qemu.org/

跨平台虚拟机,类型vmware,执行效率比vmware高

官方参考文档:https://www.qemu.org/docs/master/system/introduction.html
kvm,轻量级虚拟机,可以加速qemu的执行
在这里插入图片描述

  • qemu-edid,显示器edid(扩展显示id)
  • qemu-ga,Qemu Guest Agent运行在虚拟机内部的监控程序
  • qemu-img,管理磁盘镜像,镜像格式转换等
  • qemu-io,执行io命令工具
  • qemu-nbd,挂在磁盘镜像文件

windows

qemu默认使用tcg加速,速度很慢

qemu-system-x86_64 [machine opts] [cpu opts] [accelerator opts] [device opts] [backend opts] [interface opts] [boot opts]

qemu-img create myimage.img 10G //申请镜像文件
qemu-system-x86_64 -boot d -cdrom my.iso //启动光盘镜像
qemu-system-x86_64 -boot c -hda myimage.img //正常启动硬盘镜像

猜你喜欢

转载自blog.csdn.net/daoer_sofu/article/details/130564087