首页 > 系统相关 >CentOS报错/bin/sh: autoconf: command not found

CentOS报错/bin/sh: autoconf: command not found

时间:2023-07-18 11:45:36浏览次数:34  
标签:bin CentOS noarch 报错 yum autoconf automake el7

 

目录

 


一、问题描述

CentOS 7 下执行 make configure 命令时报错:

/bin/sh: autoconf: command not found
 

二、解决方法

1.查看 autoconf、automake 是否已安装

rpm -qa|grep autoconf
rpm -qa|grep automake
 

2.查看 autoconf、automake 对应的包

yum whatprovides autoconf automake
 
[root@server-c00ef8c3-710d-4708-9cde-2c864e7c03e2 git-2.35.1]# yum whatprovides autoconf automake
Loaded plugins: fastestmirror
Loading mirror speeds from cached hostfile
autoconf-2.69-11.el7.noarch : A GNU tool for automatically configuring source code
Repo        : base
automake-1.13.4-3.el7.noarch : A GNU tool for automatically creating Makefiles
Repo        : base
 

 

3.安装

yum -y install autoconf-2.69-11.el7.noarch
yum -y install automake-1.13.4-3.el7.noarch
   

标签:bin,CentOS,noarch,报错,yum,autoconf,automake,el7
From: https://www.cnblogs.com/chentiao/p/17562456.html

相关文章

  • 导入大文件数据库报错500怎么解决?
    我们在数据库导入大文件的数据库时,会报错HTTP500InternalServerError的错误,HTTP500InternalServerError通常表示服务器无法处理请求,这有很多原因导致,下面我们来分析下可能的原因和解决方法。1、数据库文件过大:可以采用软件或第三方数据库管理工具导入,可以解决数据库文件......
  • IDEA 启动报错:Error running 'DemoApplication': Command line is too long. Shorten
     IDEA启动报错:Errorrunning'DemoApplication':Commandlineistoolong.ShortencommandlineforDemoApplicationoralsoforSpringBootdefaultconfiguration. 修改 打开 修改成  然后在重新启动即可......
  • Centos7搭建MSF6(公网服务器搭建)文章非常详细
    简介每次需要用msf测试的时候,都需要用frp把msf穿透出来,麻烦的很,索性直接把他搭建到公网服务器上,实验机为centos,网上教程非常杂乱,中途遇到很多问题,花费了大量时间解决了遇到的问题,文章非常详细,并记录下来,照着文章一步步操作,可以完美搭建。1、安装msf直接使用官方给的一键安装命......
  • centos7中yum安装gcc编译器11
     001、系统信息[root@PC1software]#cat/etc/system-releaseCentOSLinuxrelease7.6.1810(Core) 002、当前gcc编译器版本[root@PC1software]#gcc--versiongcc(GCC)4.8.520150623(RedHat4.8.5-36)Copyright(C)2015FreeSoftwareFoundation,Inc.T......
  • 当在js文件里引入pinia时报错:Uncaught Error: []: getActivePinia was called with no
    1、问题背景我在一个js文件里需要使用pinia去修改状态存储里的内容,但是在引入pinia的时候,比如contstore=useStore()时发现报错:getActivePiniawascalledwithnoactivePinia.说是实例在文件中使用的时候,pinia实例没有被挂载。发生错误的原因是因为我在js......
  • 第九节:Centos8.x版本切换yum/dnf下载源为阿里的地址
    一.        二.        三.         !作       者:Yaopengfei(姚鹏飞)博客地址:http://www.cnblogs.com/yaopengfei/声     明1:如有错误,欢迎讨论,请勿谩骂^_^。声     明2:原创博客请在转载......
  • centos7的安装
    1.注册光盘操作选中本地的镜像文件导入2.点击启动按钮开机进入到系统中通过上下键选择上面的安装选项 注意:鼠标点击进入此页面后,想使鼠标重新显现需要按ctrl+tab键3.配置选择语言推荐(中文,English) 点击配置日期时间 配置文件的各项设置  选择开发文件包......
  • Github:提交代码到Github上报错Git: fatal unable to access "***/: Failed to connect
    在国内网环境,使用VScode提交代码到Github上时,因为国的防火墙问题,经常会报错:Git:fatalunabletoaccess"https://github.com/***/***.io.git/:Failedtoconnecttogithub.comport443after21074ms:Couldn'tconnecttoserver 可能原因:出现该错误是因为使用了proxy......
  • centos7基础镜像添加nvidia依赖
    是这样的,我在用centos:7创建基础镜像并配置好环境以后,发现在容器中没有nvidia-smi命令这样:创建一个Dockerfile文件,添加如下,基础镜像根据自己的改一下FROMsegment_anything_env:202307171558LABELmaintainer"chentiao_create"RUNecho"/usr/local/nvidia/lib">>/......
  • idea报错 java: You aren't using a compiler supported by lombok, so lombok will
    转‘’:idea较新版本识别不了lombok生成的方法 在这增加参数:-Djps.track.ap.dependencies=false  ......