阿里云源加速

2024-07-18 711 0

CentOS

CentOS 7- 配置阿里镜像源

curl -o /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-7.repo
sed -i -e '/mirrors.cloud.aliyuncs.com/d' -e '/mirrors.aliyuncs.com/d' /etc/yum.repos.d/CentOS-Base.repo
yum clean all
yum makecache

Ubuntu

sed -i 's#http://archive.ubuntu.com#https://mirrors.aliyun.com#g' /etc/apt/sources.list
apt-get update

Rocky9

sed -e 's|^mirrorlist=|#mirrorlist=|g' \
    -e 's|^#baseurl=http://dl.rockylinux.org/$contentdir|baseurl=https://mirrors.aliyun.com/rockylinux|g' \
    -i.bak \
    /etc/yum.repos.d/rocky-*.repo
dnf makecache

Docker

docker CE 镜像源站

curl -o /etc/yum.repos.d/docker-ce.repo http://mirrors.aliyun.com/docker-ce/linux/centos/docker-ce.repo
yum clean all
yum makecache

相关文章

OpenResty ModSecurity 编译
vCenter 7.0 禁用 vSphere 集群服务 (vCLS)
ESXI 7.0 分布式交换机 LACP 配置
yum 和 apt-get 安装指定版本
DELL R640 RAC0504 无机柜可显示
MacBook系统升级到Sequoia15.1 SSH密钥无权限解决

发布评论