Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'd like to create a new operating system for x86 PC computers. I'd like it to be 64-bit but possibly run as 32-bit as well.

I have these kinds of questions:

What kinds of things do you start working on first? Knowing where to start in writing your own operating system seems to me to be a tricky subject, so I am interested in your input.

Generally how to go about making your own 32-bit/64-bit operating system, or good resources that mention useful information about going about writing your own operating system for x86 computers. I don't care how old sources are as long as they are still relevant and useful to what I am doing.

I know that I will want it to have kernel drivers that access peripheral hardware directly. Where should I look for advice and documentation for programming and understanding the interface to peripheral hardware the operating system will communicate with? I will need to understand how the operating system will receive input and interact with keyboards, mice, computer monitors, hard drives, USB, etc. etc. This is probably the area I know least about.

I have the Intel instruction set manuals and have been getting more familiar with assembly programming, so the CPU side of things is what I know the most about.

At this point I'm thinking that I'd like to implement the Linux system calls within my operating system so that programs that run on Linux can run on my operating system. I want my operating system to use the ELF binary format. I wonder what obstacles I have to overcome to achieve this Linux compatibility. Are the main things implementing the system calls that Linux provides, and using the ELF format? What else?

I am also interested in people's thoughts about why it might not be a good idea to make your own operating system, and why it is a good idea to make your own operating system.

Thank you for any input.

share|improve this question
Similar to stackoverflow.com/questions/1224617/… – Barry Brown May 10 '10 at 6:46
It's nice to see no "don't even try it's too hard!" answers. – Miles Rout Dec 20 '12 at 8:34

8 Answers

up vote 6 down vote accepted

You'll probably just want to get it running inside of a virtual machine to begin with. It's a PITA trying to develop an OS on actual hardware (with the constant rebooting and debugging-over-serial-cable).

Inside a VM you've usually got a simplified (and relatively standardised) set of hardware to support which can ease initial development as well. In particular, if you want to show someone else your OS you just give them a .vhd file and be reasonably confident that if it works for you then it'll work for them as well.

You might also want to start with something that's already up & running initially (for example, Microsoft's Singularity is pretty neat). That'll let you get all of the boring boot loader and basic device drivers out of the way and you can get onto the "meaty" stuff more quickly.

share|improve this answer
Awesome. An emulator like bochs bochs.sourceforge.net ? – mudge May 10 '10 at 6:59
Bochs is quite popular amoungst OS devers, yeah. VMWare, Virtual PC and VirtualBox would all suffice, too (though Bochs has great support for OS debugging) – Dean Harding May 10 '10 at 7:24

It is better that you take a look at Linux 0.01 source code. it is the first version of the OS. it is very simple and informative. It is a good place to start

share|improve this answer

You'll be wanting this book:

alt text

share|improve this answer
I concur. I would also recommend writing a few kernel drivers for Linux (plenty of tutorials, source-code on the net), so you can get a taste of the huge amount of effort you may be getting into... – tucuxi May 10 '10 at 6:48
get 3rd edition better. Operating Systems Design and Implementation (3rd Edition) – limitCracker Apr 27 at 23:49

I would recommend first study a small OS like Minix1 which was build for educational purpose or Minix3 which is POSIX compliant.

share|improve this answer

You'll have to implement several kinds of descriptor tables to enable 32-bit mode. Enabling multi-threading isn't an easy task and will almost certainly be a prerequisite. You would probably also want to develop file system support early on to get off a floppy image or whatever you're currently using.

I'm sure you'll have come across this website in the past http://wiki.osdev.org/Main_Page but it has a lot of great articles.

You might also find this book useful for the stage of development you're at: http://www.amazon.com/exec/obidos/ASIN/0201596164/osnews-20/ it goes into great detail and has lots of diagrams, as well as some code snippets.

share|improve this answer

Start with a boot loader, learn about getting a memory map, scanning the PCI bus, initialising various chips, such as the APIC, and how to switch into protected mode.

One you have the beginnings of a kernel loaded, try writing routines to which will output to the screen, read from the keyboard, get a simple debugger going, followed by a physical memory manager and then a virtual memory manager. The latter two cannot be put off for long, because every program, including the operating system, needs a way to allocate and release memory in an orderly way.

share|improve this answer

Just to offer a novel suggestion approach... one could image the boot loader to a USB or RW CD then direct your computer to use that as a primary device. I have Vista installed and I just simply plug in a USB with the boot loader and kernel.bin file to test my toy OS. Be certain to use that same device for saving additional files or any extras so you don't corrupt your hard drive. When your OS has all the basics in place buy a junk computer, install your OS to it and expand from there.

share|improve this answer

https://github.com/rajneshrat/ratos

This is the minimal os with following support- networking, vm support, interrupt support, Pci support.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.