From 2d661b3b5f82bdf3b41e78307c469f91776c8054 Mon Sep 17 00:00:00 2001 From: Pratham Patel Date: Sat, 24 Dec 2022 08:57:41 +0530 Subject: [PATCH] bluefeds: remove rpmfusion and enable EPEL for RHEL --- content/posts/bluefeds.md | 12 +++--------- 1 file changed, 3 insertions(+), 9 deletions(-) diff --git a/content/posts/bluefeds.md b/content/posts/bluefeds.md index ac7b058..926fa17 100644 --- a/content/posts/bluefeds.md +++ b/content/posts/bluefeds.md @@ -96,15 +96,9 @@ Exclude package `shim-aa64` (causes uboot to panic) ```bash echo -ne "\nmax_parallel_downloads=20\nlog_compress=True\nfastestmirror=False" | sudo tee -a /etc/dnf/dnf.conf -# RPM Fusion is not necessary for a server but handy if I switch to Fedora on Desktop (*laughs in Arch*) -#sudo dnf install https://download1.rpmfusion.org/free/fedora/rpmfusion-free-release-$(rpm -E %fedora).noarch.rpm -#sudo dnf install https://download1.rpmfusion.org/nonfree/fedora/rpmfusion-nonfree-release-$(rpm -E %fedora).noarch.rpm -# If GNOME is being used, update `core` too -#sudo dnf group update core - -# epel for CentOS -sudo dnf config-manager --set-enabled crb -sudo dnf install epel-release epel-next-release -y +# RHEL EPEL +sudo subscription-manager repos --enable codeready-builder-for-rhel-9-$(arch)-rpms +sudo dnf install https://dl.fedoraproject.org/pub/epel/epel-release-latest-9.noarch.rpm sudo dnf clean all ```