From 328a73b5ba3b92a2f23623c0697320d77f8c884a Mon Sep 17 00:00:00 2001 From: Petr Bokoc Date: Nov 07 2019 12:49:23 +0000 Subject: Move a note box in DNF System Upgrade to a better location --- diff --git a/modules/ROOT/pages/dnf-system-upgrade.adoc b/modules/ROOT/pages/dnf-system-upgrade.adoc index dd3f8a5..7670eaa 100644 --- a/modules/ROOT/pages/dnf-system-upgrade.adoc +++ b/modules/ROOT/pages/dnf-system-upgrade.adoc @@ -46,7 +46,7 @@ sudo dnf install dnf-plugin-system-upgrade + [source,bash,subs="attributes"] ---- -sudo dnf system-upgrade download --refresh --releasever={MAJOROSVER} +sudo dnf system-upgrade download --refresh --releasever={MAJOROSVER} ---- + Change the `--releasever=` number if you want to upgrade to a different release. @@ -135,6 +135,13 @@ You can see duplicate packages (packages with multiple versions installed) with: sudo dnf repoquery --duplicated ---- +[NOTE] +==== +Run `sudo dnf update` first, as this list is only valid if you have a fully updated system. +Otherwise, you will see a list of installed packages that are no longer in the repositories because an update is available. +This list may also contain packages installed from third-party repositories who may not have updated their repositories. +==== + For packages from the official repositories, the latest version should be installed. However, some packages that are still on your system may no longer be in the repositories. To see a list of these packages do: @@ -151,13 +158,6 @@ If you see a package you do not need, or use, you can remove it with: sudo dnf remove $(dnf repoquery --extras --exclude=kernel,kernel-\*) ---- -[NOTE] -==== -Run `sudo dnf update` first, as this list is only valid if you have a fully updated system. -Otherwise, you will see a list of installed packages that are no longer in the repositories because an update is available. -This list may also contain packages installed from third-party repositories who may not have updated their repositories. -==== - You can safely remove packages no longer in use with: [source,bash]