鏡像下載、功能變數名稱解析、時間同步請點擊 阿裡雲開源鏡像站 CentOS 1.備份原來的源 在控制台輸入mv /etc/yum.repos.d/CentOS-Base.repo /etc/yum.repos.d/CentOS-Base.repo.backup備份原本的源 2、下載新的 CentOS-Bas ...
鏡像下載、功能變數名稱解析、時間同步請點擊 阿裡雲開源鏡像站
CentOS
1.備份原來的源
在控制台輸入mv /etc/yum.repos.d/CentOS-Base.repo /etc/yum.repos.d/CentOS-Base.repo.backup備份原本的源
2、下載新的 CentOS-Base.repo 到 /etc/yum.repos.d/
wget -O /etc/yum.repos.d/CentOS-Base.repo https://mirrors.aliyun.com/repo/Centos-7.repo
3、非阿裡雲ECS用戶會出現 Couldn't resolve host 'mirrors.cloud.aliyuncs.com' 信息,不影響使用,可以修改配置
sed -i -e '/mirrors.cloud.aliyuncs.com/d' -e '/mirrors.aliyuncs.com/d' /etc/yum.repos.d/CentOS-Base.repo
4、生成緩存
yum makecache
5、查看當前源
yum repolist
Ubuntu
1.備份原來的源
在控制台輸入sudo cp /etc/apt/sources.list /etc/apt/source.list.bk備份原本的源
2.修改源
- 在控制台輸入sudo vim /etc/apt/source.list會進入文件
- 按O即可進行插入代碼,首先先將文件內的每行前面都加上#
- 接著在尾部粘貼如下代碼
deb http://mirrors.aliyun.com/ubuntu/ focal main restricted universe multiverse
deb-src http://mirrors.aliyun.com/ubuntu/ focal main restricted universe multiverse
deb http://mirrors.aliyun.com/ubuntu/ focal-security main restricted universe multiverse
deb-src http://mirrors.aliyun.com/ubuntu/ focal-security main restricted universe multiverse
deb http://mirrors.aliyun.com/ubuntu/ focal-updates main restricted universe multiverse
deb-src http://mirrors.aliyun.com/ubuntu/ focal-updates main restricted universe multiverse
deb http://mirrors.aliyun.com/ubuntu/ focal-proposed main restricted universe multiverse
deb-src http://mirrors.aliyun.com/ubuntu/ focal-proposed main restricted universe multiverse
deb http://mirrors.aliyun.com/ubuntu/ focal-backports main restricted universe multiverse
deb-src http://mirrors.aliyun.com/ubuntu/ focal-backports main restricted universe multiverse
- 按Esc可以退出插入狀態,接著按出 :wq 則會在左下角出現字元,按回車則保存成功
更新源配置及系統
- 在控制台輸入
sudo apt-get update
sudo apt-get upgrade
- 接著按回車即可進行更新
- 過程中出現此類網址則更換源成功
原文鏈接:https://juejin.cn/post/7111738157388791822