蜗牛789
主机测评与优惠

Ubuntu/CentOS系统镜像安装Systemtap的方法记录

因为有些运维的需要我们要在服务器中安装Systemtap,在这篇文章中蜗牛记录如何在Ubuntu/CentOS系统镜像安装Systemtap的方法记录。如果我们也有需要的话可以参考。

第一、Ubuntu

添加Ubuntu ddebs源文件,在命令行粘贴如下命令:

codename=$(lsb_release -c | awk \'{print $2}\’)
sudo tee /etc/apt/sources.list.d/ddebs.list << EOF
deb http://ddebs.ubuntu.com/ ${codename} main restricted universe multiverse
deb http://ddebs.ubuntu.com/ ${codename}-security main restricted universe multiverse
deb http://ddebs.ubuntu.com/ ${codename}-updates main restricted universe multiverse
deb http://ddebs.ubuntu.com/ ${codename}-proposed main restricted universe multiverse
EOF

其中在Ubuntu 11.10中把universe,multiverse删除,改为:

codename=$(lsb_release -c | awk \'{print $2}\’)
sudo tee /etc/apt/sources.list.d/ddebs.list << EOF
deb http://ddebs.ubuntu.com/ ${codename} main restricted
deb http://ddebs.ubuntu.com/ ${codename}-security main restricted
deb http://ddebs.ubuntu.com/ ${codename}-updates main restricted
deb http://ddebs.ubuntu.com/ ${codename}-proposed main restricted
EOF

Ubuntu Key认证:

sudo apt-key adv –keyserver keyserver.ubuntu.com –recv-keys ECDCAD72428D7C01

更新索引:

sudo apt-get update -y

安装Systemtap:

sudo apt-get install -y systemtap gcc

安装dbgsym:

sudo apt-get install linux-image-$(uname -r)-dbgsym

验证Systemtap是否安装成功,正确显示hello world即安装成功:

stap -e \’probe kernel.function(\”sys_open\”) {log(\”hello world\”) exit()}\’

第二、CentOS

安装systemtap

yum install systemtap kernel-devel

下载debuginfo:

先查看系统内核版本:

uname -rm

到http://debuginfo.centos.org/ 下载对应的RPM包,并安装:

rpm -Uhv kernel-debuginfo-*rpm

验证Systemtap是否安装成功,正确显示hello world即安装成功:

stap -e \’probe kernel.function(\”sys_open\”) {log(\”hello world\”) exit()}\’

参考文章:https://docs.ucloud.cn/uhost/public/systemtap

About 蜗牛

【声明】:本博客不参与任何交易,也非中介,仅记录个人感兴趣的主机测评结果和优惠活动,内容均不作直接、间接、法定、约定的保证。访问本博客请务必遵守有关互联网的相关法律、规定与规则。一旦您访问本博客,即表示您已经知晓并接受了此声明通告。





评论 抢沙发

  • 昵称 (必填)
  • 邮箱 (必填)
  • 网址