Update README.md

Signed-off-by: David Rotermund <54365609+davrot@users.noreply.github.com>
This commit is contained in:
David Rotermund 2024-03-09 04:35:27 +01:00 committed by GitHub
parent 6015ab6cc2
commit a0b72cde48
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -56,3 +56,27 @@ No match for argument: darktable-4.4.2-1.fc37.x86_64
Error: No packages marked for reinstall. 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
```