← 返回命令列表

Linux command

qemu-system-i386 命令

文本

复制后可按需替换文件名、目录或参数。

常用示例

Boot ISO image

qemu-system-i386 -cdrom [image.iso] -boot d

Boot disk with memory

qemu-system-i386 -m [512M] -hda [disk.img]

Boot with KVM

qemu-system-i386 -enable-kvm -hda [disk.img]

说明

qemu-system-i386 emulates 32-bit x86 systems. Use for running legacy 32-bit operating systems. Same options as qemu-system-x86_64 but for i386 architecture.

参数

-m _size_
RAM size.
-hda _file_
Hard disk image.
-cdrom _file_
CD-ROM image.
-enable-kvm
Enable KVM acceleration.
-boot _order_
Boot order.

FAQ

What is the qemu-system-i386 command used for?

qemu-system-i386 emulates 32-bit x86 systems. Use for running legacy 32-bit operating systems. Same options as qemu-system-x86_64 but for i386 architecture.

How do I run a basic qemu-system-i386 example?

Run `qemu-system-i386 -cdrom [image.iso] -boot d` in a terminal, then adjust file names, paths, flags, or remote targets for your system.

What does -m _size_ do in qemu-system-i386?

RAM size.