centos8 配置阿里源 最小化安装

回眸只為那壹抹淺笑 提交于 2020-08-12 02:44:05

下载 centos8

下载阿里云镜像仓库中 centos8 用于网络安装的镜像文件 https://mirrors.aliyun.com/centos/8/isos/x86_64/CentOS-8-x86_64-1905-boot.iso 534M

完整安装包要 6.64G https://mirrors.aliyun.com/centos/8/isos/x86_64//CentOS-8-x86_64-1905-dvd1.iso

安装界面配置

安装源

在安装界面:先设置网络,然后设置软件源,之后才能选择安装模式:

http://mirrors.aliyun.com/centos/8/BaseOS/x86_64/os/

关键点:

  1. 协议选择 http
  2. URL type: repository URL
  3. 路径填写 mirrors.aliyun.com/centos/8/BaseOS/x86_64/os/ 最后有 斜线

软件选择

选最小化安装即可

进系统后修改软件源

cd /etc/yum.repos.d

vi CentOS-Base.repo

## 修改为如下内容 CentOS-Base.repo
[BaseOS]
name=CentOS-$releasever - Base
baseurl=https://mirrors.aliyun.com/centos/$releasever/BaseOS/$basearch/os/
gpgcheck=1
enabled=1
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-centosofficial

vi CentOS-AppStream.repo

## CentOS-AppStream.repo
[AppStream]
name=CentOS-$releasever - AppStream
baseurl=https://mirrors.aliyun.com/centos/$releasever/AppStream/$basearch/os/
gpgcheck=1
enabled=1
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-centosofficial

其他文件在默认情况下均未启用.也可以配置成阿里源.

如配置extras,参照阿里云镜像的目录

该路径下有 media.repo 文件存在

缓存元数据

yum makecache

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!