Possible Duplicate:
Running linux kernel 0.01 in a virtual machine

How can I run Linux 0.01 on my laptop?

If it's possible to run it, could you tell me how? Here you can download the source code.

link|improve this question
7  
This is a site for programming questions. Yours isn't one. You might try SuperUser instead. And when you do go there, please don't approach it as "tell me the solution pls" but try to explain what you have tried, what didn't work, and so on. – John Zwinck Jul 4 '11 at 17:57
Pretty close duplicate: superuser.com/q/290808/… – dmckee Jul 5 '11 at 1:46
feedback

migrated from stackoverflow.com Jul 4 '11 at 17:57

This question came from our site for professional and enthusiast programmers.

closed as exact duplicate by Linker3000, Nifle, dmckee, Sathya Jul 5 '11 at 16:48

This question covers exactly the same ground as earlier questions on this topic; its answers may be merged with another identical question. See the FAQ for guidance on how to improve it.

2 Answers

Linux 0.01 is very unlikely to work on modern hardware due to lack of driver support. Also, modern distros probably won't boot on ancient kernels because they need interfaces that weren't in the oldest Linuxes.

You'll want to install a 386 simulator such as Bochs, install an ancient Linux distro such as SLS or early Debian/Slackware on it, then try to replace the kernel with 0.01.

link|improve this answer
Agreed, if you're gonna be a masochist and go for this, then indeed, use a Virtual Machine of sorts for it. KVM could do it. I also like VMware's products for this. – Doc Jul 4 '11 at 18:08
feedback

Read the release notes on the page you linked to and read The Linux Kernel 0.01 Commentary. You'll need a machine with a floppy drive, a legacy IDE controller (or a pretty good imitation), a hard drive you can repartition at will, old compiler and assembler versions, and probably some low-level knowledge to hack around hardware quirks that Linux 0.01 couldn't imagine. Note that that document was written in 2003, and as much has changed from 2003 to 2011 as between 1994 and 2003.

link|improve this answer
+1 for the "page you linked to"! – TFM Jul 4 '11 at 19:32
feedback