Skip to content

Commit 2d26f7a

Browse files
committed
Move RustyHermit post to subfolder
1 parent 2bcc306 commit 2d26f7a

File tree

4 files changed

+3
-3
lines changed

4 files changed

+3
-3
lines changed

content/showcase/rusty-hermit.md renamed to content/showcase/rusty-hermit/index.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ authors = ["stlankes"]
1010

1111
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.
1212

13-
![Structure of a common virtualitation environment](../common_vm.png)
13+
![Structure of a common virtualitation environment](common_vm.png)
1414

1515
An alternative approach to common virtual machines is OS-level
1616
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
2323

2424
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.
2525

26-
![Structure of a library operating system](../libos.png)
26+
![Structure of a library operating system](libos.png)
2727

2828
Well known unikernels are kernels such as [MirageOS](https://mirage.io/)
2929
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
5151
of a Linux-based host system. Especially for small messages RustHermit
5252
is faster in than Linux.
5353

54-
![Bandwidth of the RustyHermit's exerimental network interface](../bandwidth.png)
54+
![Bandwidth of the RustyHermit's exerimental network interface](bandwidth.png)
5555

5656
RustyHermit is also a research project to evaluate new operating
5757
systems designs, which improves the scalability and the security of operating systems in cloud environments. For instance, RustyHermit provides classical
File renamed without changes.

0 commit comments

Comments
 (0)