Skip to content

Instantly share code, notes, and snippets.

@ErykDarnowski
Last active April 30, 2023 11:19
Show Gist options
  • Save ErykDarnowski/2ce664a220e3f5a6304b17e92f80b00d to your computer and use it in GitHub Desktop.
Save ErykDarnowski/2ce664a220e3f5a6304b17e92f80b00d to your computer and use it in GitHub Desktop.
How to speed up `dnf` the default pkg manager used by Fedora Linux, simply append these lines to the `/etc/dnf/dnf.conf` config file. Remember to edit it with `sudo`!
max_parallel_downloads=10 # Increases amount of concurrent pkg downloads (you can also try tweaking this option)
fastestmirror=True # Picks the fastest mirror
defaultyes=True # Makes the defualt option in `[y/N]` menus 'Y' instead of 'N' (so you don't have to type 'y' every time)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment