From a0b72cde48901aeb290386285e5cc0eae3fbdab4 Mon Sep 17 00:00:00 2001 From: David Rotermund <54365609+davrot@users.noreply.github.com> Date: Sat, 9 Mar 2024 04:35:27 +0100 Subject: [PATCH] Update README.md Signed-off-by: David Rotermund <54365609+davrot@users.noreply.github.com> --- admin/linux/fedora_dnf/README.md | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/admin/linux/fedora_dnf/README.md b/admin/linux/fedora_dnf/README.md index 09dba36..bd531ca 100644 --- a/admin/linux/fedora_dnf/README.md +++ b/admin/linux/fedora_dnf/README.md @@ -56,3 +56,27 @@ No match for argument: darktable-4.4.2-1.fc37.x86_64 Error: No packages marked for reinstall. ``` +Okay, maybe we need to delete the old package manually: + +```shell +cat error.log | awk -F 'conflicts with file from package' '{print $2}' | sort -u | awk 'NF' +``` + +The problem lies with: + +```shell + darktable-tools-noise-4.0.1-2.fc37.x86_64 +``` + +We will remove it carefully(!!!). Don't use -y and check the list if something important is on the to-be-deleted list: + +```shell +dnf remove --noautoremove darktable-tools-noise-4.0.1-2.fc37.x86_64 +``` +Now we should be able to do this: + +```shell +dnf -y remove --duplicates +``` + +