centos7 安装 debuginfo

作者: 采菊东篱下 | 来源:发表于2017-10-13 14:36 被阅读259次

    阿里云的centos机器和镜像都没有提供debuginfo的源,而且默认开通的centos并没有提供yum的repo配置文件。这样的话很多的性能调试工具,比如systemtap之类的工具基本没办法使用。

    1. 创建配置文件
    [root@iZbp1b0n9ivu1hyf17tgsfZ ~]# cat /etc/yum.repos.d/CentOS-Debug.repo
    
    #Debug Info
    [debug]
    name=CentOS-$releasever - DebugInfo
    baseurl=http://debuginfo.centos.org/$releasever/$basearch/
    gpgcheck=0
    enabled=1
    protect=1
    priority=1
    
    1. 安装kernel-debuginfo
    yum --enablerepo=base-debug install -y kernel-debuginfo-$(uname -r)
    
    1. 安装glibc
    debuginfo-install glibc
    

    相关文章

      网友评论

        本文标题:centos7 安装 debuginfo

        本文链接:https://www.haomeiwen.com/subject/qyyzyxtx.html