Skip to content

Commit

Permalink
sessions/behind-scenes: Fix links
Browse files Browse the repository at this point in the history
Add missing links to repositories.

Signed-off-by: Razvan Deaconescu <[email protected]>
  • Loading branch information
razvand authored and StefanJum committed Apr 27, 2023
1 parent dbf7f77 commit 444036e
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 9 deletions.
Original file line number Diff line number Diff line change
@@ -1,23 +1,24 @@
Session support files are available [in the repository](https://github.com/unikraft/docs.git).
If you already cloned the repository, update it and enter the session directory:
If you haven't cloned the repository yet, clone it and enter the session directory:

```console
$ cd path/to/repository/clone
$ git clone https://github.com/unikraft/docs.git

$ git pull --rebase
$ cd docs/

$ cd content/en/community/hackathons/sessions/behind-scenes/

$ ls
demo images index.md sol work
```

If you haven't cloned the repository yet, clone it and enter the session directory:
Otherwise, if you already cloned the repository, update it and enter the session directory.
Assuming the session directory is `path/to/repository/clone`, do the following:

```console
$ git clone https://github.com/unikraft/docs.git
$ cd path/to/repository/clone

$ cd docs/
$ git pull --rebase

$ cd content/en/community/hackathons/sessions/behind-scenes/

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ That is a hierarchy with:
* `apps/` storing folders for applications
* `libs/` storing folders for libraries

You would usually only have a single such hierarchy and add applications and / or libraries in their respective folders and use a single clone of the [`unikraft` repository].
You would usually only have a single such hierarchy and add applications and / or libraries in their respective folders and use a single clone of the [`unikraft` repository](https://github.com/unikraft/unikraft).
We create this hierarchy, if not having it created already, by using the commands:

```console
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
For this tutorial, the aim is to create a simple QEMU / KVM application that reads from a file and displays the contents to standard output.
A local directory is to be mounted as the root directory (`/`) inside the QEMU / KVM virtual machine.

Some parts of this tutorial were already discussed in [Session 01: Baby Steps](community/hackathons/sessions/baby-steps).

We will use both the manual approach (`make` and `qemu-system-x86_64` / `qemu-guest`) and `kraft` to configure, build and run the application.

#### Setup
Expand Down

0 comments on commit 444036e

Please sign in to comment.