What are some resources for getting started in operating system development? [closed]

There are a lot of links after this brief overview of what is involved in writing an OS for the X86 platform.

The link that appears to be most promising (www.nondot.org/sabre/os/articles) is no longer available, so you’ll need to poke through the Archive.org version to read it.

At the end of the day the bootloader takes the machine code of the kernel, puts it in memory, and jumps to it. You can put any machine code in the kernel that you want, but most C programs expect an OS so you’ll need to tell your compiler that it won’t have all that, or the bootloader has to create some of it.

The kernel then does all the heavy lifting, and I suspect it’s the example kernel you want. But there’s a long way to go between having a kernel that says, “Hello world” to having a kernel that loads a command interpretor, provides disk services, and loads and manages programs.

You might want to consider subscribing to ACM to get access to their older literature – there are lots of articles in the late 80’s and early 90’s in early computing magazines about how to create alternative OSs. There are likely books that are out of print from this era as well. You might be able to get the same information for free by looking up the indexes of those magazines (which are available on that site – click “index” near the magazine name) and then asking around for people with a copy.

Lastly, I know that usenet is dead (for so sayeth the prophets of internet doom) but you’ll find that many of the craggy old experts from that era still live there. You should search google groups (they have dejanews’s old repository) and I expect you’ll find many people asking the same questions a decade or 1.5 ago that you’re asking now. You may even run across Linus Torvalds’ many queries for help as he was developing linux originally. If searches don’t bring anything up, ask in the appropriate newsgroup (probably starts with comp.arch, but search for ones with OS in the name).

Leave a Comment