Skip to content

Instantly share code, notes, and snippets.

@jarek-przygodzki
Created February 16, 2017 20:23
Show Gist options
  • Save jarek-przygodzki/7dd636d18c606fdc4c89b6d4f989730d to your computer and use it in GitHub Desktop.
Save jarek-przygodzki/7dd636d18c606fdc4c89b6d4f989730d to your computer and use it in GitHub Desktop.
CentOS 7 - How to install kernel-debuginfo
yum --enablerepo=base-debuginfo install -y kernel-debuginfo-$(uname -r)
@JokerDevops
Copy link

How do I get other versions of the DebugInfo RPM package?

@dcui
Copy link

dcui commented Jan 23, 2021

yum install --enablerepo=base-debuginfo kernel-devel-$(uname -r) kernel-debuginfo-$(uname -r) kernel-debuginfo-common-$(uname -m)-$(uname -r)

Thanks a lot! This works for me!

@jbovet
Copy link

jbovet commented Aug 11, 2021

yum install --enablerepo=base-debuginfo kernel-devel-$(uname -r) kernel-debuginfo-$(uname -r) kernel-debuginfo-common-$(uname -m)-$(uname -r)

thanks!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment