I want to update my system (Fedora) with Yum, but I want to use aria2
to download the packages. There was something in pacman
that you could use to get the update URLs (and put all links in a file.) Then, aria2
could use this file as an input list for download. What is the Fedora equivalent?
Asked
Active
Viewed 2.5k times
18

Jeff Schaller
- 67,283
- 35
- 116
- 255
1 Answers
35
Use yumdownloader
. It's in the yum-utils
package.
To get URLs for packages:
yumdownloader --urls mariadb-server
To actually download a package and all its dependencies:
yumdownloader --resolve mariadb-server
You don't really need aria2 at all.

Michael Hampton
- 8,828