Skip to content

Instantly share code, notes, and snippets.

@jkeam
Last active April 26, 2026 22:28
Show Gist options
  • Select an option

  • Save jkeam/839a3dcdd2b22af0c5e784ca24623816 to your computer and use it in GitHub Desktop.

Select an option

Save jkeam/839a3dcdd2b22af0c5e784ca24623816 to your computer and use it in GitHub Desktop.
Upgrade Fedora
#!/bin/bash
# update
sudo dnf upgrade --refresh
sudo dnf system-upgrade download --releasever=44 --allowerasing
sudo dnf5 offline reboot
# cleanup
sudo dnf5 offline clean
sudo dnf install remove-retired-packages
# remove-retired-packages
sudo symlinks -r /usr | grep dangling
sudo symlinks -r -d /usr
# Docs
# https://docs.fedoraproject.org/en-US/quick-docs/upgrading-fedora-offline/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment