1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-23 19:22:08 +02:00
tldr/pages/common/qemu.md
Te-Chi Liu 5a54763c72 fixup: token string style (#1081)
- use underscore rather than minus
- use lower case rather than uppder case
2016-09-21 21:05:46 +05:30

24 lines
640 B
Markdown

# qemu
> Generic machine emulator and virtualizer.
> Supports a large variety of CPU architectures.
- Boot from image emulating i386 architecture:
`qemu-system-i386 -hda {{image_name.img}}`
- Boot from image emulating x64 architecture:
`qemu-system-x86_64 -hda {{image_name.img}}`
- Boot QEMU instance with a live ISO image:
`qemu-system-i386 -hda {{image_name.img}} -cdrom {{os_image.iso}} -boot d`
- Specify amount of RAM for instance:
`qemu-system-i386 -m 256 -hda image_name.img -cdrom os-image.iso -boot d`
- Boot from physical device (e.g. from USB to test bootable medium):
`qemu-system-i386 -hda /dev/{{storage_device}}`