Skip to content

Commit

Permalink
fix: multiple typos
Browse files Browse the repository at this point in the history
Signed-off-by: RedbeanGit <dubois.julien.mail@gmail.com>
  • Loading branch information
RedbeanGit committed Oct 30, 2023
1 parent 4a114c7 commit 6645937
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
6 changes: 3 additions & 3 deletions pages/docs/user-guide/build-initramfs.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ Requirements:

## Introduction

Lambdo uses custom initramfs builded from Docker images. You can build it by
Lambdo uses custom initramfs built from Docker images. You can build it by
yourself or use prebuilt one.

## Lambdo initramfs structure
Expand Down Expand Up @@ -75,9 +75,9 @@ exit
poweroff -f
```

> **Note 1:** Your init script must be executable.
> **Note 1:** Your init script must have execution rights.
> **Note 2:** Your init script must start agent process.
> **Note 2:** Your init script must start agent process to work with Lambdo.
## Write configuration file

Expand Down
12 changes: 6 additions & 6 deletions pages/docs/user-guide/compile-kernel.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -9,28 +9,28 @@ kernel.

```bash copy filename="bash"
sudo apt update
sudo apt install git build-essential bc flex bison
sudo apt install git build-essential bc flex bison curl tar
```

#### Fedora/RHEL/CentOS

```bash copy filename="bash"
sudo dnf install git gcc make xz bc flex bison diffutils
sudo dnf install git gcc make xz bc flex bison diffutils curl tar
```

#### Arch Linux

```bash copy filename="bash"
sudo pacman -Syu
sudo pacman -S git gcc make xz bc flex bison diffutils
sudo pacman -Syu git gcc make xz bc flex bison diffutils curl tar
```

## Build the kernel

Clone the Linux kernel official repository:
Download and extract the kernel source:

```bash copy filename="bash"
git clone https://github.com/torvalds/linux.git
curl -L https://cdn.kernel.org/pub/linux/kernel/v6.x/linux-6.5.9.tar.xz --output linux-6.5.9.tar.xz
tar xf linux-6.5.9.tar.xz --directory linux
```

Generate the default configuration:
Expand Down

0 comments on commit 6645937

Please sign in to comment.