ubuntu14.04 下安装 glib-2.44.1 的过程记录

安装glib-2.44.1

先说清楚,这是一篇纠结文,正确答案请看这里

纠结开始了:

下载https://github.com/GNOME/glib

参考https://developer.gnome.org/glib/2.44/

要用到autoconf生成配置脚本

先使用apt-get install autoconf安装autoconf,这个稍微有点慢。

然后在glib-master目录下运行

autoconf configure.ac

报错了

configure.ac:66: error: possibly undefined macro: AM_INIT_AUTOMAKE
If this token and others are legitimate, please use m4_pattern_allow.
See the Autoconf documentation.

这个问题还没解决,又遇到一个新的问题,就是我把glib-master在虚拟机的共享文件夹中解压然后拷贝到ubuntu的根目录下之后,

glib-master下会自动出现一个configure文件,我按照安装文档说的运行./configure又提示bash: ./configure: No such file or directory

然后我用ls -l 列出目录和文件的详细信息,却发现列表中根本没有configure这个文件

真实诡异啊!!!!

即便是我要删除这个文件,也会提示no such file or directory,但是这个文件依然赤裸裸的在我的文件列表中。

先不管这个,网上有人说试试安装libtool

apt-get install libtool

网速是硬伤....

终于装好了,然后autoconf,这回没有报错。

然后ls -l能看到configure这个文件了

继续 ./configure

又报错

./configure: line 2607: syntax error near unexpected token `1.11‘
./configure: line 2607: `AM_INIT_AUTOMAKE(1.11 -Wno-portability no-define no-dist-gzip dist-xz tar-ustar)‘

试试 autoreconf -i

又报错

Makefile.am: error: required file ‘./README‘ not found
parallel-tests: installing ‘./test-driver‘
automake: error: cannot open < gtk-doc.make: No such file or directory
autoreconf: automake failed with exit status: 1

忽略这个错误,再试试

autoreconf -fi

依然报错

Makefile.am: error: required file ‘./README‘ not found
automake: error: cannot open < gtk-doc.make: No such file or directory
autoreconf: automake failed with exit status: 1

继续装作没看见,运行

./configure

报错如下:

checking for LIBFFI... no
configure: error: Package requirements (libffi >= 3.0.0) were not met:

No package ‘libffi‘ found

Consider adjusting the PKG_CONFIG_PATH environment variable if you
installed software in a non-standard prefix.

Alternatively, you may set the environment variables LIBFFI_CFLAGS
and LIBFFI_LIBS to avoid the need to call pkg-config.
See the pkg-config man page for more details.

装个libffi先

wget ftp://sourceware.org/pub/libffi/libffi-3.0.11.tar.gz

tar zxvf libffi-3.0.11.tar.gz

cd libffi-3.0.11/

./configure

make

make install

然后再重新回到glib-master目录运行

./configure

对了,我自己建了一个空的文件README,不知道有啥影响,先放着。

这次输出好长,给我造成了一种大功告成的错觉,可是最后还是有一行错误

error: cannot find input file: `Makefile.in‘

想继续发扬装没看见的优良传统,直接

make

不料压根找不到make文件,算了,从头来过

我估计是安装包有问题,从这里http://ftp.gnome.org/pub/gnome/sources/glib/2.44/glib-2.44.1.tar.xz下载新的安装包

这次不放根目录了,放在usr目录下

然后tar xvJf glib-2.44.1.tar.xz解压

然后

cd glib-2.44.1

./configure

我了个大去,竟然没有报错,我之前都干了神马!!!

赶紧的

make

然后

make install

看着一行行的输出,真的好爽,最后来张图

时间: 2024-11-08 04:21:47

ubuntu14.04 下安装 glib-2.44.1 的过程记录的相关文章

Ubuntu14.04下安装ZendStudio10.6.1+SVN出现Failed to load JavaHL Library

Subclipse不能正常工作,打开后报错: Failed to load JavaHL Library. These are the errors that were encountered: no libsvnjavahl-1 in java.library.path no svnjavahl-1 in java.library.path no svnjavahl in java.library.path 原来是缺少一些关联文件,去subclipse的Wiki看了看,说需要安装libsvn-

一、Ubuntu14.04下安装Hadoop2.4.0 (单机模式)

一.在Ubuntu下创建hadoop组和hadoop用户 增加hadoop用户组,同时在该组里增加hadoop用户,后续在涉及到hadoop操作时,我们使用该用户. 1.创建hadoop用户组 2.创建hadoop用户 sudo adduser -ingroup hadoop hadoop 回车后会提示输入新的UNIX密码,这是新建用户hadoop的密码,输入回车即可. 如果不输入密码,回车后会重新提示输入密码,即密码不能为空. 最后确认信息是否正确,如果没问题,输入 Y,回车即可. 3.为ha

ubuntu14.04下安装lec10.1过程记录

0.lec为Candence公司推出的形式验证工具,由于要学习IC后端的知识,打算在ubuntu14.04下安装一套后端工具,建立后端环境,通过练习完成后端知识的入门,安装过程记录下来,留作以后查看,如果对您有一些帮助,倍感欣慰! 1.安装源文件 >lec10.1:http://pan.baidu.com/s/1o6wqu5G 3.安装与破解 >解压lec_10.1.tgz到安装目录 >设置环境如下: #add for lec export LEC_HOME=/usr/cad/lec_1

二、Ubuntu14.04下安装Hadoop2.4.0 (伪分布模式)

在Ubuntu14.04下安装Hadoop2.4.0 (单机模式)基础上配置 一.配置core-site.xml /usr/local/hadoop/etc/hadoop/core-site.xml 包含了hadoop启动时的配置信息. 编辑器中打开此文件 sudo gedit /usr/local/hadoop/etc/hadoop/core-site.xml 在该文件的<configuration></configuration>之间增加如下内容: <property&g

Ubuntu14.04下安装Hadoop2.5.1 (单机模式)

本文地址:http://www.cnblogs.com/archimedes/p/hadoop-standalone-mode.html,转载请注明源地址. 一.在Ubuntu下创建hadoop组和hadoop用户 1.创建hadoop用户组 sudo addgroup hadoop 2.创建hadoop用户 sudo adduser -ingroup hadoop hadoop 回车后会提示输入新的UNIX密码,这是新建用户hadoop的密码,输入回车即可.如果不输入密码,回车后会重新提示输入

ubuntu14.04下安装爬虫工具scrapy

scrapy是目前准备要学习的爬虫框架,其在ubuntu14.04下的安装过程如下: ubuntu14.04下默认安装了2.7的python以及setuptools,若未安装,可通过下面指令安装: sudo apt-get install python sudo apt-get install python-setuptools 然后安装Twisted: sudo apt-get install python-twisted 然后是Scrapy: sudo apt-get install pyt

ubuntu14.04下安装cudnn5.1.3,opencv3.0,编译caffe及matlab和python接口过程记录

已有条件: ubuntu14.04+cuda7.5+anaconda2(即python2.7)+matlabR2014a 上述已经装好了,开始搭建caffe环境. 1. 装cudnn5.1.3,参照:2015.08.17 Ubuntu 14.04+cuda 7.5+caffe安装配置 详情:先下载好cudnn-7.5-linux-x64-v5.1-rc.tgz安装包(貌似需要官网申请) 解压: tar -zxvf cudnn-7.5-linux-x64-v5.1-rc.tgz cd cuda s

Ubuntu14.04下安装Caffe总结

转摘http://weibo.com/p/2304189db078090102vdvx 虽然Deep Learning已经不是什么新鲜的东西了,但是由于设备原因,自己一直没有涉足.前几天有幸换了一台自带GPU的Workstation,甚是高兴.于是迫不及待地装了个Ubuntu系统,开始配置DeepLearning框架Caffe.前后共花了差不多两天时间,终于把它配好了.配了这么多年的软件,Caffe应该是我配过最复杂的软件,没有之一.终于知道为什么用Caffe的人这么多,亲自去配它的人这么少了.

在Ubuntu14.04下安装Docker CE(1) - repository篇

从2017年3月开始,Docker开始分为社区版本和企业版,也就是Docker CE和Docker EE, 原来Ubuntu14.04下,通过sudo apt-get install docker.io来进行安装的方式已经过时了.在这里,会详细介绍如何在ubuntu14.04 LTS下安装Docker社区版,也就是Docker CE. 在开始之前,请确保你先做好一些前期准备工作,然后开始安装Docker. 前期准备工作 操作系统 安装Docker CE,你需要以下其中一种64位的Ubuntu操作

ubuntu14.04下安装MySQL-server 以及MySQLdb模块

在虚拟机上完成Ubuntu14.04的安装 一,配置完IP 确认能正常上网 二,sudo apt-get install aptitude 注:aptitude的功能和apt-get 差不多,个人比较喜欢使用aptitude安装和卸载软件.具体区别请自己度娘. 在使用apt-get的时候还有点小插曲,刚装的系统直接输入sudo apt-get install packagename 一般会报错:unable to locate packagename 此时只需要输入sudo apt-get up