How to boot dd image in QEMU?

7,722

as qemu supports raw disk image format, just do

qemu -hda plug_SD-karte.img -m 256
Share:
7,722

Related videos on Youtube

dAnjou
Author by

dAnjou

Money is secondary. I care about how people work together. I care about internal and external transparency, integrity and open and honest communication. Ideally I'd like to contribute to something that improves everyday life or even society itself. I'd like to contribute with everything I've got, not just with code. My strong suit is definitely Python in the context of web services. However, I'm very interested to learn other stacks (Go looks very nice) or even move into the "DevOps" or "infrastructure-as-code" field.

Updated on September 18, 2022

Comments

  • dAnjou
    dAnjou over 1 year

    I created an image of my Debian Squeeze running on a Sheevaplug using dd if=/dev/sda of=plug_SD-karte.img (sda is the SD card plugged into another computer). Now I want to emulate the Sheevaplug. I think the best way is using QEMU. But how do I boot the image?

    Some information that may be helpful: https://gist.github.com/1034314

    EDIT: I would use Ubuntu 11.04 to run QEMU on.