• 安装htop的坑


    CentOS 6.5中安装htop进程管理监控工具。

    下载最新版的HTOP http://sourceforge.net/projects/htop/ 如: wget http://sourceforge.net/projects/htop/files/latest/download 解压下载文件并且安装 如: tar -zxf htop-1.0.2.tar.gz cd htop-1.0.2 ./configure && make && make install (这时候如果没有安装gcc,会提示: checking for gcc... no  checking for cc... no  checking for cl.exe... no  configure: error: in `/root/htop-1.0.2':  configure: error: no acceptable C compiler found in $PATH See `config.log' for more details.

    请安装yum install -y gcc,接下来还会提示: configure: error: You may want to use --disable-unicode or install libncursesw.

    请安装yum install -y ncurses-devel) cd .. rm -rf htop-1.0.2*(这一步可做可不做啦,看你资源空间啦)

    安装htop的坑:
    1、上官网http://hisham.hm/htop/releases/下载最新的包
    2、解压缩:tar -zxvf htop-2.0.2.tar.gz;
    3、进入目标文件夹: cd htop-2.0.2
    4、./configure
    5、系统若出现以下提示,则需要安装c编译环境
    configure: error: no acceptable C compiler found in $PATH
    安装c编译环境:yum -y install gcc
    6、装完c编译环境后再进行./configure,若出现如下提示,则需要安装依赖包
    configure: error: You may want to use --disable-unicode or install libncursesw.
    yum install -y ncurses-devel
    7、接下来就是最后的安装环节:./configure&&make&&make install

  • 相关阅读:
    涉猎
    linq to sql中的自动缓存(对象跟踪)
    Java的起源和发展
    Java为什么需要保留基本数据类型
    JDK各版本新增的主要特性
    【转】整理:著名软件是使用什么语言写的?
    Struts2框架学习
    json格式
    sqlserver开窗函数改造样例
    说一下这次的求职经历。
  • 原文地址:https://www.cnblogs.com/li134655/p/8745920.html
Copyright © 2020-2023  润新知