yum是RedHat以及CentOS中的软件包管理器,能够通过互联网下载以rpm结尾的包,并且安装,并可以自动处理依赖性关系,无需繁琐的一次次下载安装。
要成功的使用yum工具安装更新软件或系统,就需要有一个包含各种rpm软件包的repository(软件仓库),这个软件仓库我们习惯称之为yum源或者yum 仓库这个源可以是本地的也可以是网络的。
因为CentOS默认是国外的源,有时候安装速度会很慢,所以我们更换国内源
各大镜像源:
阿里云:https://opsx.alibaba.com/mirror
清华源:https://mirrors.tuna.tsinghua.edu.cn/
163源:http://mirrors.163.com/
华为源:https://mirrors.huaweicloud.com/
科大源:http://mirrors.ustc.edu.cn/
#CentOS 6 wget -O /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-6.repo #或者 curl -o /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-6.repo #CentOS 7 wget -O /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-7.repo #或者 curl -o /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-7.repo
使用yum查询软件包的方式
#列出软件仓库中可用的软件 yum list #进行模糊查找 yum list|grep ftp #列出软件包详情 yum info ftp
使用yum安装软件包的方式
#安装软件只需要给出软件名称(前提是在仓库中必须有) yum install traceroute #安装过程中分析依赖关系后, 直接安装, 无需交互 yum install php -y #安装本地的rpm包, 如果有依赖关系, 会自动从软件仓库中下载所需依赖(非来自.repo定义的软件仓库) yum localinstall /mnt/Packages/bind-9.9.4-50.el7.x86_64.rpm #安装网络上rpm包 yum install http://repo.zabbix.com/zabbix/3.4/rhel/7/x86_64/zabbix-release-3.4-2.el7.noarch.rpm
使用yum重装软件包的方式
#检查软件是否存在 [root@VM_0_11_centos ~]# rpm -q vsftpd vsftpd-2.2.2-24.el6.x86_64 #检查vsftpd软件配置文件 [root@VM_0_11_centos ~]# rpm -qc vsftpd /etc/logrotate.d/vsftpd /etc/pam.d/vsftpd /etc/vsftpd/ftpusers /etc/vsftpd/user_list /etc/vsftpd/vsftpd.conf #不小心删除vsftpd配置文件 [root@VM_0_11_centos ~]# rm -f /etc/vsftpd/vsftpd.conf #重新安装软件 [root@zls ~]# yum reinstall vsftpd #再次检查 [root@VM_0_11_centos ~]# rpm -qc vsftpd /etc/logrotate.d/vsftpd /etc/pam.d/vsftpd /etc/vsftpd/ftpusers /etc/vsftpd/user_list /etc/vsftpd/vsftpd.conf
使用yum更新软件包的方式
#对比Linux已安装的软件和yum仓库中的软件, 有哪些需要升级 [root@VM_0_11_centos ~]# yum check-update #更新acl软件 [root@VM_0_11_centos ~]# yum update acl -y #如果执行下面的命令,很危险 [root@VM_0_11_centos ~]# yum update -y
使用yum删除软件包的方式
#先安装一个samba软件 [root@VM_0_11_centos ~]# yum install samba -y #删除该软件包,会删除依赖, 但是我们尽可能不要使用删除软件操作 [root@VM_0_11_centos ~]# yum erase samba -y [root@VM_0_11_centos ~]# yum remove samba -y
yum仓库相关指令
#列出yum源可用的软件仓库 [root@VM_0_11_centos ~]# yum repolist #列出全部yum源可用和禁用的仓库 [root@VM_0_11_centos ~]# yum repolist all #启用软件包 建议:直接修改配置文件 [root@VM_0_11_centos ~]# yum-config-manager --enable #查看这个文件或命令属于哪个包 yum provides /etc/my.cnf yum provides cd
yum缓存相关指令
#缓存yum源软件仓库, xml元数据文件 [root@VM_0_11_centos ~]# yum makecache #缓存软件包, 修改yum全局配置文件 [root@VM_0_11_centos ~]# vim /etc/yum.conf [main] cachedir=/var/cache/yum/$basearch/$releasever keepcache=1 //启动缓存 #查看缓存的xml文件 [root@VM_0_11_centos ~]# ls /var/cache/yum/x86_64/7/base/ #查看缓存软件包路径 [root@VM_0_11_centos ~]# /var/cache/yum/x86_64/7/ #另一种缓存rpm包方式 #1.安装插件支持只下载软件包不安装 [root@VM_0_11_centos ~]# yum install -y yum-plugin-downloadonly #2.将软件下载至指定目录 [root@VM_0_11_centos ~]# yum install httpd -y --downloadonly --downloaddir=/tmp #清除所有yum缓存 [root@VM_0_11_centos ~]# yum clean all #只清除缓存的软件包 [root@VM_0_11_centos ~]# yum clean packages
yum包组相关指令
#列出已经安装和所有可使用的软件组 [root@VM_0_11_centos ~]# yum groups list #安装一整个组的软件 [root@VM_0_11_centos ~]# yum groups install Development tools \ Compatibility libraries \ Base Debugging Tools #yum删除包组 [root@VM_0_11_centos ~]# yum groups remove -y Base
yum历史命令
#查看历史执行yum命令 [root@VM_0_11_centos ~]# yum history #查询历史执行yum命令ID详细信息 [root@VM_0_11_centos ~]# yum history info N #撤销历史执行过的yum命令 [root@VM_0_11_centos ~]# yum history undo N
yum的配置一般有两种方式:
vim /etc/yum.cnf cachedir=/var/cache/yum/$basearch/$releasever //缓存目录 keepcache=0 //缓存软件包, 1启动 0 关闭 debuglevel=2 //调试级别 logfile=/var/log/yum.log //日志记录位置 exactarch=1 //检查平台是否兼容 obsoletes=1 //检查包是否废弃 gpgcheck=1 //检查来源是否合法,需要有制作者的公钥信息 plugins=1 //是否启用查询 installonly_limit=5 bugtracker_url # metadata_expire=90m //每小时手动检查元数据 # in /etc/yum.repos.d //包含repos.d目录
源码包指的是开发编写好的程序源代码,但并没有将其编译为一个能正常使用的工具。
优点:
缺点:
常见的软件,源码包均可以去官方网站获取源码包。
例如:
mysql
nginx
php
…
安装源码包,必须要经历4个步骤
1.解压 tar
2.生成 ./configure
3.编译 make
4.安装 make install
下面通过编译Nginx来深入理解源码包安装
#1.基础环境准备 [root@VM_0_11_centos ~]# yum install -y gcc make wget #2.下载源码包(源码包一定要上官方站点下载,其他站点不安全) [root@VM_0_11_centos ~]# mkdir -p /soft/src [root@VM_0_11_centos src]# cd /soft/src [root@VM_0_11_centos src]# wget http://nginx.org/download/nginx-1.12.2.tar.gz #3.解压源码包,并进入相应目录 [rroot@VM_0_11_centos src]# tar xf nginx-1.12.2.tar.gz [root@VM_0_11_centos src]# cd nginx-1.12.2 #4.配置相关的选项,并生成Makefile [root@VM_0_11_centos nginx-1.12.2]# ./configure --help|head --help print this message --prefix=PATH set installation prefix --sbin-path=PATH set nginx binary pathname --modules-path=PATH set modules path --conf-path=PATH set nginx.conf pathname --error-log-path=PATH set error log pathname --pid-path=PATH set nginx.pid pathname --lock-path=PATH set nginx.lock pathname #后面的内容省略了,使用 ./configure --help 命令查看可以使用的选项。 #一般常用的有 --prefix=PREFIX 这个选项的意思是定义软件包安装到哪里。 #建议,源码包都是安装在/soft/目录下。 #5.指定编译参数 [root@VM_0_11_centos nginx-1.12.2]# ./configure --prefix=/soft/nginx-1.12.2 --user=nginx --group=nginx --with-http_ssl_module --with-http_stub_status_module #6.验证这一步命令是否成功, 非0d都不算成功 [root@VM_0_11_centos nginx-1.12.2]# echo $? 0 #7.编译并安装 [root@VM_0_11_centos nginx-1.12.2]# make [root@VM_0_11_centos nginx-1.12.2]# make install [root@VM_0_11_centos nginx-1.12.2]# echo $?
checking for C compiler ... not found ./configure: error: C compiler cc is not found #解决方案 安装相应软件 # yum -y install gcc gcc-c++ make ./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. #解决方案 安装相应软件或配置软件目录 --with-pcre=<path> # yum install -y pcre ./configure: error: the HTTP gzip module requires the zlib library. You can either disable the module by using --without- http_gzip_module option, or install the zlib library into the system, or build the zlib library statically from the source with nginx by using --with-zlib=<path> option. #解决方案: 安装相应软件或配置软件目录 --with-zlib=<path> # yum -y install zlib ./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. #解决方案 安装相应软件或配置软件目录 --with-openssl=<path> # yum -y install openssl