From 6b19b4bbe4fca162f2c63984df70ec2e9e3b1464 Mon Sep 17 00:00:00 2001 From: Gregory Lee Bartholomew Date: Mon, 18 Mar 2024 13:49:11 +0000 Subject: [PATCH] Update modules/ROOT/pages/kernel-installing-from-koji.adoc In the typical case, users probably don't want the debug kernels. Also, someone reported that the uki packages crashed their system by filling their ESP: https://discussion.fedoraproject.org/t/efi-partition-full/108669/31 --- modules/ROOT/pages/kernel-installing-from-koji.adoc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/modules/ROOT/pages/kernel-installing-from-koji.adoc b/modules/ROOT/pages/kernel-installing-from-koji.adoc index d984113..dbf31a3 100644 --- a/modules/ROOT/pages/kernel-installing-from-koji.adoc +++ b/modules/ROOT/pages/kernel-installing-from-koji.adoc @@ -56,7 +56,8 @@ This assumes we are working with the `x86_64` architecture. cd $(mktemp -d) \ && koji download-build --arch=x86_64 --arch=noarch kernel-n.nn.nn-nnn.fcnn \ - && sudo dnf install * + && rm *debug*.rpm *uki*.rpm \ + && sudo dnf install This eliminates the need to clean up after installation and the risk of installing unwanted rpms accidentally.