CentOS6.5升级autoconf版本 Autoconf version 2.64 or higher is required

安装软件时提示说需要Autoconf 2.64或更高的版本

[[email protected] twemproxy]# autoconf

configure.ac:8: error: Autoconf version 2.64 or higher is required

configure.ac:8: the top level

autom4te: /usr/bin/m4 failed with exit status: 63

查询当前版本

[[email protected] twemproxy]# rpm -qf /usr/bin/autoconf

autoconf-2.63-5.1.el6.noarch

卸载当前版本

[[email protected] twemproxy]# rpm -e --nodeps autoconf-2.63

安装最新版本

[[email protected] twemproxy]# wget ftp://ftp.gnu.org/gnu/autoconf/autoconf-2.68.tar.gz

[[email protected] twemproxy]# tar zxvf autoconf-2.68.tar.gz

[[email protected] twemproxy]# cd autoconf-2.68

[[email protected] twemproxy]# ./configure --prefix=/usr/

[[email protected] twemproxy]# make && make install

查看当前版本

[[email protected] autoconf-2.68]# /usr/bin/autoconf -V

autoconf (GNU Autoconf) 2.68

Copyright (C) 2010 Free Software Foundation, Inc.

License GPLv3+/Autoconf: GNU GPL version 3 or later

<http://gnu.org/licenses/gpl.html>, <http://gnu.org/licenses/exceptions.html>

This is free software: you are free to change and redistribute it.

There is NO WARRANTY, to the extent permitted by law.

至此,autoconf已升级到2.68。

转载请指明出处:http://www.cnblogs.com/fnlingnzb-learner/p/5831443.html

时间: 2024-08-10 23:30:07

CentOS6.5升级autoconf版本 Autoconf version 2.64 or higher is required的相关文章

centos6.5升级内核版本

使用yum快速升级CentOS 6.5内核到 3.10.28 1.导入public key rpm --import https://www.elrepo.org/RPM-GPG-KEY-elrepo.org 2.安装ELRepo到CentOS-6.5中 rpm -ivh http://www.elrepo.org/elrepo-release-6-5.el6.elrepo.noarch.rpm 3.安装 kernel-lt(lt=long-term) yum --enablerepo=elre

CentOS6.x升级MySQL版本5.1到5.6

原文地址: http://blog.csdn.net/iefreer/article/details/38366575 有一些虚拟机.云主机提供商仍然使用的是老版本的安装套件.预装的应用软件版本很低. 比如 techbrood.com 使用的云服务器,其中MySQL预装版本为老版本5.1.x.而最新的MySQL版本在性能.功能.安全性等方面都有了很多的改进. 要从最新版本获益,你需要把现有系统升级到5.5+(最新的版本是5.7),我保守一点,升级到5.6.20. 有相关测试数据说明从5.1到5.

Centos6.7升级openssh版本

实现前提公司服务器需要进行安全测评,扫描漏洞的设备扫出了关于 openssh 漏洞,主要是因为 openssh的当前版本为5.3,版本低了,而yum最新的openssh也只是5.3,没办法只能到 rpm 官网找新的包,找到最新的是 6.4,然后通过 yum localinstall 升级了,但是安全部门反映还存在 openssh 漏洞,没办法只能去openssh官网找最新的release,安装版本是 7.7!升级原因7.4以下版本openssh版本存在严重漏洞:1.OpenSSH 远程权限提升漏

Centos6.6升级python版本

centos原生python为2.6.6,可以通过下面的命令查看 #python -V Python 2.6.6 1.下载你需要的python版本 到https://www.python.org/downloads/官网下载需要的版本,目前linux使用的版本是.tgz或.tar.xz版本. 2.解压下载文件 以tar.xz为例 #xz -d Python-2.7.8.tar.xz #tar -xvf Python-2.7.8.tar 3.编译&安装 由于编译需要gcc支持,之前如果未安装,请安

CentOS6 yum升级高版本gcc

gcc 4.8安装 # curl -Lks http://www.hop5.in/yum/el6/hop5.repo > /etc/yum.repos.d/hop5.repo # yum install gcc gcc-g++ –y # gcc  --version gcc 4.9 安装 # yum install centos-release-scl –y # yum install devtoolset-3-toolchain –y # scl enable devtoolset-3 bas

Centos6.9升级python版本,导致误删原python和yum后的解决办法

事故背景:前几天因项目需要,在服务器上搭建python3模块,误操作将原python2.6.6,导致yum文件不能用......... 现在只能含泪修复,博主在网上搜了一圈办法,基本上都不是那么的详细,现在记下这一方法,希望能帮到与我情况相同的朋友~ 1:卸载python(以免有些同学没有卸载干净) 1 2 3 rpm -qa|grep python|xargs rpm -ev --allmatches --nodeps #强制删除已安装程序及其关联 whereis python|xargs r

CentOS6系升级Python2.7的版本

安装前准备 本实例以centos6.7为例 [[email protected] tools]# uname -r 2.6.32-431.23.3.el6.x86_64 [[email protected] tools]# uname -m x86_64 [[email protected] ~]# python -V Python 2.6.6 内核版本2.6.32 64位操作系统 安装前先装readline-devel,不装"上下左右建"等无法使用 yum -y install re

CentOS6系升级Python2.7版本

安装前准备 本实例以CentOS6.7为例 [[email protected] tools]# uname -r 2.6.32-431.23.3.el6.x86_64 [[email protected] tools]# uname -m x86_64 [[email protected] ~]# python -V Python 2.6.6 内核版本2.6.32 64位操作系统 安装前先装readline-devel,不装“上下左右建”等无法使用 yum -y install readlin

centos6.3升级python至2.7.5

centos6.3自带的python版本是2.6.6,有时候需要升级到2.7.这里记录一下升级过程,方便查阅.实际上是转载自http://flyingdutchman.iteye.com/blog/1885564. 1.安装gcc. yum install gcc gcc-c++ 2.下载python-2.7.5.tar.xz. wget https://www.python.org/ftp/python/2.7.5/Python-2.7.5.tar.xz 3.解压安装 xz -d python