Tell me more ×
Raspberry Pi Stack Exchange is a question and answer site for users and developers of hardware and software for Raspberry Pi. It's 100% free, no registration required.

Me and a fellow coder friend are looking to create our own Operating System. We're looking to create a Java based OS so I would love to poke about the Jnode OS for inspiration.

Is there a way to run JNode, and our own OS, on the RaPi?

share|improve this question
Please add what you found out (with link) about running VMWare on the RaPi. – HeatfanJohn Sep 9 '12 at 2:36
@HeatfanJohn There is no link. I slightly modified my own emulation software to work on the RaPi. And before you ask, sadly I cannot share this software because I was paid a lot of money to make it for someone and he wouldn't really be happy if I put it in the public domain. – Kezz101 Sep 9 '12 at 17:23
You wouldn't have to make it PD, but I imagine they also won't like disclosing the source under license. – XTL Sep 10 '12 at 5:48
Yeah but it's a trust issue ya know? – Kezz101 Sep 10 '12 at 15:47

2 Answers

up vote 6 down vote accepted

I'm not sure about Jnode, but the Computer Laboratory at Cambridge University has a short course on OS development on the Raspberry Pi that you might be interested in:

Baking Pi - Operating Systems Development

share|improve this answer
Thank you! I found that article very interesting... It'll certainly help in the long run! – Kezz101 Sep 7 '12 at 19:27

You are in for a lot of pain if you go the Java way. Also operating systems capable of actually doing anything interesting takes much more work than you most likely think.

JNode requires as of now more memory than the Pi has and is not ported to the Raspberry, so it will require quite a bit of elbow grease to get up and running.

You might find it much more rewarding in terms of actually getting the computer to do something, to do some work on completing driver support on the Linux distribution you end up using. Raspbian seems to be where the momentum are these days.

share|improve this answer
Ah thanks for the advice! I did indeed go down the path of modifying the Raspian distro to support Java to run a sort of 'embedded OS'. – Kezz101 Sep 10 '12 at 15:49

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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