Skip to content

Instantly share code, notes, and snippets.

@JeffLabonte
Created December 2, 2025 06:06
Show Gist options
  • Select an option

  • Save JeffLabonte/111a6bf25acbea34a317bff662aca903 to your computer and use it in GitHub Desktop.

Select an option

Save JeffLabonte/111a6bf25acbea34a317bff662aca903 to your computer and use it in GitHub Desktop.
DNF Fix 404 on packages install
# 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
@JeffLabonte
Copy link
Author

JeffLabonte commented Dec 2, 2025

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!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment