Created
February 16, 2017 20:23
-
-
Save jarek-przygodzki/7dd636d18c606fdc4c89b6d4f989730d to your computer and use it in GitHub Desktop.
CentOS 7 - How to install kernel-debuginfo
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
yum --enablerepo=base-debuginfo install -y kernel-debuginfo-$(uname -r) |
How do I get other versions of the DebugInfo RPM package?
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!
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
yum install --enablerepo=base-debuginfo kernel-devel-$(uname -r) kernel-debuginfo-$(uname -r) kernel-debuginfo-common-$(uname -m)-$(uname -r)