1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-22 16:42:10 +02:00
tldr/pages/common/qemu.md
코드싸이 a83a44e346
common/q*: add Korean translation; qemu: add missing placeholders (#14514)
* common/q*: add Korean translation

* qemu: update command
2024-11-02 10:48:10 +09:00

692 B

qemu

Generic machine emulator and virtualizer. Supports a large variety of CPU architectures. More information: https://www.qemu.org.

  • 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}}