Created
June 8, 2019 04:50
-
-
Save vwbusguy/41595b50f6ff3e46a5951c844eb0d3a3 to your computer and use it in GitHub Desktop.
Remove duplicates after a botched dnf upgrade
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Use at your own risk! You should try `dnf remove --duplicates` first. Use this as a last resort. | |
sudo rpm -e --nodeps $(sudo dnf check 2>/dev/null | grep duplicate | cut -f1 -d' ') |
worked for me, thanks mate :)
Awesome! Thanks for the feedback! 😃
I think this fixed my system after it logged out mid-upgrade and broke things, thanks
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
worked for me, thanks mate :)