安 装Mesa时,最后一个错误报“WARNING: 'aclocal-1.14' is missing on your system.”,虽然是个Warning,但是无法进行下一步make,所以必须解决.根据warning给的提示以及网上搜的信息判断,这是一个时间 戳变化导致的系统以为文件被修改,所以需要重新编译几个脚本文件.实际上我从官网下载来的源文件压缩包我根本没动过,应该是解压过程中系统版本不一样或者 时间差导致的文件时间戳发生了变化而已(能想到这个,因为我从本机往US的服务器传文件时,解…
centos编译出现:类似情况: $tar -xvf libpcap-1.0.0.tar.gz      $cd libpcap-1.0.0.tar.gz      $./configure      $make      $sudo make install  5.'aclocal-1.14' is missing on your system. You should only need it if you modified 'acinclude.m4' or         'configu…
前题: 在前几个月的时候,写了一篇笔记,说的是kernel compile的事情,当时经验不足,虽说编译过了,但有些地方写的有错误--因为当时的理解是有错误的.今天一一更正,记录如下: 前文笔记链接:  ubuntu 12.04编译安装linux-3.6.10内核笔记 NO 1: 内核清洁工作. 一般的清洁可能会立刻想到make clean.但这个确实不完整,make clean只能清楚一部分东西.而有一个命令是做的非常彻底的,那就是make mrproper.对于这两个的差别,可以在进入ker…
如何解决ubuntu 12.04重启后出现waiting for network configuration和网络标志消失问题 作为菜鸟的我在学着设置网络后,重启电脑后显示 waiting fornetwork configuration,然后是waiting up to 60 more seconds for network configuration,最后显示booting system without fullnetwork configuration.并且进入桌面后网络连接状态图标也消失…
在编译LXC时,遇到一个问题,提示 'aclocal-1.14'缺失.如下:WARNING: 'aclocal-1.14' is missing on your system. You should only need it if you modified 'acinclude.m4' or 'configure.ac' or m4 files included by 'configure.ac'. The 'aclocal' program is part of the GNU Automak…
源码安装zabbix agent时进行到make install时报如下错误: WARNING: 'aclocal-1.14' is missing on your system. You should only need it if you modified 'acinclude.m4' or 'configure.ac' or m4 files included by 'configure.ac'. The 'aclocal' program is part of the GNU Autom…
zabbix server已经安装成功了,在server端也安装了一个agent,一切OK. 在另外一台pg节点上安装zabbix agent时,报错: WARNING: 'aclocal-1.14' is missing on your system. 查了一下,说要安装对应版本的automake,这样很烦啊``` 于是想了下原理,以前也用过automake来编译集群软件程序,是不是可以简单的重新生成一个configure文件即可? autoreconf -ivf 果然,重新./configu…
1.准备工作操作系统:Ubuntu 12.04 获取bcm93349dcm软件包: bootloader源代码:Bootloader_2_2_0.zip CM源代码:ProdD20_BFC4.4.10.zip CM源代码补丁包:ProdD20_BFC4.4.10mp3.zip 编译工具链:gnutools321_06-23-2004.tgz 2.配置CM源代码和bootloader源代码在家目录下建立CM和bootloader源代码文件夹: mkdir -p ~/bcm93349dcm/boot…
下载源码包 nginx 地址:http://nginx.org/en/download.html 编译前先安装两个包: 直接编译安装会碰到缺少pcre等问题,这时候只要到再安装两个包就ok sudo apt-get install libpcre3-dev aptitude libssl-dev这样再make install就可以成功了 执行如下操作来安装openssl及其开发函数库:   $ sudo apt-get install openssl $ sudo apt-get install…
检查发现其实已经安装了automake,只不过版本是automake-1.15.1 $ automake --version automake (GNU automake) 1.15.1 解决方法一    参考https://github.com/UBERTC/isl/issues/1,在 /usb/bin 目录为 automake-1.14 和 aclocal-1.14 创建软链接 $ sudo ln -s /usr/bin/automake-1.15 /usr/bin/automake-1.…