From ed6a196fbcb9ab072719faaf1a1fe66252c6b787 Mon Sep 17 00:00:00 2001 From: Pratham Patel Date: Tue, 4 Oct 2022 20:23:15 +0530 Subject: [PATCH] bluefeds: (optional) install RPM Fusion --- content/posts/bluefeds.md | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/content/posts/bluefeds.md b/content/posts/bluefeds.md index 3149000..a539e97 100644 --- a/content/posts/bluefeds.md +++ b/content/posts/bluefeds.md @@ -94,8 +94,14 @@ Parallel downloads: 20 (lol) Exclude package `shim-aa64` (causes uboot to panic) ```bash -echo -ne "\nmax_parallel_downloads=20\nlog_compress=True\nfastestmirror=False\nexcludepkgs=shim-aa64" | sudo tee -a /etc/dnf/dnf.conf +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 + sudo dnf clean all ```