One thing I've always wanted to do is develop my very own operating system (not necessarily fancy like Linux or Windows, but better than a simple boot loader which I've already done).

I'm having a hard time finding resources/guides that take you past writing a simple "Hello World" OS.  

I know lots of people will probably recommend I look at Linux or BSD; but the code base for systems like that is (presumably) so big that I wouldn't know where to start.

Any suggestions?

Update: To make it easier for people who land on this post through Google here are some OS development resources:

[Writing Your Own Operating System][1] (Thanks Adam)

[Linux From Scratch][2] (Thanks John)

[SharpOS (C# Operating System)][3] (Thanks lomaxx)

[Minix3][4] and [Minix2][5] (Thanks Mike)

[OS Dev Wiki][6] and [Forums][7] (Thanks Steve)

[BonaFide][8] (Thanks Steve)

[Bran][9] (Thanks Steve)

[Roll your own toy UNIX-clone OS][10] (Thanks Steve)



I also found this great resource on my own:

[Broken Thorn OS Development Series][11]

Other resources:

basszero has a good suggestion, start with an early version of an open source OS and work with it: [Linux: The 0.01 Release][12] and [http://kerneltrap.org/files/linux-0.01.tar.bz2][13]

Steve found a blog post on how to setup an OS dev environment in Visual Studio:
[Writing Your Own OS With Visual Studio 2005][14]

I found a nice resource named [MikeOS][15], "MikeOS is a learning tool to demonstrate how simple OSes work. It uses 16-bit real mode for BIOS access, so that it doesn't need complex drivers"

*Updated 11/14/08* 

I found some resources at [Freebyte's Guide to...Free and non-free Operating Systems][16] that links to kits such as OSKit and ExOS library.  These seem super useful in getting started in OS development.

*Updated 2/23/09*

[Ric Tokyo][17] recommended [nanoos][18] in this [question][19].  Nanoos is an OS written in C++.

*Updated 3/9/09*

Dinah provided some useful Stack Overflow discussion of aspiring OS developers: [Roadblocks in creating a custom operating system][20] discusses what pitfalls you might encounter while developing an OS
and [OS Development][21] is a more general discussion.

*Updated 7/9/09*

LB provided a link to the [Pintos Project][22], an education OS designed for students learning OS development.

*Updated 7/27/09 (Still going strong!)*

I stumbled upon an [online OS course][23] from Berkley featuring 23 lectures.

[TomOS][24] is a fork of [MikeOS][25] that includes a little memory manager and mouse support. As MikeOS, it is designed to be an educational project.  It is written in NASM assembler.

*Updated 8/4/09*

I found the [slides and other materials][26] to go along with the online Berkeley lectures listed above. 

*Updated 8/23/09*

All [questions tagged osdev][27] on stackoverflow

[OS/161][28] is an academic OS written in c that runs on a simulated hardware.  This OS is similar in Nachos.  Thanks Novelocrat!

tangurena recommends [http://en.wikipedia.org/wiki/MicroC/OS-II][29], an OS designed for embedded systems.  There is a [companion book][30] as well.

[Linux Kernel Development][31] by Robert Love is suggested by Anders.  It is a "widely acclaimed insider's look at the Linux kernel."

*Updated 9/18/2009*

Thanks Tim S. Van Haren for telling us about [Cosmos][32], an OS written entirely in c#.

tgiphil tells us about [Managed Operating System Alliance (MOSA) Framework][33], "a set of tools, specifications and source code to foster development of managed operating systems based on the Common Intermediate Language."


  [1]: http://www.osix.net/modules/article/?id=359
  [2]: http://www.linuxfromscratch.org/
  [3]: http://en.wikipedia.org/wiki/SharpOS_(operating_system)
  [4]: http://www.minix3.org/
  [5]: http://minix1.woodhull.com/mxdownld.html
  [6]: http://wiki.osdev.org/Main_Page
  [7]: http://forum.osdev.org/
  [8]: http://www.osdever.net/
  [9]: http://osdever.net/bkerndev/Docs/intro.htm
  [10]: http://www.jamesmolloy.co.uk/tutorial_html/index.html
  [11]: http://www.brokenthorn.com/Resources/OSDevIndex.html
  [12]: http://kerneltrap.org/node/14002
  [13]: http://kerneltrap.org/files/linux-0.01.tar.bz2
  [14]: http://www.managed-world.com/archive/2006/09/10/90829.aspx
  [15]: http://mikeos.berlios.de/
  [16]: http://www.freebyte.com/operatingsystems/#osprojects
  [17]: http://stackoverflow.com/users/42019/ric-tokyo
  [18]: http://code.google.com/p/nanoos/
  [19]: http://stackoverflow.com/questions/580308/making-an-os-in-c/580362#580362
  [20]: http://stackoverflow.com/questions/340674/roadblocks-in-creating-a-custom-operating-system
  [21]: http://stackoverflow.com/questions/130065/os-development
  [22]: http://www.scs.stanford.edu/07au-cs140/pintos/pintos.html
  [23]: http://academicearth.org/courses/operating-systems-and-system-programming
  [24]: http://tomos.sourceforge.net/
  [25]: http://mikeos.berlios.de/
  [26]: http://www.cs.berkeley.edu/~kubitron/courses/cs162-F08/
  [27]: http://stackoverflow.com/questions/tagged/osdev
  [28]: http://www.eecs.harvard.edu/syrah/os161/
  [29]: http://en.wikipedia.org/wiki/MicroC/OS-II
  [30]: http://www.amazon.com/MicroC-OS-II-Kernel-CD-ROM/dp/1578201039/ref=sr_1_1?ie=UTF8&s=books&qid=1250989337&sr=8-1
  [31]: http://www.amazon.com/Linux-Kernel-Development-Novell-Press/dp/0672327201/ref=sr_1_1?ie=UTF8&s=books&qid=1250989567&sr=1-1
  [32]: http://www.gocosmos.org/index.en.aspx
  [33]: http://www.codeplex.com/mosa