欢迎来到天天文库
浏览记录
ID:8850133
大小:55.00 KB
页数:2页
时间:2018-04-09
《给centos安装一个类似360流量监控的软件》由会员上传分享,免费在线阅读,更多相关内容在应用文档-天天文库。
1、给centos安装一个类似360流量监控的软件 linux实时显示网卡流量的工具nload安装过程:#cd/home/user/下载/(注意:user是你当前登录的用户名)#wget http://www.roland-riegel.de/nload/nload-0.7.2.tar.gz ;#tar-zxv-f nload-0.7.2.tar.gz#cdnload-0.7.2#./configure检测程序生成makefile生成文件(如前面的日志所说,./configure命令的前提是你的系统安装
2、了gcc,但是仅仅安装gcc是不够的,执行该命令会出现错误:configure:2581:error:C++compilercannotcreateexecutables google了一下,结果是:Youneedtoinstallc++onyourcomputer.evenifyouinstalledgccthatdoesn’tautomaticallyinstallg++.TrytorunoneofthefollowingcommandsthatfityourLinuxdistributionb
3、est:)yuminstallgcc-c++orapt-getinstallgcc-c++ifapt-getdoesn’tlikethecommandtryapt-getinstallg++意思是说:你需要在你的电脑上安装一个C++的编译器,即使你之前已经安装了gcc,程序在编译时也不会自动运行g++,因此请根据你的系统选择下面合适的语句安装c++的编译器因为我用的是centos,所以选择了yuminstallgcc-c++,执行该命令#yuminstallgcc-c++重新检测#./configu
4、re又出现一个问题:configure:error:ncurseslibraryordevelopmentfilesnotfound.ncursesisrequiredfornload.意思是说:安装nload还需要安装ncurses于是:yum-yinstallncurses*再次重新检测:#./configure(这回没有出问题了,继续)#make#makeinstall(安装完成)下面可以直接执行#nload会出现如下图所示的界面(由于本人是在centos下写的这篇日志,而由于这个令我十分dt
5、的centos的缘故,我暂时还没有找到如何截屏的软件,所以这张图片是我在网上找的,但是本人的系统里运行也是这个结果,希望读者不要见怪)参考资料:http://www.2cto.com/os/201206/136637.htmlhttp://andrey.mikhalchuk.com/2008/04/17/solving-configure-error-c-compiler-cannot-create-executables-problem.htmlhttp://www.f5ha.com/2010/0
6、827/3OMDAwMDAwMDM3OQ.html
此文档下载收益归作者所有