【Linux学习七】软件安装

环境
  虚拟机:VMware 10
  Linux版本:CentOS-6.5-x86_64
  客户端:Xshell4
  FTP:Xftp4

一、编译安装
1.解压 源码文件是压缩包 要先解压
tar -zxvf tengine-2.1.0.tar.gz

2.进入解压包 查看README文件 里面有对软件的介绍和安装指导
3.查看./configure --help 看一下有哪些安装参数,设定参数来安装
4.安装装编译器  检查依赖:是否有对应的编译器

[[email protected] tengine-2.1.0]# ./configure
checking for OS
+ Linux 2.6.32-431.el6.x86_64 x86_64
checking for C compiler ... not found

./configure: error: C compiler cc is not found

报错:提示没有cc编译器
解决方案:yum install -y gcc 安装gcc编译器(GNU cc)

5.安装依赖库PCRE、OpenSSL
再次执行./configure,会提示缺少依赖库
可以通过yum serch PCRE来查询这个库,
然后安装yum install -y pcre-devel

./configure: error: the HTTP rewrite module requires the PCRE library.
You can either disable the module by using --without-http_rewrite_module
option, or install the PCRE library into the system, or build the PCRE library
statically from the source with nginx by using --with-pcre=<path> option.

./configure: error: SSL modules require the OpenSSL library.
You can either do not enable the modules, or install the OpenSSL library
into the system, or build the OpenSSL library statically from the source
with nginx by using --with-openssl=<path> option.

[[email protected] tengine-2.1.0]# yum search PCRE
Loaded plugins: fastestmirror
Loading mirror speeds from cached hostfile
* base: mirrors.njupt.edu.cn
* extras: mirrors.njupt.edu.cn
* updates: mirrors.cqu.edu.cn
=================================================== N/S Matched: PCRE ===================================================
pcre-devel.i686 : Development files for pcre
pcre-devel.x86_64 : Development files for pcre
pcre-static.x86_64 : Static library for pcre
pcre.x86_64 : Perl-compatible regular expression library
pcre.i686 : Perl-compatible regular expression library

Name and summary matches only, use "search all" for everything.

6.最后configure配置执行成功
首先做检查依赖,最后生成MakeFile编译文件

7.编译:make

8.安装:make install

9.访问验证
注意关闭防火墙:service iptables stop

二、rpm安装:包

三、yum安装:仓库

原文地址:https://www.cnblogs.com/cac2020/p/10165060.html

时间: 2024-10-08 17:52:28

【Linux学习七】软件安装的相关文章

Linux学习笔记——软件安装(四)

++++++++++++++++++++++++++++++Linux软件安装+++++++++++++++++++++++++++++++ 注:window系统中的所有安装包都不能在Linux系统中直接安装使用 1. 软件包分类: 源码包(脚本安装包:install.sh)——安装慢,可以看到源代码 二进制包(RPM包,系统默认包)——源码包经过编译之后的机器码,安装快速,看不到源码 2. RPM包管理: RPM包命名规则——范例:httpd-2.2.15-15.e16.centos.1.i6

Linux学习_arch软件安装与配置

ARCH软件清单:(持续更新) 窗口管理器:i3 网页浏览器:google-chrome,文本:w3m,elink2 邮件客户端: 文本编辑器:Vim(学习),nano(自带) 终端模拟器:Xfce Terminal,gnome-terminal 命令解释器:zsh,bash(自带) 文档阅读器:evince 聊天客户端:pidgin(pidgin-lwqq) 中文输入法:fcitx(google-pinyin) 媒体播放器: 矢量图处理: 位图处理:GIMP 图片查看:feh,gqview 远

Linux下的软件安装

1.概述 linux中的软件安装一共有三种,相对于Windows的简易操作,对于linux的使用者来说,软件安装也是一门学问.linux中的软件包一共有这么几种: 1).RPM:即RedHat Package Manager(RPM软件包管理器)的简写,执行二进制文件的安装,一个完整的RPM包应该包括可执行文件,man手册,库文件,头文件.RPM软件包的存储格式如下: 其中应用平台包括32位系统的i386,i586,i686,64位系统的x86-64. 2).tar:这是一种压缩后的归档包,常见

[Linux] 学习笔记之安装学习环境(sshd, lrzsz)

紧接前一篇,在VMWare安装完Linux,这个时候我们要使用远程工具连接到虚拟机上去了,以前一直使用Putty,后来到新公司之后,推荐使用SecureCRT,使用之后,觉得效果不错,但是每次连接都失败,linux新手伤不起,在网上搜啊搜,终于找到解决办法.   搜索了很多资料之后,发现是由于我未在Linux上安装ssh服务导致无法使用SecureCRT连接. 1. 可以使用ssh localhost对此进行测试,具体使用如下: 2. 使用apt-get或者yum安装ssh服务,具体哪种操作系统

win7+64位+Java学习基本软件安装+环境配置+eclipse(IDE)

一.下载安装JDK 1.安装包下载地址:http://www.oracle.com/technetwork/java/javase/downloads/jdk9-downloads-3848520.html 根据需要进行下载,我的电脑是win7+64位,所以选择版本:jdk-9.0.1_windows-x64_bin.exe 2.双击安装包 ,点击下一步,建议不要装在C盘,我一般习惯性将所有软件装在E盘下面,首先是安装JDK: 3.继续点击下一步,安装完jdk-9.0.1,会自动安装jre-9.

linux学习笔记——yum安装软件、搭建仓库、rpm命令

#############如何安装软件####################yum    #全称Yellow dog Updater Moddified,能够从指定的服务器自动下载RPM包并安装 yum     list    all        ##列出所有安装包yum     list    installed    ##列出已经安装的yum    list    available    ##列出没有安装的yum     remove    package        ##卸载软件(

Linux下部分软件安装方法

这里以Ubuntu14.04为例: 一.安装codelite 1 sudo apt-key adv --fetch-keys http://repos.codelite.org/CodeLite.asc 2 sudo apt-add-repository "deb http://repos.codelite.org/ubuntu/ $(lsb_release -sc) universe" 3 sudo apt-get update 4 sudo apt-get install code

[笔记]Linux下InSAR软件安装期间查阅的一些资料整理

 关于Linux环境下软件的编译 1. "undefined reference to" 问题解决方法 http://blog.csdn.net/aiwoziji13/article/details/7330333 2. 不同版本的FFTW库的安装方法有差异 http://anony3721.blog.163.com/blog/static/511974201312322910595/ 3. 不同编译后缀的问题 http://ubuntuforums.org/showthread.ph

Linux 系统下软件安装与管理

一.二进制(RPM)程序包概述 1.二进制程序包的组成部分: 二进制文件.库文件.配置文件.帮助文件 [[email protected] ~]# rpm -qpl/mnt/cdrom/Packages/httpd-2.4.6-40.el7.centos.x86_64.rpm /etc/httpd /etc/httpd/conf          #二进制程序包组成部分配置文件 /etc/httpd/conf.d -- /usr/sbin/httpd          #二进制程序包组成部分二进

linux 学习6 软件包安装

一.软件包管理简介 二.RPM包管理-rpm命令管理 三.RPM包管理-yum在线管理 四.源码包管理 五.脚本安装包与软件包选择 1.软件包分类 ?源码包 ?脚本安装包 ?二进制包(RPM包.系统默认包) 2.源码包 源码包的优点是: ?开源,如果有足够的能力,可以修改源代码 ?可以自由选择所需的功能 ?软件是编译安装,所以更加适合自己的系统,更加稳定也效率更高 ?卸载方便 源码包的缺点 ?安装过程步骤较多,尤其安装较大的软件集合时(如LAMP环境搭建),容易出现拼写错误 ?编译过程时间较长,