add new chinese translations

This commit is contained in:
2024-12-30 15:25:56 +08:00
parent a850046d7b
commit 0d798759fd
5418 changed files with 105800 additions and 7052 deletions

View File

@@ -1,25 +1,25 @@
# qemu
> 通用机器模拟器和虚拟化
> 通用机器仿真器和虚拟化工具
> 支持多种 CPU 架构。
> 更多信息:<https://www.qemu.org>.
> 更多信息:<https://www.qemu.org>
- 启动镜像并模拟 i386 架构:
- 模拟 i386 架构的镜像启动
`qemu-system-i386 -hda {{镜像名称.img}}`
`qemu-system-i386 -hda {{image_name.img}}`
- 启动镜像并模拟 x64 架构:
- 模拟 x64 架构的镜像启动
`qemu-system-x86_64 -hda {{镜像名称.img}}`
`qemu-system-x86_64 -hda {{image_name.img}}`
- 使用现场 ISO 镜像启动 QEMU 实例:
- 使用实时 ISO 镜像启动 QEMU 实例:
`qemu-system-i386 -hda {{镜像名称.img}} -cdrom {{操作系统镜像.iso}} -boot d`
`qemu-system-i386 -hda {{image_name.img}} -cdrom {{os_image.iso}} -boot d`
- 为实例指定 RAM 大小:
- 为实例指定内存大小:
`qemu-system-i386 -m 256 -hda {{镜像名称.img}} -cdrom {{操作系统镜像.iso}} -boot d`
`qemu-system-i386 -m 256 -hda {{image_name.img}} -cdrom {{os-image.iso}} -boot d`
- 从物理设备启动(例如,从 USB 启动以测试可启动介质):
- 从物理设备启动(例如,从 USB 测试可启动介质):
`qemu-system-i386 -hda {{/dev/存储设备}}`
`qemu-system-i386 -hda {{/dev/storage_device}}`