Skip to content

Instantly share code, notes, and snippets.

@johanburati
Last active January 30, 2019 02:27
Show Gist options
  • Save johanburati/c9f1a2c030be8bc2b96ad9dce1a18769 to your computer and use it in GitHub Desktop.
Save johanburati/c9f1a2c030be8bc2b96ad9dce1a18769 to your computer and use it in GitHub Desktop.
Install systemtap on Centos 7
#!/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