I’m using Ubuntu 24.04 LTS with kernel version 6.14.0-32-generic. After experiencing a critical system crash, I attempted to analyze the resulting vmcore file using the crash utility. However, the required debug symbols package linux-image-6.14.0-32-generic-dbgsym is not available in the ddebs.ubuntu.com repository.
Steps to reproduce:
Add the ddebs.ubuntu.com repository and import the GPG key C8CAB6595FDFF622.
Run sudo apt update.
Attempt to install the package with: sudo apt install linux-image-6.14.0-32-generic-dbgsym
Observe the error: E: Unable to locate package linux-image-6.14.0-32-generic-dbgsym
Expected behavior: The debug symbols package should be available for this kernel version to enable proper crash dump analysis with crash.
Actual behavior: The package is missing, making it impossible to inspect vmcore files and diagnose the cause of the crash.
Suggested fix: Please publish the missing -dbgsym package for this kernel version in the ddebs.ubuntu.com repository so that crash analysis tools can function properly.
One of the main advantages to debuginfod is that
debugging information can be retrieved on-demand
for packages shipped with Ubuntu without the need
to manually install the debug symbol packages.
Title: Missing dbgsym package for linux-image-6.14.0-32-generic on Ubuntu 24.04
Description:
I’m currently using Ubuntu 24.04 LTS with kernel version 6.14.0-32-generic. After experiencing a system crash, I attempted to analyze the resulting vmcore using the crash utility. However, the required debug symbols are missing.
Specifically, the package linux-image-6.14.0-32-generic-dbgsym is not available in the official debug symbol repository (ddebs.ubuntu.com). I have verified that:
The GPG key C8CAB6595FDFF622 is correctly installed.
The repository is accessible and correctly configured.
The file /usr/lib/debug/lib/modules/6.14.0-32-generic/vmlinux does not exist.
Attempting to install the package via apt fails with “Unable to locate package”.
This prevents forensic analysis of the crash and is a serious limitation for debugging and system reliability assessments.
Expected behavior: The package linux-image-6.14.0-32-generic-dbgsym should be published and available for download via ddebs.ubuntu.com.
Actual behavior: The package is missing, and the crash utility cannot proceed without the vmlinux file with debug symbols.
Steps to reproduce:
Install Ubuntu 24.04 LTS with kernel 6.14.0-32-generic.
Configure ddebs.ubuntu.com and import the GPG key.
Attempt to install linux-image-6.14.0-32-generic-dbgsym.
Observe that the package is not found.
Suggested fix: Please publish the missing -dbgsym package for kernel 6.14.0-32-generic to enable proper crash analysis.
“While debuginfod is a helpful alternative for GDB and other tools, it does not provide the full vmlinux file required by crash. Therefore, the absence of the -dbgsym package still blocks kernel crash analysis.”