安装chkrootkit 报 /usr/bin/ld: cannot find -lc出错

1、环境:系统centos x64 6.6

2、软件:安装chkrootkit出错

[root@tomcat chkrootkit-0.50]# make sense


cc -DHAVE_LASTLOG_H -o chklastlog chklastlog.c
cc -DHAVE_LASTLOG_H -o chkwtmp chkwtmp.c
cc -DHAVE_LASTLOG_H   -D_FILE_OFFSET_BITS=64 -o ifpromisc ifpromisc.c
cc  -o chkproc chkproc.c
cc  -o chkdirs chkdirs.c
cc  -o check_wtmpx check_wtmpx.c
cc -static  -o strings-static strings.c
/usr/bin/ld: cannot find -lc
collect2: ld returned 1 exit status
make: *** [strings-static] Error 1

3、检查系统相关文件是否存在,经查存在。

[root@tomcat chkrootkit-0.50]# find / -name libc.so
/usr/lib64/libc.so
/usr/lib/libc.so

4、安装相关软件包

[root@tomcat chkrootkit-0.50]# yum install glibc-static
5、再次编译make sense

 chkrootkit-0.50]# make sense
cc -static  -o strings-static strings.c
cc  -o chkutmp chkutmp.c

参考:http://tchuairen.blog.51cto.com/3848118/1559436

你可能感兴趣的:(安装chkrootkit)