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/learning-paths/servers-and-cloud-computing/kernel-build/how-to-2.md
+7-7Lines changed: 7 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -6,13 +6,13 @@ weight: 3
6
6
layout: learningpathall
7
7
---
8
8
9
-
This section covers standard kernel build workflows for direct installation or downstream packaging.
10
-
9
+
## Standard kernel workflows
11
10
11
+
Standard kernel builds produce general-purpose kernels suitable for production deployment, development testing, or distribution packaging. These workflows let you build specific versions, install them directly, or package them for later use.
12
12
13
-
## Kernel Build only
13
+
This section covers standard kernel build workflows for direct installation or downstream packaging.
14
14
15
-
{{% notice Note %}}
15
+
{{% notice Note on kernel build only %}}
16
16
The kernel versions given in the \--tags flag, such as `v6.18.1` in the first example below, are arbitrary (but valid) Linux kernel versions. If you prefer to use kernel versions different from the examples, you can replace them with your preferred versions.
17
17
18
18
Kernel.org hosts all official Linux kernel releases: https://www.kernel.org/. Browse and select any stable or mainline release version.
You can use tab completion or `ls /tmp/kernel_plan_*.sh` to find the exact filename.
75
75
76
-
## Kernel Install
76
+
## Install kernel
77
77
78
78
{{% notice Note %}}
79
79
The following sections demonstrate build and install scenarios.
@@ -119,7 +119,7 @@ This approach is useful when you want to:
119
119
- Compare different kernel versions
120
120
- Prepare multiple kernels for testing
121
121
- Build a library of kernel versions for deployment
122
-
-
122
+
123
123
To build two kernel versions in parallel, run the following command (it will build both `v6.18.1` and `v6.19-rc1`, but only install `v6.18.1`):
124
124
125
125
```bash
@@ -185,7 +185,7 @@ To install from previously built Debian packages (`.deb` files):
185
185
186
186
This installs the `.deb` artifacts produced earlier via `--include-bindeb-pkg`, expecting files such as `linux-image-*` and `linux-headers-*` to exist in the source directory.
0 commit comments