LinuxCommandLibrary

dnf-download

TLDR

Download package to current directory

$ dnf download [package]
copy
Download to specific directory
$ dnf download [package] --destdir [path/to/directory]
copy
Print URL instead of downloading
$ dnf download --url [package]
copy

SYNOPSIS

dnf download [options] package

DESCRIPTION

dnf download downloads RPM packages from DNF repositories without installing them. Part of dnf-plugins-core.
Useful for obtaining packages for offline installation or inspection.

PARAMETERS

--destdir dir

Download destination directory
--url
Print URL instead of downloading
--source
Download source RPM
--resolve
Download dependencies too

CAVEATS

Requires dnf-plugins-core. Destination directory must exist when using --destdir. Downloaded packages are not automatically installed.

SEE ALSO

dnf(8), rpm(8), yumdownloader(1)

Copied to clipboard