Last active
January 30, 2019 02:27
-
-
Save johanburati/c9f1a2c030be8bc2b96ad9dce1a18769 to your computer and use it in GitHub Desktop.
Install systemtap on Centos 7
This file contains 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
#!/bin/sh | |
# Install systemtap on Centos 7 | |
sudo yum install systemtap systemtap-runtime -y | |
sudo yum install kernel-debuginfo kernel-debuginfo-common --enablerepo=base-debuginfo -y | |
sudo yum install yum-utils -y | |
sudo debuginfo-install kernel-$(uname -r) -y | |
sudo yum install kernel-devel-$(uname -r) -y | |
sudo yum install kernel-debuginfo-$(uname -r) -y | |
sudo yum install kernel-debuginfo-common-$(uname -m)-$(uname -r) -y |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment