Created
October 12, 2018 07:05
-
-
Save osamu/6161584a5fef79c5479e9be97cce1187 to your computer and use it in GitHub Desktop.
STAP
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
Ubuntu 14.04 | |
SystemTap | |
apt-get install gcc linux-headers-$(uname -r) | |
https://wiki.ubuntu.com/Debug%20Symbol%20Packages | |
$ wget https://sourceware.org/systemtap/ftp/releases/systemtap-3.0.tar.gz | |
make install | |
apt-get install linux-image-$(uname -r)-dbgsym | |
sudo stap -e 'probe begin { println("Hello, World!") exit() }' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment