I want to boot ARM version of Ubuntu system on QEMU. So, I did steps below. My Host OS is Ubuntu.
sudo apt-get install qemu
http://ports.ubuntu.com/ubuntu-ports/dists/artful/main/installer-armhf/current/images/generic/cdrom/
at above URL, there are two files. First one is vmlinuz(Ubuntu ARM kernel) and The second one is initrd.gz(Initial RamDisk).
qemu-system-arm -M virt -m 128M -kernel vmlinuz -initrd initrd.gz -append "root=/dev/ram" -nographic
[ 0.220995]
I think QEMU can't finely Root file system. Anyone can help me?
User contributions licensed under CC BY-SA 3.0