You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: content/showcase/rusty-hermit/index.md
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -10,7 +10,7 @@ authors = ["stlankes"]
10
10
11
11
Common virtualized environment based on classical virtual machines. In this case, complete machines are emulated or virtualized and on host and guest site are running common operating systems. This technique is established (VMware, Hyper-V, etc.) and widely used. However, it introduces additional overhead especially regarding memory consumption and performance.
12
12
13
-

13
+

14
14
15
15
An alternative approach to common virtual machines is OS-level
16
16
virtualization, where the kernel allows the existence of multiple
@@ -23,7 +23,7 @@ Often only one application (e.g. a web server) is running in the container or th
23
23
24
24
Unikernels do not provide system calls in the classical sense, as everything is running with the privilege level of a kernel and what is typically done via system calls is provided via a common function call. At first glance, this sounds more insecure than previous approaches. However, these kernels are expected to run within a virtual machine, which isolated the application from the real system. In addition, common compiler analysis is used to check the complete software stack and even unneeded components can be removed, which can reduce the attack surface of the application.
25
25
26
-

26
+

27
27
28
28
Well known unikernels are kernels such as [MirageOS](https://mirage.io/)
29
29
and [Unikraft](http://www.unikraft.org/). MirageOS is written in OCaml,
@@ -51,7 +51,7 @@ where both are running as guests inside a virtual machine running on top
51
51
of a Linux-based host system. Especially for small messages RustHermit
52
52
is faster in than Linux.
53
53
54
-

54
+

55
55
56
56
RustyHermit is also a research project to evaluate new operating
57
57
systems designs, which improves the scalability and the security of operating systems in cloud environments. For instance, RustyHermit provides classical
0 commit comments