Best Open Source Kernels

All off topic discussions go here. Everything from the funny thing your cat did to your favorite tv shows. Non-programming computer questions are ok too.
User avatar
vincelawrence
Posts: 19
Joined: Thu May 17, 2012 5:02 pm
Location: PH - Luzon - Tanay, Rizal

Best Open Source Kernels

Post by vincelawrence »

Sup guys! Any suggestions of best open source kernels out there?
Just your opinion guys! :lol:
Sin is pleasure!
User avatar
VolTeK
Member
Member
Posts: 815
Joined: Sat Nov 15, 2008 2:37 pm
Location: The Fire Nation

Re: Best Open Source Kernels

Post by VolTeK »

Image
User avatar
vincelawrence
Posts: 19
Joined: Thu May 17, 2012 5:02 pm
Location: PH - Luzon - Tanay, Rizal

Re: Best Open Source Kernels

Post by vincelawrence »

:shock:

Your suggestions except those things, just to brainstorm ideas :|
Sin is pleasure!
User avatar
gravaera
Member
Member
Posts: 737
Joined: Tue Jun 02, 2009 4:35 pm
Location: Supporting the cause: Use \tabs to indent code. NOT \x20 spaces.

Re: Best Open Source Kernels

Post by gravaera »

I freaking love Voltek's post...
17:56 < sortie> Paging is called paging because you need to draw it on pages in your notebook to succeed at it.
User avatar
vincelawrence
Posts: 19
Joined: Thu May 17, 2012 5:02 pm
Location: PH - Luzon - Tanay, Rizal

Re: Best Open Source Kernels

Post by vincelawrence »

NVM, i found a complete list of kernels

THANKS FOR ... huh?
Sin is pleasure!
User avatar
bubach
Member
Member
Posts: 1223
Joined: Sat Oct 23, 2004 11:00 pm
Location: Sweden
Contact:

Re: Best Open Source Kernels

Post by bubach »

Well, that would have to be.. mine. Obviously. :lol:
"Simplicity is the ultimate sophistication."
http://bos.asmhackers.net/ - GitHub
LindusSystem
Member
Member
Posts: 63
Joined: Sat Apr 28, 2012 9:41 am
Location: Earth -> Asia

Re: Best Open Source Kernels

Post by LindusSystem »

Also look at the OS Projects Page and Resources Page(OS Project has so many and Resources has category as small and large) :D
Anyone has a idea of making a ntfs bootsector?if yes PM me , plz.
User avatar
vincelawrence
Posts: 19
Joined: Thu May 17, 2012 5:02 pm
Location: PH - Luzon - Tanay, Rizal

Re: Best Open Source Kernels

Post by vincelawrence »

@LindusSystem: Didn't saw that, thanks! :D
Sin is pleasure!
User avatar
iansjack
Member
Member
Posts: 4683
Joined: Sat Mar 31, 2012 3:07 am
Location: Chichester, UK

Re: Best Open Source Kernels

Post by iansjack »

Could you define what you mean by "best", please. What criteria are you interested in?

(My own choice would be FreeBSD.)
User avatar
vincelawrence
Posts: 19
Joined: Thu May 17, 2012 5:02 pm
Location: PH - Luzon - Tanay, Rizal

Re: Best Open Source Kernels

Post by vincelawrence »

Similar to Linux but not Linux :lol:

Edit:I like how they made FreeBSD!
Sin is pleasure!
User avatar
iansjack
Member
Member
Posts: 4683
Joined: Sat Mar 31, 2012 3:07 am
Location: Chichester, UK

Re: Best Open Source Kernels

Post by iansjack »

vincelawrence wrote:Similar to Linux but not Linux :lol:

Edit:I like how they made FreeBSD!
Well, of course it's similar to Linux. it's a descendant of Unix and Linux was based on Unix. So what? That's true of many OSs.

What do you like about "the way they made it"? That doesn't. Really mean anything to me. Could you explain specifically what you like about it?
User avatar
bluemoon
Member
Member
Posts: 1761
Joined: Wed Dec 01, 2010 3:41 am
Location: Hong Kong

Re: Best Open Source Kernels

Post by bluemoon »

I'm sure the best open source kernel the following one, Almost every os developer fork this OS :lol:

Code: Select all

// HelloOS 1.0 (Public Domain)

int x=0, y=0;

void kputc(char c) {
    volatile char* video = (volatile char*)0xB8000;
    video[(y*80+x)*2] = c;
    video[(y*80+x)*2+1] = 7;
    if ( (++x) == 80 ) {
        y++; x = 0; // TODO: handle y>24
    }
}

void kputs(const char* s) {
    for ( ; *s; s++ ) kputc(*s);
}

void kmain() {
    kputs ("Hello World!");
    __asm volatile ("hlt");
}
User avatar
AndrewAPrice
Member
Member
Posts: 2298
Joined: Mon Jun 05, 2006 11:00 pm
Location: USA (and Australia)

Re: Best Open Source Kernels

Post by AndrewAPrice »

Staying in the Unix world - how about Minix?
My OS is Perception.
User avatar
DavidCooper
Member
Member
Posts: 1150
Joined: Wed Oct 27, 2010 4:53 pm
Location: Scotland

Re: Best Open Source Kernels

Post by DavidCooper »

bluemoon wrote:I'm sure the best open source kernel the following one, Almost every os developer fork this OS :lol:

Code: Select all

...
    kputs ("Hello World!");
...
I haven't got round to doing that part of my OS yet, but I've often wondered who started this weird tradition?
Help the people of Laos by liking - https://www.facebook.com/TheSBInitiative/?ref=py_c

MSB-OS: http://www.magicschoolbook.com/computing/os-project - direct machine code programming
User avatar
JamesM
Member
Member
Posts: 2935
Joined: Tue Jul 10, 2007 5:27 am
Location: York, United Kingdom
Contact:

Re: Best Open Source Kernels

Post by JamesM »

Pedigree.
Post Reply