To install only the minimal set of debuginfo packages use the output of [
dnf debuginfo-install
] (without actually installing anything) to get the names of debuginfo packages and their respective repositories. Then construct the install command according to the following example:
$ dnf --enablerepo=fedora-debuginfo --enablerepo=updates-debuginfo install <pkg-spec>-debuginfo
O efeito das opções --enablerepo=
é temporário. Depois que o comando for concluído, os repositórios debuginfo não serão habilitados. Por outro lado, dnf
não esquece imediatamente tudo sobre os repositórios debuginfo desativados:
================================================================================
Package Arch Version Repository Size
================================================================================
systemd-debuginfo x86_64 238-7.fc28.1 @fedora-debuginfo 27 M
systemd-debugsource x86_64 238-7.fc28.1 @fedora-debuginfo 15 M
Quando systemd
é atualizado, systemd-debuginfo
será removido? Ou será que systemd-debuginfo
será atualizado de alguma forma do repo desativado ? Ou dnf
apenas falhará? O que vai acontecer?