JVM

How many JVMs are available in a computer with dual operating system?
[76 byte] By [AshokEsquirea] at [2007-10-2 22:06:27]
# 1
As many as the computer can handle... Usually, the JVM is started as a regular process on the host OS, so the same restrictions as for any other application apply.
falke2203a at 2007-7-14 1:23:08 > top of Java-index,Java Essentials,New To Java...
# 2
Can we use same JVM in the different operating systems in a PC
AshokEsquirea at 2007-7-14 1:23:08 > top of Java-index,Java Essentials,New To Java...
# 3
Depends on if the operating systems are compatible or not, but I would say no.Kaj
kajbja at 2007-7-14 1:23:08 > top of Java-index,Java Essentials,New To Java...
# 4
Can we use single JVM in Different os(Linux,windows,..) in PC?
AshokEsquirea at 2007-7-14 1:23:08 > top of Java-index,Java Essentials,New To Java...
# 5
should we install JDK separately for a dual OS( like a linux bakground and windows environment) ..If YES... separate JVM's for both Environment?
AshokEsquirea at 2007-7-14 1:23:08 > top of Java-index,Java Essentials,New To Java...
# 6
> Can we use single JVM in Different> os(Linux,windows,..) in PC?No
kajbja at 2007-7-14 1:23:08 > top of Java-index,Java Essentials,New To Java...
# 7
> should we install JDK separately for a dual OS( like> a linux bakground and windows environment) ..If> YES... separate JVM's for both Environment?Yes, you need to do two different installations.Kaj
kajbja at 2007-7-14 1:23:08 > top of Java-index,Java Essentials,New To Java...
# 8
A Java Virtual Machine runs as an APPLICATION on the host operating system. Same as ANY other application, if you install it on OS 1, it won't be available on OS 2 and vice versa. So if you have Linux and Windows, you have to install a JRE/JDK on BOTH systems.
falke2203a at 2007-7-14 1:23:08 > top of Java-index,Java Essentials,New To Java...
# 9
As an execption, there are emulators to cross-run executables.In the "good old days" when there was no Oracle yet for Linux, you could still run on Linux the SCO version. There is even wine to run Windows applications on Linux. http://www.winehq.com/
BIJ001a at 2007-7-14 1:23:08 > top of Java-index,Java Essentials,New To Java...