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.
vincelawrence
Posts: 19 Joined: Thu May 17, 2012 5:02 pm
Location: PH - Luzon - Tanay, Rizal
Post
by vincelawrence » Sat May 19, 2012 6:06 pm
Sup guys! Any suggestions of best open source kernels out there?
Just your opinion guys!
Sin is pleasure!
VolTeK
Member
Posts: 815 Joined: Sat Nov 15, 2008 2:37 pm
Location: The Fire Nation
Post
by VolTeK » Sat May 19, 2012 6:22 pm
vincelawrence
Posts: 19 Joined: Thu May 17, 2012 5:02 pm
Location: PH - Luzon - Tanay, Rizal
Post
by vincelawrence » Sat May 19, 2012 6:32 pm
Your suggestions except those things, just to brainstorm ideas
Sin is pleasure!
gravaera
Member
Posts: 737 Joined: Tue Jun 02, 2009 4:35 pm
Location: Supporting the cause: Use \tabs to indent code. NOT \x20 spaces.
Post
by gravaera » Sat May 19, 2012 6:33 pm
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.
vincelawrence
Posts: 19 Joined: Thu May 17, 2012 5:02 pm
Location: PH - Luzon - Tanay, Rizal
Post
by vincelawrence » Sat May 19, 2012 6:37 pm
NVM, i found a complete list of kernels
THANKS FOR ... huh?
Sin is pleasure!
bubach
Member
Posts: 1223 Joined: Sat Oct 23, 2004 11:00 pm
Location: Sweden
Contact:
Post
by bubach » Sat May 19, 2012 6:38 pm
Well, that would have to be.. mine. Obviously.
LindusSystem
Member
Posts: 63 Joined: Sat Apr 28, 2012 9:41 am
Location: Earth -> Asia
Post
by LindusSystem » Sat May 19, 2012 7:54 pm
Also look at the OS Projects Page and Resources Page(OS Project has so many and Resources has category as small and large)
Anyone has a idea of making a ntfs bootsector?if yes PM me , plz.
vincelawrence
Posts: 19 Joined: Thu May 17, 2012 5:02 pm
Location: PH - Luzon - Tanay, Rizal
Post
by vincelawrence » Sat May 19, 2012 8:00 pm
@LindusSystem: Didn't saw that, thanks!
Sin is pleasure!
iansjack
Member
Posts: 4827 Joined: Sat Mar 31, 2012 3:07 am
Location: Chichester, UK
Post
by iansjack » Sun May 20, 2012 12:36 am
Could you define what you mean by "best", please. What criteria are you interested in?
(My own choice would be FreeBSD.)
vincelawrence
Posts: 19 Joined: Thu May 17, 2012 5:02 pm
Location: PH - Luzon - Tanay, Rizal
Post
by vincelawrence » Sun May 20, 2012 2:02 am
Similar to Linux but not Linux
Edit: I like how they made FreeBSD!
Sin is pleasure!
iansjack
Member
Posts: 4827 Joined: Sat Mar 31, 2012 3:07 am
Location: Chichester, UK
Post
by iansjack » Sun May 20, 2012 5:53 am
vincelawrence wrote: Similar to Linux but not Linux
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?
bluemoon
Member
Posts: 1761 Joined: Wed Dec 01, 2010 3:41 am
Location: Hong Kong
Post
by bluemoon » Sun May 20, 2012 6:06 am
I'm sure the best open source kernel the following one,
Almost every os developer fork this OS
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");
}
AndrewAPrice
Member
Posts: 2311 Joined: Mon Jun 05, 2006 11:00 pm
Location: USA (and Australia)
Post
by AndrewAPrice » Sun May 20, 2012 8:45 am
Staying in the Unix world - how about Minix?
DavidCooper
Member
Posts: 1150 Joined: Wed Oct 27, 2010 4:53 pm
Location: Scotland
Post
by DavidCooper » Sun May 20, 2012 2:00 pm
bluemoon wrote: I'm sure the best open source kernel the following one,
Almost every os developer fork this OS
I haven't got round to doing that part of my OS yet, but I've often wondered who started this weird tradition?
JamesM
Member
Posts: 2935 Joined: Tue Jul 10, 2007 5:27 am
Location: York, United Kingdom
Contact:
Post
by JamesM » Sun May 20, 2012 2:04 pm
Pedigree.