All Projects → sysml → mini-os

sysml / mini-os

Licence: other
Minimalistic Operating System for Xen

Programming Languages

c
50402 projects - #5 most used programming language
Makefile
30231 projects
assembly
5116 projects

Projects that are alternatives of or similar to mini-os

clickos
The Click modular router: fast modular packet processing and analysis
Stars: ✭ 127 (+95.38%)
Mutual labels:  xen, unikernel, mini-os
uniprof
A stack tracer/profiler for Xen domains
Stars: ✭ 29 (-55.38%)
Mutual labels:  xen, unikernel
Mirage
MirageOS is a library operating system that constructs unikernels
Stars: ✭ 1,707 (+2526.15%)
Mutual labels:  xen, unikernel
Albatross
Albatross: orchestrate and manage MirageOS unikernels with Solo5
Stars: ✭ 85 (+30.77%)
Mutual labels:  unikernel
Qubes Mirage Firewall
A Mirage firewall VM for QubesOS
Stars: ✭ 149 (+129.23%)
Mutual labels:  unikernel
Core
Ultibo Core
Stars: ✭ 102 (+56.92%)
Mutual labels:  unikernel
hermitux-kernel
github.com/ssrg-vt/hermitux
Stars: ✭ 32 (-50.77%)
Mutual labels:  unikernel
script
same script
Stars: ✭ 13 (-80%)
Mutual labels:  xen
Virgo
Run Unikernels Locally and Natively on OSX and Linux
Stars: ✭ 64 (-1.54%)
Mutual labels:  unikernel
xen-orchestra-ce
🐳 Docker & docker-compose files to deploy Xen Orchestra Community Edition (ie: from sources)
Stars: ✭ 70 (+7.69%)
Mutual labels:  xen
mirage-xen
Xen core platform libraries for MirageOS
Stars: ✭ 17 (-73.85%)
Mutual labels:  xen
Mirage Skeleton
Examples of simple MirageOS apps
Stars: ✭ 168 (+158.46%)
Mutual labels:  unikernel
hen
Haskell bindings to Xen hypervisor interface
Stars: ✭ 17 (-73.85%)
Mutual labels:  xen
xenstats exporter
Prometheus exporter for xen (Storage, Host CPUs, Memory usage)
Stars: ✭ 20 (-69.23%)
Mutual labels:  xen
Libhermit
HermitCore: A C-based, lightweight unikernel
Stars: ✭ 190 (+192.31%)
Mutual labels:  unikernel
Eggos
A Go unikernel running on x86 bare metal
Stars: ✭ 1,232 (+1795.38%)
Mutual labels:  unikernel
capstan
Capstan, a tool for packaging and running your application on OSv.
Stars: ✭ 19 (-70.77%)
Mutual labels:  unikernel
mirage-xmpp
Implementation of XMPP for MirageOS
Stars: ✭ 12 (-81.54%)
Mutual labels:  unikernel
contruno
A TLS termination proxy as a MirageOS
Stars: ✭ 13 (-80%)
Mutual labels:  unikernel
Qway-qubes-repo
Repository is intended to provide patches and rpm specs with experimental features to run under the Qubes OS.
Stars: ✭ 19 (-70.77%)
Mutual labels:  xen
 Minimal OS
 ----------

This shows some of the stuff that any guest OS will have to set up.

This includes:

 * installing a virtual exception table
 * handling virtual exceptions
 * handling asynchronous events
 * enabling/disabling async events
 * parsing start_info struct at start-of-day
 * registering virtual interrupt handlers (for timer interrupts)
 * a simple page and memory allocator
 * minimal libc support
 * minimal Copy-on-Write support
 * network, block, framebuffer support
 * transparent access to FileSystem exports (see tools/fs-back)

- to build it just type make.

- to build it with TCP/IP support, download LWIP 1.3.2 source code and type

  make LWIPDIR=/path/to/lwip/source

- to build it with much better libc support, see the stubdom/ directory

- to start it do the following in domain0 (assuming xend is running)
  # xm create domain_config

This starts the kernel and prints out a bunch of stuff and then once every
second the system time.

If you have setup a disk in the config file (e.g.
disk = [ 'file:/tmp/foo,hda,r' ] ), it will loop reading it.  If that disk is
writable (e.g. disk = [ 'file:/tmp/foo,hda,w' ] ), it will write data patterns
and re-read them.

If you have setup a network in the config file (e.g. vif = [''] ), it will
print incoming packets.

If you have setup a VFB in the config file (e.g. vfb = ['type=sdl'] ), it will
show a mouse with which you can draw color squares.

If you have compiled it with TCP/IP support, it will run a daytime server on
TCP port 13.
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].