Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

If I write an OS using c, how would I make the desktop? Could I implement Java, or is there a way to do this is the C programming language? I've never done anything with any sort of graphics in C. Does anybody know the answer, much less a tutorial or a way to get started and learn how to write the desktop environment?

share|improve this question

closed as not a real question by Steve, Brian Driscoll, casperOne Nov 29 '11 at 21:47

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

2 Answers

up vote 8 down vote accepted

You'll find everything you need to know in that regard on this site: http://www.osdev.org/

share|improve this answer
Thanks great resource!, I'm in the process of sifting through the multitude of data right now. – JAW1025 Nov 29 '11 at 21:48

The Gnome desktop on Linux is written in C (mostly).

But if you write an OS, the desktop is not your priority; getting right important things like processes, scheduling, threads, drivers, protection, authentification, .... is more important, and time consuming.

share|improve this answer
Ok I'll keep that in mind as I go. – JAW1025 Nov 29 '11 at 21:49
See also tunes.org which has (deep inside) many resources... – Basile Starynkevitch Nov 29 '11 at 21:51

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