Centos7安装gcc时Requires: kernel-headers

今个在服务器中遇到 make: g++: Command not found 问题,于是查看一下 gcc 的版本并安装:

yum search "gcc-c++"
yum install "gcc-c++.x86_64" -y

但是最后还是报错:

Error: Package: glibc-headers-2.17-292.el7.x86_64 (base)
           Requires: kernel-headers
Error: Package: glibc-headers-2.17-292.el7.x86_64 (base)
           Requires: kernel-headers >= 2.2.1
 You could try using --skip-broken to work around the problem
 You could try running: rpm -Va --nofiles --nodigest

找了一大圈,最后还是在 stackoverflow 上找到解决方法:

yum install kernel-headers --disableexcludes=all

最后:善用谷歌,你好我好大家好,省时省力还省时间。

更多好玩见这里 >>技术杂谈<< & 更多精彩文章见这里 >>我的学习小站<<

你可能感兴趣的:(Linux,Centos7,kernel-headers)