|
http://www.fogel.ca/2008/06/29/howto-pintos-on-qemu-on-debian/ Pintos is a minimal operating system for x86 hardware used primarily for instructional purposes (eg.). QEMU is an open-source hardware emulator typically used for operating system development. Debian is a linux operating system, regular style. Step #1 – Debian: Drop windows and install debian (or go dual-boot). Step #2 – QEMU: sudo apt-get install qemu To test everything is working as it should at this point, you can download a small linux kernel image here (Sec: disk images). Then: bzip2 -d linux-0.2.img.bz2 qemu linux-0.2.img You are now running a minimal linux system on emulated x86 hardware, which is in turn running on a full-featured linux system (debian) on real (probably also x86) hardware. Press ctrl-alt to get out of the minimal linux system if you get stuck with it stealing all your keystrokes. Step #3 – Pintos:
And that’s it! In step 3.D you finished up by running a little test app that created 5 threads that slept for varying predefined periods of time with some messaging to the console, thus testing pintos’ scheduling/threading abilities. You’re now ready to augment and enhance pintos… coffee anyone? 4 Responses to “HOWTO: Pintos on QEMU on Debian”-- To unsubscribe, reply using "remove me" as the subject. |

running that little test app gives an error: Cannot find OS disk.
Please help
@Siddharth – QEMU’s got to be able to find the disk image. you can either throw the disk image in your PATH, or easier – just run that command (qemu linux-0.2.img) in the directory where your linux-0.2.img is hanging out.
Nopes I am not talking about linux-0.2 I am talking about pintos.
I did all the configuration and when I am trying to run pintos run alarm-multiple I am getting : Cannot find OS disk.
Thanks in advance