What are the differences between an exokernel operating system and a virtual machine kernel (hyper visor) or a virtual language run time like JVM?
I've been studying AROS, which uses and exokernel design without memory protection and can also run as a virtual machine hosted on another OS.
Differences of an Exokernel and a Virtual Machine kernel
- zeitue
- Member
- Posts: 88
- Joined: Fri Dec 14, 2012 6:05 pm
- Libera.chat IRC: zeitue
- Location: United States, Texas
- Contact:
Differences of an Exokernel and a Virtual Machine kernel
### Z++; && S++; ###
zeitue is pronounced zeɪtə
Web Site::Bit Bucket
Programming Languages: C, C++, Java, Ruby, Common Lisp, Clojure
Languages: English, zɪ̀ŋ, 日本語, maitraiuen
zeitue is pronounced zeɪtə
Web Site::Bit Bucket
Programming Languages: C, C++, Java, Ruby, Common Lisp, Clojure
Languages: English, zɪ̀ŋ, 日本語, maitraiuen
- Combuster
- Member
- Posts: 9301
- Joined: Wed Oct 18, 2006 3:45 am
- Libera.chat IRC: [com]buster
- Location: On the balcony, where I can actually keep 1½m distance
- Contact:
Re: Differences of an Exokernel and a Virtual Machine kernel
Can you tell the difference between a computer and an operating system?What are the differences between an exokernel operating system and a virtual machine kernel (hyper visor) or a virtual language run time like JVM?
Re: Differences of an Exokernel and a Virtual Machine kernel
Basically this does not require anything from the guest. It may not even know whether it runs virtualized or not. If I understood what you meant...zeitue wrote:can also run as a virtual machine hosted on another OS
- zeitue
- Member
- Posts: 88
- Joined: Fri Dec 14, 2012 6:05 pm
- Libera.chat IRC: zeitue
- Location: United States, Texas
- Contact:
Re: Differences of an Exokernel and a Virtual Machine kernel
I'm meaning like this http://ice-os.com/resources/images/Exo-VM-Hyper.svg
Sorry for my bad writing in the last post, I should know better than to post when I should be asleep.
What I was meaning is reall what are the major differences between these types of design(Hosted Kernel/VM Kernel, Virtual Machine or Hyper Visor, and an Exokernel)
This was from my post on stackoverflow
Sorry for my bad writing in the last post, I should know better than to post when I should be asleep.
What I was meaning is reall what are the major differences between these types of design(Hosted Kernel/VM Kernel, Virtual Machine or Hyper Visor, and an Exokernel)
This was from my post on stackoverflow
I have been reading about AROS, especially the hosted version. AROS says the following.
From what I have read about virtual machines is that there are 2 types system virtual machines and process virtual machines. I know that AROS is not a system virtual machine, but all the process virtual machines seam to be like Java JVM, Mono, Python, Ruby, etc. They all seam to be language specific. Where as AROS seams to be a complete system/platform running in user mode kind of like User Mode Linux.kernel.resource contains AROS microkernel. It's the lowest level component,
which is responsible for handling CPU and motherboard. For
hosted ports kernel.resource contains a virtual machine.
AROS-hosted: An Operating System in an Operating System?
AROS is originally developed on Linux running on an Intel-based computer. It runs on many more machines and operating systems, though. This may sound strange: an OS running on top of an other OS, that's emulation, right?
A nice term for what AROS-hosted does is "API emulation". API is a three-letter acronym for Application Programmer's Interface. In plain English: an API provides (C Language) functions that a programmer can use. The AmigaOS API consists of a load of library calls that an Amiga programmer can use to make an Amiga program. AROS emulates the AmigaOS API: it tries to provide the same library calls as AmigaOS. An Amiga emulator, such as UAE; emulates the Amiga computer: the processor, the connected hardware, everything. This has its advantages, like being able to play binary Amiga games on different hardware, and its disadvantages, like not being able to use the emulator as a "real" OS, on a "real" processor. AROS-hosted runs on the "real" processor. But it isn't a "real" OS, unless you run in such a way that it doesn't require Linux. This is called "native" AROS.
AROS can run natively on the Intel and Amiga computers, but not quite as well as it runs on Linux. AROS library functions are made to run under Linux first, internally using Linux kernel and library calls. This way a programmer has the opportunity to bother about the implementation of the whole system first, and to bother about the technical details in a later stadium. People are currently working on making the "native" AROS more usable. The results are very impressive and it is perfectly possible to use AROS-native as a real (and only) Operating system on an IBM PC compatible machine.
Of course, AROS is not only an API emulator. It also tries to provide replacements to all the AmigaOS 3.1 system software, and you will also find a few demo's and games being shipped with AROS, just to show that they work - we might just be at 77% of the whole system, but we already have Quake running!
### Z++; && S++; ###
zeitue is pronounced zeɪtə
Web Site::Bit Bucket
Programming Languages: C, C++, Java, Ruby, Common Lisp, Clojure
Languages: English, zɪ̀ŋ, 日本語, maitraiuen
zeitue is pronounced zeɪtə
Web Site::Bit Bucket
Programming Languages: C, C++, Java, Ruby, Common Lisp, Clojure
Languages: English, zɪ̀ŋ, 日本語, maitraiuen