need to know the structure of Operating systems

Question about which tools to use, bugs, the best way to implement a function, etc should go here. Don't forget to see if your question is answered in the wiki first! When in doubt post here.
Post Reply
myinterest
Posts: 1
Joined: Wed Mar 12, 2008 11:59 am

need to know the structure of Operating systems

Post by myinterest »

Hi,

I am very much interested in knowing how operating system interact with hardware and other software.

I searched for many books on os, ever books details the os concepts like process, memory management, threads,scheduling etc.. But my requirement is to know, if i am the person who actually wants to develop my own os what are the things i need to know and how to relate those.
For example when we start the PC it boots and the bootloader loads the os.so which process actually interacts with that how we are going to design that process, what are the concepts need to understand in order to write os and all the other stuff. I know some part of theory like wht is process,concurrency,scheduling, multiprogramming, deadlock etc..But i want to know how we write our OS to implement these concepts and how its targetted to interact with the hardware and other software etc.

Please guide me regarding the understanding of these concepts and how i need to start looking into the os inorder to develop my own OS.
Please suggest me some books and links where i need to get some material or I ll be greatfull if any can guide me to understand those concepts.

Thanks & Regards,
Raghu.
xyzzy
Member
Member
Posts: 391
Joined: Wed Jul 25, 2007 8:45 am
Libera.chat IRC: aejsmith
Location: London, UK
Contact:

Post by xyzzy »

I would recommend buying and reading Operating Systems: Design and Implementation, it's a really good book.
User avatar
AJ
Member
Member
Posts: 2646
Joined: Sun Oct 22, 2006 7:01 am
Location: Devon, UK
Contact:

Post by AJ »

Hi,

I would also recommend the freely available (in hard copy) Intel manuals - also see the sticky topic at the top of this forum for more book advice.

How are you at programming? If you are interested in hobby OS development, I would suggest (others may disagree), that you need the following:

1. Be able to do basic programming in Assembly Language - by 'basic programming', I mean be comfortable with reading other people's ASM code and be able to look up any instructions you do not know (Intel Manuals...), and be happy to write basic read/write control register and other support functions.

2. It will really help if you can read C/C++, whatever language you intend to program a hobby OS in. A lot of code samples you meet will be in C.

If I haven't said it enough already, get the Intel Manuals :) BTW, your reasons for starting in OS Dev are pretty much the same as mine were (I thought - "I'll build a hello world OS and stop there". Then I got the bug. Now I can stop any time I like... Good luck!

Cheers,
Adam
DeletedAccount
Member
Member
Posts: 566
Joined: Tue Jun 20, 2006 9:17 am

Have a look at linux 0.01

Post by DeletedAccount »

The linux kernel source code 0.01 is a good reference , but even after some hacking it doesnt work with some bioses ...
Post Reply