When I invoked gdb via KDE’s Crashed Processes Viewer to generate a bt of a crash by an .AppImage file, it stated:
Missing separate debuginfo for the main executable file.
Try: dnf --enablerepo='*debug*' install /usr/lib/debug/.build-id/2c/d6d9e84e87bcb6de1d1e90d695b064e6b7368f
Missing debuginfo packages are common, and usually remdiated by a dnf install. However, it appears to be advising that I permanently enable a local repository merely for this purpose.
Is my estimate correct? If so, should I manually remove it afterward?
PS /home/RokeJulianLockhart> sudo dnf --enablerepo='*debug*' install /usr/lib/debug/.build-id/2c/d6d9e84e87bcb6de1d1e90d695b064e6b7368f
[sudo] password for RokeJulianLockhart:
Updating and loading repositories:
Repositories loaded.
Failed to resolve the transaction:
No match for argument: /usr/lib/debug/.build-id/2c/d6d9e84e87bcb6de1d1e90d695b064e6b7368f
You can try to add to command line:
--skip-unavailable to skip unavailable packages
This enables the repos only for this command, its not persistant.
So there is nothing left enabled. But you might want to remove the debuginfo packages that were installed.
Usually, it requests that I install a *.-debuginfo package from the existing repositories, rather than a hash path, so perhaps it just doesn’t cope with traces for .AppImages?