Where i can download Minix

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
SmartBoy

Where i can download Minix

Post by SmartBoy »

Hello :)

i know a minx os is good for newbie .. and i am very newbie .

i wan't build my own os but i am newbie in c++ and in os building

can every one help me about this subject .

how i can build my own os and what is requsit ?

and please if any person had Minix source code to download show it here .


thank you very much .
mystran

Re:Where i can download Minix

Post by mystran »

SmartBoy wrote: i wan't build my own os but i am newbie in c++ and in os building
If you know C, then all is fine. If you don't know C, you should learn it first. And if you don't know how to program, you should definitely learn to program first.

Also notice that merely "knowing" the language isn't enough. You have to be good in "programming with it".
can every one help me about this subject .
Indeed, this board can help you with the subject, as long as you know how to program first, and start by reading what is already answered (especially the FAQ, which you should have found by now... hint: QuickLinks)
how i can build my own os and what is requsit ?
Well, the basic procedure is to first design an OS, which is often the tricky part, and then write the OS using your favourite low-level programming language capable of running without external runtime libraries (which most probably means C or C++).

You also need lots of time, and enough persistence not to give up the 107th time it still doesn't work :)

Also, you definitely need to develop a good skill in finding information with a search engine, see below.
and please if any person had Minix source code to download show it here .
Searching Google for "minix" gives Andy Tanenbaum's page on Minix as first hit. That page includes a section "GETTING MINIX".

That said, most of your questions are answered (better) in all the OS FAQ's out there, so let's not repeat it all here.
SmartBoy

Re:Where i can download Minix

Post by SmartBoy »

Hello ..

thanks all 8)

chris :
i don't found the link !

mystran :
If you know C, then all is fine. If you don't know C, you should learn it first. And if you don't know how to program, you should definitely learn to program first.

Also notice that merely "knowing" the language isn't enough. You have to be good in "programming with it".
Well , i know C++ ..
i learned about :
if , else , else if , switch case .
struct , array , cout , cin .
OOP , const , define , variable .
ifdef , ifndef , loop , file handle .

all this subject i know about .

i can understand any simple code , but i can't understand any large project like os or programming language or GUI programme .

i can only understand under dos programme .
Indeed, this board can help you with the subject, as long as you know how to program first, and start by reading what is already answered (especially the FAQ, which you should have found by now... hint: QuickLinks)
Well , i will find about (how to start) :)
Well, the basic procedure is to first design an OS, which is often the tricky part, and then write the OS using your favourite low-level programming language capable of running without external runtime libraries (which most probably means C or C++).

You also need lots of time, and enough persistence not to give up the 107th time it still doesn't work

Also, you definitely need to develop a good skill in finding information with a search engine, see below.
hmmmmmmm , what is programming language low-level deffrient C/C++

i think C/C++ it's better for this functions .. i am true ? :)
Searching Google for "minix" gives Andy Tanenbaum's page on Minix as first hit. That page includes a section "GETTING MINIX".

That said, most of your questions are answered (better) in all the OS FAQ's out there, so let's not repeat it all here.
Yeah , i found my web site about this os but i don't found links :(


thanks for all 8)
User avatar
bubach
Member
Member
Posts: 1223
Joined: Sat Oct 23, 2004 11:00 pm
Location: Sweden
Contact:

Re:Where i can download Minix

Post by bubach »

On this site:
http://atrevida.comprenica.com/gameprog.html
You can practice all the low level basics in dos.
it contains good info on memory in the pc, interrupts etc.

It?s for game programming, but since you only(?) know dos programming, it can be a good way of learning the low level things in a soft way.. ;)

Edit: it also contains a 80x86 Assembler tutorial (witch is very good to know when programming a os).

/ Christoffer
"Simplicity is the ultimate sophistication."
http://bos.asmhackers.net/ - GitHub
SmartBoy

Re:Where i can download Minix

Post by SmartBoy »

bubach wrote: On this site:
http://atrevida.comprenica.com/gameprog.html
You can practice all the low level basics in dos.
it contains good info on memory in the pc, interrupts etc.

It?s for game programming, but since you only(?) know dos programming, it can be a good way of learning the low level things in a soft way.. ;)

Edit: it also contains a 80x86 Assembler tutorial (witch is very good to know when programming a os).

/ Christoffer
Well , thanks about this site .

i think it's good , i will read all articles in this site .

and i wan't ask .. in this time i read this article : http://www.groovyweb.uklinux.net/index. ... 20how%20to

to learn asm basic . it's good or not ?


thanks 8)
Post Reply