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 ```