在QQ闲鱼上卖课程违法吗外挂违法吗?

安全检查中...
请打开浏览器的javascript,然后刷新浏览器
< 浏览器安全检查中...
还剩 5 秒&Linux(48)
& & & & 在用gdb调试出现错误:Missing separate debuginfos, use: debuginfo-install glibc-2.12-1.107.el6.i686
解决方法:
1、编辑/创建文件vi /etc/yum.repo.d/CentOS-Debuginfo.repo内容如下
name=CentOS-6 - Debuginfo
baseurl=http://debuginfo.centos.org/6/$basearch/
gpgcheck=1
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-Debug-6
修改enabled为1
2、通过命令安装glibc
[root@localhost c]# debuginfo-install glibc
Loaded plugins: fastestmirror, refresh-packagekit
Loading mirror speeds from cached hostfile
* updates:
Checking for new repos for mirrors
--& Running transaction check
---& Package glibc-debuginfo.i686 0:2.12-1.107.el6 will be installed
--& Processing Dependency: glibc-debuginfo-common = 2.12-1.107.el6 for package: glibc-debuginfo-2.12-1.107.el6.i686
---& Package nss-softokn-debuginfo.i686 0:3.12.9-11.el6 will be installed
---& Package yum-plugin-auto-update-debug-info.noarch 0:1.1.30-30.el6 will be installed
--& Running transaction check
---& Package glibc-debuginfo-common.i686 0:2.12-1.107.el6 will be installed
--& Finished Dependency Resolution
Dependencies Resolved
====================================================================================================================================
Repository
====================================================================================================================================
Installing:
glibc-debuginfo
2.12-1.107.el6
nss-softokn-debuginfo
3.12.9-11.el6
yum-plugin-auto-update-debug-info
1.1.30-30.el6
Installing for dependencies:
glibc-debuginfo-common
2.12-1.107.el6
Transaction Summary
====================================================================================================================================
4 Package(s)
Total size: 19 M
Total download size: 7.5 M
Installed size: 93 M
Is this ok [y/N]: y
Downloading Packages:
glibc-debuginfo-common-2.12-1.107.el6.i686.rpm
Running rpm_check_debug
Running Transaction Test
Transaction Test Succeeded
Running Transaction
Installing : glibc-debuginfo-common-2.12-1.107.el6.i686
Installing : glibc-debuginfo-2.12-1.107.el6.i686
Installing : yum-plugin-auto-update-debug-info-1.1.30-30.el6.noarch
Installing : nss-softokn-debuginfo-3.12.9-11.el6.i686
: glibc-debuginfo-common-2.12-1.107.el6.i686
: nss-softokn-debuginfo-3.12.9-11.el6.i686
: glibc-debuginfo-2.12-1.107.el6.i686
: yum-plugin-auto-update-debug-info-1.1.30-30.el6.noarch
Installed:
glibc-debuginfo.i686 0:2.12-1.107.el6
nss-softokn-debuginfo.i686 0:3.12.9-11.el6
yum-plugin-auto-update-debug-info.noarch 0:1.1.30-30.el6
Dependency Installed:
glibc-debuginfo-common.i686 0:2.12-1.107.el6
&&相关文章推荐
* 以上用户言论只代表其个人观点,不代表CSDN网站的观点或立场
访问:60811次
排名:千里之外
原创:21篇
转载:62篇
(1)(1)(1)(1)(4)(4)(1)(3)(1)(14)(6)(4)(14)(7)(7)(4)(2)(4)(8)(2)(8)[Gnu]Centos7 解决 gdb 提示 Missing separate debuginfos - farwish - 博客园
Centos7 上使用gdb:
$ run /home/www/2.php
运行完 run,后面跟着很长的提示:
Missing separate debuginfos, use: debuginfo-install cyrus-sasl-lib-2.1.26-17.el7.x86_64 glibc-2.17-55.el7_0.3.x86_64 keyutils-libs-1.5.8-3.el7.x86_64 krb5-libs-1.11.3-49.el7.x86_64 libcom_err-1.42.9-4.el7.x86_64 libcurl-7.29.0-19.el7.x86_64 libidn-1.28-3.el7.x86_64 libjpeg-turbo-1.2.90-5.el7.x86_64 libmcrypt-2.5.8-4.el7.art.x86_64 libpng-1.5.13-5.el7.x86_64 libselinux-2.2.2-6.el7.x86_64 libssh2-1.4.3-8.el7.x86_64 libxml2-2.9.1-5.el7_0.1.x86_64 nspr-4.10.6-1.el7_0.x86_64 nss-3.16.2.3-2.el7_0.x86_64 nss-softokn-freebl-3.16.2.3-1.el7_0.x86_64 nss-util-3.16.2.3-1.el7_0.x86_64 openldap-2.4.39-3.el7.x86_64 openssl-libs-1.0.1e-34.el7_0.6.x86_64 pcre-8.32-12.el7.x86_64 xz-libs-5.1.2-8alpha.el7.x86_64 zlib-1.2.7-13.el7.x86_64
去除上面的提示,只要按说明用 `debuginfo-install` 安装后面一系列包.
( 没有 `debuginfo-install` 命令的话,先 `yum install yum-utils` 进行安装. )
假如遇到提示 Invalid Gig key from&file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7
那么只要设置好下面文件中的两项,它们是关键:
$ vi /etc/yum.repos.d/CentOS-Debuginfo.repo
gpgcheck=0  # 不检测签名,
enabled=1   &# 支持yum源
然后可以继续安装依赖包了:
$ sudo debuginfo-install -y cyrus-sasl-lib-2.1.26-17.el7.x86_64 glibc-2.17-55.el7_0.3.x86_64 keyutils-libs-1.5.8-3.el7.x86_64 krb5-libs-1.11.3-49.el7.x86_64 libcom_err-1.42.9-4.el7.x86_64 libcurl-7.29.0-19.el7.x86_64 libidn-1.28-3.el7.x86_64 libjpeg-turbo-1.2.90-5.el7.x86_64 libmcrypt-2.5.8-4.el7.art.x86_64 libpng-1.5.13-5.el7.x86_64 libselinux-2.2.2-6.el7.x86_64 libssh2-1.4.3-8.el7.x86_64 libxml2-2.9.1-5.el7_0.1.x86_64 nspr-4.10.6-1.el7_0.x86_64 nss-3.16.2.3-2.el7_0.x86_64 nss-softokn-freebl-3.16.2.3-1.el7_0.x86_64 nss-util-3.16.2.3-1.el7_0.x86_64 openldap-2.4.39-3.el7.x86_64 openssl-libs-1.0.1e-34.el7_0.6.x86_64 pcre-8.32-12.el7.x86_64 xz-libs-5.1.2-8alpha.el7.x86_64 zlib-1.2.7-13.el7.x86_64
假如提示要安装 nss-softokn,就继续安装:
$ sudo yum install -y nss-softokn nss-softokn-debuginfo --nogpgcheck --skip-broken
nss-softokn-debuginfo 是给 nss-softokn 提供debug信息的包,--nogpgcheck 忽略签名检查,--skip-broken 跳过有依赖问题的包.
@黑眼诗人 &&2014年7月 Linux/Unix社区大版内专家分月排行榜第三2003年2月 C/C++大版内专家分月排行榜第三
匿名用户不能发表回复!|
每天回帖即可获得10分可用分!小技巧:
你还可以输入10000个字符
(Ctrl+Enter)
请遵守CSDN,不得违反国家法律法规。
转载文章请注明出自“CSDN(www.csdn.net)”。如是商业用途请联系原作者。

我要回帖

更多关于 买卖承兑汇票违法吗 的文章

 

随机推荐