On 2020-04-22 13:32, Roger Heflin wrote:
I am guessing when it hung and you ctrl-c'ed
It did nto responce to numerous Ctrl-C's. I had to ps and kill.
it that some packages were installed but the cleanup's were not done yet (all installs are done and then cleanups and other stuff). Some weird things happen when dnf gets aborted the wrong time.
This command would remove the dups (assuming you can get any of them to run). dnf remove --duplicates
# dnf remove --duplicates created by dnf config-manager from https://brav 14 kB/s | 3.3 kB 00:00 Fedora Modular 30 - x86_64 34 kB/s | 16 kB 00:00 Fedora Modular 30 - x86_64 - Updates 2.5 kB/s | 14 kB 00:05 Fedora 30 - x86_64 - Updates 31 kB/s | 15 kB 00:00 Fedora 30 - x86_64 37 kB/s | 17 kB 00:00 Bus error (core dumped)
this would show them: dnf repoquery --duplicate
you forgot the "s" at the end
It gave me a YUGE list, but no core dump
and this will show other dependency issue: dnf repoquery --unsatisfied
Another YUGE list. Her is the first part of it:
# dnf repoquery --unsatisfied Last metadata expiration check: 0:01:25 ago on Wed 22 Apr 2020 01:56:58 PM PDT.
Problem 1: cannot install both ImageMagick-libs-1:6.9.10.75-1.fc30.x86_64 and ImageMagick-libs-1:6.9.10.67-1.fc30.x86_64 - package ImageMagick-1:6.9.10.67-1.fc30.x86_64 requires ImageMagick-libs(x86-64) = 1:6.9.10.67-1.fc30, but none of the providers can be installed - problem with installed package ImageMagick-libs-1:6.9.10.75-1.fc30.x86_64 - problem with installed package ImageMagick-1:6.9.10.67-1.fc30.x86_64 Problem 2: package PackageKit-gtk3-module-1.1.12-5.fc30.x86_64 requires PackageKit-glib(x86-64) = 1.1.12-5.fc30, but none of the providers can be installed - cannot install both PackageKit-glib-1.1.12-5.fc30.x86_64 and PackageKit-glib-1.1.12-8.fc30.x86_64 - problem with installed package PackageKit-gtk3-module-1.1.12-5.fc30.x86_64 - problem with installed package PackageKit-glib-1.1.12-8.fc30.x86_64 Problem 3: cannot install both abrt-gui-libs-2.12.2-1.fc30.x86_64 and abrt-gui-libs-2.14.0-1.fc30.x86_64
Thank you for the help with this! -T