阿里源配置
1.进入​​​yum​​源的配置文件下

cd   /etc/yum.repos.d/   # 进入到yum源的配置文件中
rm -rf * # 清空所有的yum源文件
wget -O /etc/yum.repos.d/CentOS-Base.repo https://mirrors.aliyun.com/repo/Centos-7.repo
# 下载阿里云的官方镜像源

 

2.yum源的​​必敲​​命令:

#以下两条命令在换yum源之后必做,不然可能会出问题!
yum clean all # 清理yum缓存
yum makecache # 缓存软件包信息(提高搜索/安装软件的速度)

 

3.yum的基础命令(按使用度进行排列):

yum install -y 软件名      # 下载软件
yum provides 软件名 # 查询软件所归属的软件包
yum reinstall 软件名称 # 重装软件
yum remove 软件名 # 卸载软件
yum erase 软件名 # 卸载软件
yum repolist # 查询yum源信息
yum search 软件名(mysql) # 查找软件
yum delist 软件名 # 查询软件依赖关系
yum list # 查看系统已经安装好的软件和没安装好的软件
yum groupinfo # 查看软件组包含的具体软件
yum groupinstall '软件组名称' # 安装软件组(如果软件或软件组名称内有空格,要给空格转义或者加引号)