centos8配置本地源并且配置完后不需要依赖镜像
时间: 2024-02-07 13:03:19 浏览: 56
centos8基础镜像
5星 · 资源好评率100%
可以使用以下步骤配置 CentOS8 的本地源并且不依赖镜像:
1. 创建本地源的目录:sudo mkdir -p /localrepo/CentOS/8/BaseOS/x86_64/<br>
2. 下载 CentOS 官网上的镜像到本地源目录:sudo dnf download --destdir=/localrepo/CentOS/8/BaseOS/x86_64/ --arch=x86_64 --releasever=8 BaseOS<br>
3. 创建本地源元数据:sudo createrepo /localrepo/CentOS/8/BaseOS/x86_64/
4. 修改 CentOS 源配置文件 "/etc/yum.repos.d/CentOS-Base.repo":<br>
[BaseOS]<br>
name=CentOS-$releasever - Base<br>
baseurl=file:///localrepo/CentOS/8/BaseOS/x86_64/<br>
gpgcheck=1<br>
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-centosofficial<br>
enabled=1<br>
5. 清除本地缓存:sudo dnf clean all
6. 使用本地源安装包:sudo dnf install <package-name>
笑话时间:<br>
为什么程序员总是把 0 和 1 放在一起呢? 因为他们不喜欢单身。哈哈哈哈哈。
阅读全文