Mirage v2.0: a recap of the new features
openmirage.org
Mirage v2.0: a recap of the new features
1–10 of 13 posts
Re: Mirage v2.0: a recap of the new features
#2Re: Mirage v2.0: a recap of the new features
#3So what if you dont know / use OCaml?
* OCaml from the very beginning: http://ocaml-book.com/
* Real World OCaml (shameless plug: author). Freely available online: https://realworldocaml.org
* The OCaml.org website itself: http://ocaml.org/learn/ (99 problems is really fun).
Mirage does of course offer an FFI to interface with C libraries, although the majority of the hacking efforts are geared towards filling in gaps in the pure OCaml library ecosystem. See the FFI blog post for more on this (you can even bind to C libraries interactively using the `utop` REPL with ctypes): http://openmirage.org/blog/modular-foreign-function-bindings
Mirage is as much about the security and efficiency of using static typing through the OS stack, as it is about exploring the concept of unikernels. There are other efforts more into compatibility with existing applications (like OSv) that you might want to look into for running an existing stack. But I encourage you to experiment with thinking and trying the Mirage style of unikernel assembly, and report back with where it works and the areas where it could improve!
Others have written more eloquently than me about why you should bother learning OCaml:
* Esper: http://tech.esper.com/2014/07/15/why-we-use-ocaml/
* Thomas Leonard's Python to OCaml retrospective: http://roscidus.com/blog/blog/2014/06/06/python-to-ocaml-ret... (Thomas also leads the Mirage ARM port work)
* Yaron Minsky's OCaml for the Masses: http://queue.acm.org/detail.cfm?id=2038036
Re: Mirage v2.0: a recap of the new features
#4So what if you dont know / use OCaml?
Well, it's always fun to learn a new language, especially one with the 20 year provenance of OCaml! The modularity features that OCaml provides are really key to the core of Mirage. I'd suggest starting with: * OCaml from the very beginning: http://ocaml-book.com/ * Real World OCaml (shameless plug: author). Freely available online: https://realworldocaml.org * The OCaml.org website itself: http://ocaml.org/learn/ (9…
Nothing wrong with that but some of the most frequent arguments against Python are related to execution speed, I would expect a bigger difference here.
Re: Mirage v2.0: a recap of the new features
#5Earlier quoted context omitted.
Well, it's always fun to learn a new language, especially one with the 20 year provenance of OCaml! The modularity features that OCaml provides are really key to the core of Mirage. I'd suggest starting with: * OCaml from the very beginning: http://ocaml-book.com/ * Real World OCaml (shameless plug: author). Freely available online: https://realworldocaml.org * The OCaml.org website itself: http://ocaml.org/learn/ (9…
About the "Python to OCaml", the result is only 10% faster? Nothing wrong with that but some of the most frequent arguments against Python are related to execution speed, I would expect a bigger difference here.
FTA: "The new code is a similar length (slightly shorter), runs around 10x faster, and is statically type checked."
Re: Mirage v2.0: a recap of the new features
#6Re: Mirage v2.0: a recap of the new features
#7Re: Mirage v2.0: a recap of the new features
#8Stupid questions: does Mirage OS allow me to run C or Python programs? Can I run bash or Xwindows or do OpenGL?
Re: Mirage v2.0: a recap of the new features
#9[0] - http://www.se-radio.net/2014/05/episode-204-anil-madhavapedd...
Re: Mirage v2.0: a recap of the new features
#10Stupid questions: does Mirage OS allow me to run C or Python programs? Can I run bash or Xwindows or do OpenGL?
While correct, I always find the declaration of Mirage (and HaLVM for that matter) as an OS to be unhelpful. It is a cross compiler for OCaml (resp. Haskell) to the Xen ABI along with libraries for interacting with Xen primitives (inter-domain communication, etc).
For instance, Andy Ray just got a kernel module target working: http://lists.xenproject.org/archives/html/mirageos-devel/201... (when this mode is complete, the network stack module will call directly into the FreeBSD kthread rather than invoking socket syscalls, for example). This is also how we plan to support the Raspberry Pi (use FreeBSD as a bootloader, with just one kernel thread running which runs the unikernel).
And there are also ongoing ports to JavaScript (to work as an IOCaml notebook, which is itself based on IPython).
All of these just need a recompilation with a different invocation of `mirage configure --`.