二、tar.gz(bz或bz2等)结尾的源代码包,这种软件包里面都是源程序,没有编译过,需要编译后才能安装,安装方法为:
1、打开一个SHELL,即终端
2、用CD 命令进入源代码压缩包所在的目录
3、根据压缩包类型解压缩文件(*代表压缩包名称)
tar -zxvf ****.tar.gz
tar -jxvf ****.tar.bz(或bz2)
4、用CD命令进入解压缩后的目录
5、输入编译文件命令:./configure(有的压缩包已经编译过,这一步可以省去)
6、然后是命令:make
7、再是安装文件命令:make install
8、安装完毕
三、以bin结尾的安装包,这种包类似于RPM包,安装也比较简单
1、打开一个SHELL,即终端
2、用CD 命令进入源代码压缩包所在的目录
3、给文件加上可执行属性:chmod +x ******.bin(中间是字母x,小写)
3、执行命令:./******.bin(realplayer for Linux就是这样的安装包)
cannot find MySQL include files.//这就是错误信息的提示啊,表示没有找到mysql的文件~~~,你要学会看错误信息~~~记住想要学好linux,必须要学会看报错信息checking for mysql_config... /usr/local/mysql/bin/mysql_config(检查mysql_config文件,在/usr/local/mysql/bin/mysql_config)
checking for mysql_real_connect... (检查mysql_real_connect文件)
nochecking for mysql_real_connect...(没有检查到这个文件)
nochecking MySQL include files...(没有检查到mysql包含这个文件)
configure: error: missing include files.(安装:错误:没有包含这个文件)******************************************************************************ERROR: cannot find MySQL include files.(没有找到这个文件)Check that you do have MySQL include files installed.(检查mysql的安装文件)
The package name is typically 'mysql-devel'.(这个包的名称是mysql-devel)If include files are installed on your system, but you are still getting this message, you should do one of the following:(如果你的系统安装了这个文件,并且你知道,你应该按以下方法做:)1) either specify includes location explicitly, using --with-mysql-includes(明确指定包含文件的位置,使用--with-mysql-includes这个参数)
2) or specify MySQL installation root location explicitly, using --with-mysql(明确指定安装mysql的位置,使用绝对位置。使用--with-mysql参数)
3) or make sure that the path to 'mysql_config' program is listed in your PATH environment variable.(请确定mysql_config程序在你的PATH环境变量的路径)To disable MySQL support, use --without-mysql option.******************************************************************************
至于到底是什么问题,你自己看吧~~~只能帮你到这里了。。。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)