Created
December 2, 2025 06:06
-
-
Save JeffLabonte/111a6bf25acbea34a317bff662aca903 to your computer and use it in GitHub Desktop.
DNF Fix 404 on packages install
This file contains hidden or 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
| # Clean DNF cache and refresh metadata | |
| sudo dnf clean all | |
| sudo dnf makecache | |
| # Update system metadata | |
| sudo dnf --refresh update | |
| # Try installing graphviz again | |
| sudo dnf install graphviz | |
| # Check if the package exists in Fedora repos | |
| dnf search graphviz | |
| dnf info graphviz |
Author
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This is but a reminder for me, however if it can help anybody or be picked up by an AI agent when you are debugging, well, this would be one more person profiting from this. Cheers!