猫咪家
首页
分类
标签
归档
关于
管理员
2022-05-14
1380
CentOS 8更换 YUM源
CentOS8更换国内YUM源 rm -rf /etc/yum.repos.d/* wget -O /etc/yum.repos.d/CentOS-cnnic.repo https://feieryun.oss-cn-zhangjiakou.aliyuncs.com/linux/etc/yum.repos.d/CentOS-cnnic.repo 这里是阿里云的源 wget -O /etc/yum.repos.d/CentOS-aliyun.repo http://mirrors.aliyun.com/repo/Centos-8.repo 安装EPEL的方法,首先正常安装源 yum install epel-release 也可以是这样 yum install -y https://mirrors.aliyun.com/epel/epel-release-latest-8.noarch.rpm 但EPEL安装之后,还需要批量替换源站 sed -i 's|^#baseurl=https://download.fedoraproject.org/pub|baseurl=https://mirrors.aliyun.com|' /etc/yum.repos.d/epel* sed -i 's|^metalink|#metalink|' /etc/yum.repos.d/epel* yum源就是软件仓库,centos生命周期结束,系统文件默认的yum地址无用了,需要换一个yum源地址,这里更新为阿里云的。 步骤: 1.以root用户打开/etc/yum.repos.d文件夹,找到三个文件CentOS-AppStream.repo、CentOS-Base.repo、CentOS-Extras.repo 2.加#注释掉原来的地址mirrorlist=http://mirrorlist.centos.org/? 3.在注释掉的下一行分别加上阿里云镜像源地址,可以看到文件名与下面要替换的地址是对应的 baseurl=https://mirrors.aliyun.com/centos/$releasever-stream/AppStream/$basearch/os/ baseurl=https://mirrors.aliyun.com/centos/$releasever-stream/BaseOS/$basearch/os/ baseurl=https://mirrors.aliyun.com/centos/$releasever-stream/extras/$basearch/os/ 4.在终端输入yum clean all 回车执行 5.在终端输入yum makecache 回车执行 6.完成。 yum list 列出所有已安装和可以安装的软件 yum install 包名 安装具体软件 yum update 包名 更新具体包,若不写包名,则更新所有软件
###Hello world!
Linux
评论
发布
留言
评论