Linux-yum

Hanze | Oct 21, 2022 min read

添加yum源:

# 对于 CentOS 7
sudo sed -e 's|^mirrorlist=|#mirrorlist=|g' \
         -e 's|^#baseurl=http://mirror.centos.org|baseurl=https://mirrors.tuna.tsinghua.edu.cn|g' \
         -i.bak \
         /etc/yum.repos.d/CentOS-*.repo

# 对于 CentOS 8
sudo sed -e 's|^mirrorlist=|#mirrorlist=|g' \
         -e 's|^#baseurl=http://mirror.centos.org/$contentdir|baseurl=https://mirrors.tuna.tsinghua.edu.cn/centos|g' \
         -i.bak \
         /etc/yum.repos.d/CentOS-*.repo

注意其中的*通配符,如果只需要替换一些文件中的源,请自行增删。 注意,如果需要启用其中一些 repo,需要将其中的 enabled=0 改为 enabled=1。 最后,更新软件包缓存

sudo yum makecache

搜索所有的版本:

(docker 为例)

yum list docker-ce --showduplicates | sort -r

安装指定版本软件:

(docker 为例)

yum install docker-ce-19.03.12
comments powered by Disqus