vote up 6 vote down star
3

I know that BEA was working on LiquidVM which didn't require an underlying operating system, but would like to know if anyone in the open source community is working on something similar.

Ideally I would like to find an implementation where the VM is directly loaded by the OS boot loader.

flag

37% accept rate
what kind of system were you intending to write apps for? – Kevin Williams Apr 18 at 15:05
You mean a VM that IS an OS? – Andy Apr 18 at 19:57
Haha, nice question. I love hearing about projects like these.As a small aside, I remember reading about an open source project that got CPython(The standard python implementation) to run on bare-metal and were working on building an OS in python :) Sadly I've lost the link since. – Falaina Jul 17 at 7:59
Remember this? en.wikipedia.org/wiki/JavaOS – skaffman Jul 31 at 11:05

7 Answers

vote up 1 vote down check

What is it you need?

Perhaps Sanos can give you a small chunk of code between the hardware and the JVM which you can use?

http://www.jbox.dk/sanos/

link|flag
1  
Does Sanos support JDK 1.6 and/or 64-bit? – jm04469 Apr 19 at 1:22
Not as far as I know. Latest is 1.4. It is Open Source so if you need it, feel free to join. – Thorbjørn Ravn Andersen Apr 19 at 6:47
So will SANOS die because it hasn't generated enough community interest? – jm04469 May 27 at 10:32
No idea. Ask the project developer :) – Thorbjørn Ravn Andersen May 27 at 10:57
vote up -1 vote down

LOL, if you're writing a VM which runs Java apps which does not include an operating system, um, your VM is an operating system. ;-)

link|flag
1  
Seems a reasonable comment to me. Why the down votes? – Tom Hawtin - tackline Apr 20 at 12:41
Perhaps because it's a reasonable comment, but not a reasonable answer. It doesn't seem to contribute anything useful - just states the obvious, and the question itself implies as much anyway. – Software Monkey Apr 20 at 19:31
vote up 3 vote down

There is the Sun project Squawk which a VM that runs on hardware instead of an underlying OS. Useful for embedded devices like the Sun SPOT where Squawk is the OS.

Squawk is licenced under GPLv2.

link|flag
vote up 3 vote down

There's also Project Guest VM, which is a JVM hosted on Xen hypervisor. While the home page seems to be rather light on details, there's a Google Tech Talk about this project as well.

link|flag
It's indeed a very interesting and promising project. You should edit your answer and add also a reference to maxine: maxine.dev.java.net – ivan_ivanovich_ivanoff Apr 18 at 19:55
vote up 0 vote down

Hi Folks,

Just a small snippet I seen and heard.

MIT in the 60's/70's developed a Lisp machine, this was a machine that intrinsically understood Lisp, I think that they went onto commercialize it also.

I had heard in about 2002 that someone was doing to develop a JVM on a chip a FPGA or ASIC.

The MIT/Lisp story is true, I seen it in their museum, does anyone know if there is any truth about the JVM on a chip?

thanks, Martin.

link|flag
Some ARM CPUs have arm.com/products/multimedia/… - although I don't know if it's a full-featured JVM or not (my gut feeling says probably not) – andri Apr 18 at 19:24
Jazelle is not a fully-featured JVM, it's just support that allows the CPU to execute some byte-code instructions and thus make it easier to write a performant JVM. – Joachim Sauer Jul 31 at 11:12
vote up 0 vote down

JNode OS is an operating system written mostly in Java.

link|flag
Any thoughts on how JNODE compares to SANOS? – jm04469 May 27 at 10:31
vote up 3 vote down

Unlike SANOS, the JNode operating system is a full operating system with many supported devices, file systems, a network stack, a GUI stack, a command shell and 50 or so commands, and much more. JNode currently runs on x86 (32 bit) with one processor enabled, but x86-64 and multi-processor versions are in development. (JNode is 99.99% Java. Porting to a new architecture would entail rewriting the 0.01% of code that is in assembler, creating / modifying hardware specific drivers ... and writing a native code compiler for the new architecture.)

We currently have ~7 active developers, but we are always looking for new people to join the team, especially people who understand Java AND code generation, garbage collectors, drivers and so on.

link|flag

Your Answer

Get an OpenID
or

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