sudo apt-get update 获取更新列表
sudo apt-get dist-upgrade 开始更新
./configure的问题
错误: C compiler cannot create executables
原因:
解决:sudo apt-get gcc libc6-dev
错误:checking for C compiler default output... configure: error: C compiler cannot create executables
原因:
解决:sudo apt-get install libc6-dev
错误:configure: error: C++ preprocessor "/lib/cpp" fails sanity check
原因:gcc的组件没装全
解决:apt-get install build-essential
错误: Can't find X includes. Please check your installation and add the correct paths!
原因:没有X的包含文件
解决:安装xlibs-dev即可
错误: Qt (>= Qt 3.0) (headers and libraries) not found. Please check your installation!
原因:查找提供qt的lib&&headers的软件包,并安装之
解决:apt-get install libqt3-headers libqt3-mt-dev
错误:in the prefix, you've chosen, are no KDE headers installed. This will fail.
So, check this please and use another prefix!
原因:install a KDE application in a Gnome environment。
解决:which basically means its going to want to install a lot of KDE specific packages to work. This 'configure:error'
is due to it expecting you to be running KDE and again refers to some 'headers'.
sudo apt-get update
sudo apt-get install kdelibs4-dev kdelibs4c2a
错误:./admin/cvs.sh: 585: autoconf: not found
原因:
解决:apt-get install autoconf
错误: *** GTK >= 2.4.0 not installed! ***
原因:没装GTK
解决:apt-get build-dep gedit
错误:heching for gtk-config... no
checking for GTK - version = 1.2.0... no
*** The gtk-config script installed by GTK could not be found
*** If GTK was installed in PREFIX, make sure PREFIX/bin is in
*** your path, or set the GTK_CONFIG enviroment variable to the
*** full path to gtk-config.
configure: error: Cannot find GTK: Is gtk-config in path?
原因:
解决:sudo apt-get install libgtk1.2-dev
问题:eclipse中encoding不支持中文
解决:编辑/var/lib/locales/supported.d/local,加一行zh_CN.GBK GBK,执行sudo locale-gen
错误:gnome.h: No such file or directory
错误: No package 'libpanelapplet-2.0' found
原因:
解决:sudo apt-get install gnome-panel
问题:eva不弹出输入法
解决:sudo apt-get install scim-qtimm
问题:No package 'gtk+-2.0' found
No package 'gtksourceview-1.0' found
No package 'libgnomeui-2.0' found
No package 'libglade-2.0' found
No package 'libgnomeprintui-2.2' found
解决:sudo apt-get install libgtk2.0-dev libgtksourceview-dev libgnomeui-dev libglade2-dev libgnomeprint2.2-dev
问题:No package 'libpanelapplet-2.0' found
解决:sudo apt-get install libpanelappletmm-2.6-dev
编译安装 Pidgin 的步骤
1. 下载 Pidgin 的源代码包 pidgin-2.1.1.tar.bz2 (官方最新的版本)。
wget [url]http://jaist.dl.sourceforge.net/sourceforge/pidgin/pidgin-2.1.1.tar.bz2[/url]
2. 安装编译 Pidgin 所需的依赖:
sudo apt-get install libgtk2.0-dev libxml2-dev gettext libnss-dev libnspr-dev
3. 解压源代码包
tar jxvf pidgin-2.1.1.tar.bz2
cd pidgin-2.1.1
4. 编译
./configure (建议使用 –help 查询需要用到的参数)
make
sudo make install
如果在 ./configure 这一步出现错误
错误一:
configure: error:
You must have the GTK+ 2.0 development headers installed to compile Pidgin.
If you only want to build Finch then specify –disable-gtkui when running configure.
解决:
sudo apt-get install libgtk2.0-dev
错误二:
configure: error:
You must have libxml2 >= 2.6.0 development headers installed to build.
解决:
sudo apt-get install libxml2-dev
错误三:
configure: error:
The msgfmt command is required to build
libpurple. If it is installed on your system, ensure that it is in your
path. If it is not, install GNU gettext to continue.
解决:
sudo apt-get install gettext
如果在使用 GTalk 或 MSN 时出现错误
错误:
SSL Library/Libraries……… : None (MSN and Google Talk will not work
without SSL!)
解决:
sudo apt-get install libnss-dev libnspr-dev
Ubuntu编译时找不到Makefile的解决办法ZDNet 软件频道 更新时间:2007-09-26作者: korn 来源:赛迪网
本文关键词: Ubuntu Proftp
如果是需要编译的环境,推荐安装"build essential"包,
#sudo apt-get install "build-essential"
在用./configure ,make , makeinstall ,方法安装软件是,经常会发生发生各种错误,而导致无法生成 makefile 文件。现在我把我安装过程中遇到的问题以及解决办法写下来,希望对大家有点帮助。
以我安装 pidgin-2.0.0为例
#./configure 出现错误 :
configure: error: C compiler cannot create executables
按照错误提示安装缺少的包
#sudo apt-get install libc6-dev
再次
#./configure
出现错误
checking for GLIB... no
no
configure: error:
You must have the GLib 2.0 development headers installed to build.
根据错误提示,用新得立搜索 GLib 2.0 或者 用命令
#sudo apt-cache search GLib 2.0
发现有个包 libglib2.0-dev - Development files for the GLib library 。
选择安装;
#sudo apt-get install libglib2.0-dev
这里原文为libglib2.0-0-dev,似乎有误。
#./configure #又出现错误
checking for X... no
checking for GTK... no
no
configure: error:
You must have the GTK+ 2.0 development headers installed to compile Pidgin.
If you only want to build Finch then specify --disable-gtkui when running configure.
用如上同样的方法查找到缺少的包 并安装
sudo apt-get install libgtkmm2.0-dev
./configure 出现错误
checking for LIBXML... no
no
configure: error:
You must have libxml2 >= 2.6.0 development headers installed to build.
于是安装
sudo apt-get install libxml2-dev
经过上面包的安装,在次./configure 没有再出现错误,这次成功的生成了makefile 文件。
然后执行:
#make
#make install
成功安装软件。
如果在./configure中还出现问题,那么要找到问题所在,安装缺失的包即可。
在配置过程中,config.log文件是很有帮助的。我们可以在这里面找出错误的根源,从而寻找应对措施。
转自:http://hi.baidu.com/beauty2008/blog/item/ddd2de8857ca7892a5c272f7.html
相关推荐
《libmodbus 3.14:解决configure.js错误详解》 libmodbus是一个流行的开源库,用于实现Modbus通信协议。它支持多种操作系统,包括Linux、Windows和FreeRTOS等,广泛应用于工业自动化、物联网设备以及其他需要进行...
./configure -xplatform linux-arm-g++ -qconfig qpe # 设置颜色深度为16位,不使用虚拟帧缓冲 make sub-src ``` 然后,切换到`qt-2.3.2`目录,进行额外的配置: ```bash cd $QT2DIR export QTDIR=$QT2DIR export ...
3. 编译和安装 PCRE 库:`./configure`、`make` 和 `make install` 安装 Zlib 库 ------------- Zlib 库是 Nginx 依赖的库,安装 Zlib 库需要以下步骤: 1. 下载 Zlib 库源码包:`wget ...
4. 配置安装路径并编译:`./configure --prefix=/usr/local/subversion --with-apr=/usr/local/apr --with-apr-util=/usr/local/apr-util --with-sqlite=/usr/local/sqlite --with-expat=/usr/local/expat --with-...
./configure --prefix=/opt/ts/ --host=arm-linux --cache-file=arm-linux.cache ac_cv_func_malloc_0_nonnull=yes tests/ts_calibrate.c # 编辑 open 函数,将 0 改为其他值 # 在第 227 行和 229 行 make ...
例如,在安装zlib库时如果遇到 `./configure` 报错,可以尝试重新配置而不带 `--prefix` 参数。 总之,搭建LAMP环境虽然过程较为繁琐,但只要按照步骤细心操作,就能顺利完成。希望这篇指南能够帮助大家顺利搭建...
./configure --prefix=/usr/local/apache2.2 --enable-modules=all \ --enable-mods-shared=all --enable-proxy --enable-proxy-http --enable-so ``` 3. **编译安装**: ```bash make make install ``` ###...
- 执行`./configure`脚本,根据系统配置自动生成Makefile。 4. **编译和安装**: - `make`:编译源代码。 - `sudo make install`:将编译好的库文件安装到系统默认路径。 5. **系统调整**: - 更新动态链接器的...
### Linux下安装Wireshark详解 #### 一、前言 Wireshark是一款非常强大的网络数据包抓取与分析工具,被广泛应用于网络安全检测、网络故障排查等领域。由于其功能的强大性和灵活性,Wireshark成为了许多网络工程师...
./configure --prefix=/usr/local/eaccelerator make sudo make install ``` **3.14 加载模块** 确保在Apache和PHP的配置文件中正确加载了所需的模块。 **3.15 安装ZendOptimizer** ZendOptimizer是PHP代码的...
4. **执行`./configure`命令**:根据上述参数列表执行`./configure`命令。注意检查是否有必要的依赖库,如开发工具、Perl等。 5. **编译安装**:运行`make`命令编译源代码,然后使用`make install`命令安装Apache。...
### LINUX 下 boa 服务器搭建详解 #### 一、Boa 服务器简介 Boa 是一个轻量级的 Web 服务器,适用于多种操作系统平台,并在嵌入式系统中得到广泛应用。由于其体积小、资源占用少的特点,Boa 成为了很多嵌入式设备...
./configure --with-qt-includes=/usr/lib/qt-3.3/include --with-qt-libraries=/usr/lib/qt-3.3/lib --with-qt-dir=/usr/lib/qt-3.3 sudo make sudo make install ``` 注意:与之前的版本不同的是,如果不输入任何...
- 运行`./configure`命令,指定安装路径和启用共享模块功能,例如:`./configure --prefix=/usr/local/apache --enable-shared=max --enable-module=rewrite --enable-module=so`。 - 使用`make`命令编译源代码,...
- **配置文件错误**:如果在执行`./configure`命令后出现`config.err`文件,这通常是由于配置过程中出现问题导致的。此时,需要检查`./configure`命令的参数是否正确,以及所需的依赖库是否已经安装到位。 - **...
### Linux下软件安装详解 #### 一、引言 Linux作为一种强大的开源操作系统,在服务器领域有着不可动摇的地位。相较于Windows系统,Linux下的软件安装流程相对复杂,但灵活性更高。本文将详细介绍Linux环境下软件...
$ ./configure --prefix=/home/user/protobuf-main/build/install ``` - 编译源代码(建议使用多核编译提高效率): ``` $ make -j4 ``` - 安装编译结果: ``` $ sudo make install ``` - 刷新共享库: ...
### Linux 下 Memcached 的安装与启动详解 #### 一、Memcached 简介 Memcached 是一款高性能的分布式内存对象缓存系统,用于减轻数据库负载,加速动态 Web 应用程序的速度。它通过在内存中缓存数据和对象来减少...
在上述示例中,我们可以看到`./configure`脚本执行了一系列检查,包括但不限于检查编译器、预处理器、必要的头文件是否存在等。这些检查是为了确保`rstatd`能够在当前环境中顺利编译和运行。 ##### 3. 编译 一旦`....
./configure && make && make install ``` 3. **编译安装 DAQ:** ``` tar zxvf daq-2.06 cd daq-2.06 ./configure && make && make install ``` 4. **编译安装 libpcap:** ``` tar zxvf libpcap-...