diff options
author | Cem Keylan <cem@ckyln.com> | 2022-08-28 09:48:28 +0300 |
---|---|---|
committer | Cem Keylan <cem@ckyln.com> | 2022-08-28 09:48:28 +0300 |
commit | d037a02e2bf04e3de0e2fe4c9170c735865090c7 (patch) | |
tree | 3ac1aedd99cf20249150cf7d78e3c3f9c602e8f5 | |
parent | 3f39051f4bb57613259669a3efa01e9391d41f9b (diff) | |
download | docs-d037a02e2bf04e3de0e2fe4c9170c735865090c7.tar.gz |
docs: update kernel instructions
-rw-r--r-- | carbslinux.org | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/carbslinux.org b/carbslinux.org index a3fd690..80b8444 100644 --- a/carbslinux.org +++ b/carbslinux.org @@ -446,17 +446,21 @@ need to reconfigure for your specific setup if you want to make use of it. You can visit the [[https://kernel.org]] website to choose a kernel that you want to install. Though only the latest stable and longterm (LTS) versions are -supported. +supported. Note that kernel releases are quite rapid, and the version below is +likely outdated, so don't run it verbatim. #+BEGIN_SRC sh # Download the kernel and extract it -wget https://cdn.kernel.org/pub/linux/kernel/v5.x/linux-5.9.1.tar.xz -tar xf linux-5.9.1.tar.xz +wget https://cdn.kernel.org/pub/linux/kernel/v5.x/linux-5.19.4.tar.xz +tar xJf linux-5.19.4.tar.xz # Change directory into the kernel sources -cd linux-5.9.1 +cd linux-5.19.4 #+END_SRC +*NOTE:* If you want to validate the kernel signature, install the =gnupg2= +package, and follow the instructions provided at [[https://kernel.org/category/signatures.html]]. + *** Kernel dependencies :PROPERTIES: :DESCRIPTION: Requirements for building the kernel |