1.把你系统中原有的base源更新为阿里云的源
wget -O /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-7.repo
2.在你的系统中增加一个epel源,请使用阿里云的镜像
wget -O /etc/yum.repos.d/epel.repo http://mirrors.aliyun.com/repo/epel-7.repo
3.给系统添加一个zabbix的源的仓库
[root@oldboy ~]# yum install https://mirrors.aliyun.com/zabbix/zabbix/4.0/rhel/7/x86_64/zabbix-release-4.0-2.el7.noarch.rpm
下载一个zabbix-release包,它会自动创建一个仓库
4.把你系统中的base和epel源改成清华源的镜像
清华的base源修改(跟着提示步骤做):https://mirrors.tuna.tsinghua.edu.cn/help/centos/
清华的epel源修改:https://mirrors.tuna.tsinghua.edu.cn/help/epel/
5.简单下载一个命令ntpdate
[root@oldboy ~]# yum provides ntpdate
[root@oldboy ~]# yum install ntpdate-4.2.6p5-28.el7.centos.x86_64 -y
6.更新ntpdate这个命令的版本
[root@oldboy ~]# yum update ntpdate -y
7.卸载系统中的ntpdate这个命令
[root@oldboy ~]# yum remove ntpdate
8.显示系统中可用的yum源仓库
[root@oldboy ~]# yum repolist
Loaded plugins: fastestmirror
Loading mirror speeds from cached hostfile
repo id repo name status
base_qinghua/7/x86_64 CentOS-7 - Base 10,019
epel_qinghua/x86_64 Extra Packages for Enterprise Linux 7 13,343
extras/7/x86_64 CentOS-7 - Extras 435
updates/7/x86_64 CentOS-7 - Updates 2,500
repolist: 26,297
9.显示系统中所有以tre开头的软件包
[root@oldboy ~]# yum list all | grep "^tre"
10.显示系统中可更新的软件包
[root@oldboy ~]# yum check-update
11.显示系统中已经安装过得软件包
[root@oldboy ~]# yum list installed
12.查看net-tools这个软件包的详细信息
[root@oldboy ~]# rpm -qi net-tools
13.查看scp这个命令来源于哪个软件包。
[root@oldboy ~]# rpm -qf $(which scp)
openssh-clients-7.4p1-16.el7.x86_64
[root@oldboy ~]# yum provides scp
14.清理本地的软件包缓存
[root@oldboy ~]# yum clean packages
15.查看一下nginx这个软件包都依赖哪些软件
[root@oldboy ~]# yum deplist nginx
[root@oldboy ~]# yum provides nginx
[root@oldboy ~]# yum install nginx-1.12.2-3.el7.x86_64
gd libXpm nginx-all-modules nginx-filesystem nginx-mod-http-geoip nginx-mod-http-image-filter
nginx-mod-http-perl nginx-mod-http-xslt-filter nginx-mod-stream
16.查看yum的历史记录
[root@oldboy ~]# yum history
17.了解一下yum的包组有关的命令参数
yum group list 查看所有软件包组
yum group install -y 安装软件包组
yum group remove -y 删除软件包组
18.总结一下yum命令的常用参数。
yum install 安装软件
yum remove 卸载软件
yum list 查看所有软件包
yum provides 查看命令所属的软件包
yum repolist 查看当前的yum仓库
yum update 更新软件
------------------
yum history 查看历史执行的yum命令
yum clean all packages 清除所有软件包缓存
yum makecache 生成缓存
yum reinstall 重装
----------------------
-y 默认确认
19.把你的base和epel的源改成阿里云的镜像源。
[root@oldboy ~]# wget -O /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-7.repo
[root@oldboy ~]# wget -O /etc/yum.repos.d/epel.repo http://mirrors.aliyun.com/repo/epel-7.repo
[root@oldboy ~]# yum repolist
20.自主搭建一个本地yum仓库,书写好操作过程,rpm包可以使用磁盘镜像中的rpm包。
[root@oldboy ~]# mount /dev/cdrom /mnt
[root@oldboy ~]# gzip /etc/yum.repos.d/*
[root@oldboy ~]# vim /etc/yum.repos.d/local_cdrom
[local_cdrom]
name = wanzgehua's
baseurl = file:///mnt
enabled = 1
gpgcheck = 0
[root@oldboy ~]# makecache
[root@oldboy ~]# yum install rpm