vote up 0 vote down star
2

Possible Duplicates:
I’m interested in creating an OS. Where should I start?
How are Operating Systems “Made”?

Hello,

I'm learning C++, then i think: "C++ is a so much flexible language, i can develop drivers with it, then i can develop an OS", but i have no base, someone can post some tutorials and good links, a forum will be very nice, remember that i'm using Windows Vista Ultimate and i want to develop an desktop OS. Thanks!

flag

3  
duplicate stackoverflow.com/questions/291985/… – devio Jul 19 at 19:22
He want to develop for PPC i want to PC. – Nathan Campos Jul 19 at 19:23
Also duplicate: stackoverflow.com/questions/403754/… – Earwicker Jul 19 at 19:23
@Earwicker he want's to know how the OS's are made! – Nathan Campos Jul 19 at 19:25
Yes. Another word for "made" in this context is "develop". So he wants to know how an OS is developed. Your question is titled "Develop an OS", like you want to know how to develop an OS. Why not check out the answers already posted? – Earwicker Jul 19 at 19:27
show 5 more comments

closed as exact duplicate by Chris Upchurch, devio, Earwicker, Perspx, JohnFx Jul 19 at 19:45

3 Answers

vote up 1 vote down

Haiku-OS is written in C++. You can look at it here: http://www.haiku-os.org/

link|flag
vote up 1 vote down

BrokenThorn have quite a nice set of tutorials for writing an OS in C++ using Visual Studio (You will need nasm for the bootloader though).

Do not, however, underestimate the amount of work needed to develop even a small functional operating system. Things you take for granted in desktop programming for windows do not exist in a "new operating system", you will have to code these yourself.

However writing something from scratch like this is very entertaining, and very informative, you do learn how much effort goes into writing operating systems, and you do get a sense of achievement when you get that "Hello World" without Windows.

OSDev also have some tutorials, and a forum available.

link|flag
Thanks for the very good base!! – Nathan Campos Jul 19 at 19:25
vote up 3 vote down

http://www.osdev.org/ has wiki and forums. Also taking a class in Operating Systems will greatly help.

link|flag
Thanks, this site is very nice!!!!!! – Nathan Campos Jul 19 at 19:23

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