5 9 C L O U D
活动促销
  • 00
  • 00
  • 00

香港三网精品CTG CN2线路促销活动进行中,CDN 2元=20G!

gift box gift box circle circle not found not found gift box dots shape
not found
  • 00
  • 00
  • 00
  • 00
了解详情
香港2H4G10M 原价¥ 290.00

¥ 20.00 /月

立刻购买
香港4H8G10M 原价¥ 310.00

¥ 40.00 /月

立刻购买
美国1H1G 原价¥ 20.00

¥ 10.00 /月

立刻购买

欢迎访问59Cloud,在这里选择你需要的云计算产品吧~

遇到问题了吗

联系我们获得帮助

获取支持

我是一个侧边栏,看来这个界面没写完跑去摸鱼了,要不?你到时候再来看看这里有没有做好?
feature
author
作者名称
59Cloud
文章分类
新闻
发布时间
2024-05-07 21:19
阅读数量
1244 次

Linux系统默认yum为美国节点,可更换为阿里云yum提高下载速度:

 

为了在CentOS系统上更换为阿里云的YUM源,你需要按照以下步骤操作:

  1. 备份当前的YUM源配置文件。
  2. 删除或重命名 /etc/yum.repos.d 目录下的其他.repo文件。
  3. 下载阿里云的CentOS YUM源配置文件。
  4. 运行YUM源更新命令。

以下是具体的命令:

bash# 1. 备份当前的YUM源配置文件
sudo mv /etc/yum.repos.d/CentOS-Base.repo /etc/yum.repos.d/CentOS-Base.repo.backup

# 2. 下载阿里云的CentOS YUM源配置文件
sudo curl -o /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-7.repo

# 3. 运行YUM源更新命令
sudo yum clean all
sudo yum makecache

确保替换的YUM源配置文件中的版本与你的CentOS版本相匹配。如果你使用的是CentOS 8,那么应该下载对应的阿里云CentOS 8 YUM源配置文件。

 

Ubuntu更换阿里云软件源

1. 备份

sudo cp /etc/apt/sources.list /etc/apt/sources.list.bak 

2.修改

sudo vim /etc/apt/sources.list

将source.list文件内容替换成下面的

deb http://mirrors.aliyun.com/ubuntu/ trusty main restricted universe multiverse
deb http://mirrors.aliyun.com/ubuntu/ trusty-security main restricted universe multiverse
deb http://mirrors.aliyun.com/ubuntu/ trusty-updates main restricted universe multiverse
deb http://mirrors.aliyun.com/ubuntu/ trusty-proposed main restricted universe multiverse
deb http://mirrors.aliyun.com/ubuntu/ trusty-backports main restricted universe multiverse
deb-src http://mirrors.aliyun.com/ubuntu/ trusty main restricted universe multiverse
deb-src http://mirrors.aliyun.com/ubuntu/ trusty-security main restricted universe multiverse
deb-src http://mirrors.aliyun.com/ubuntu/ trusty-updates main restricted universe multiverse
deb-src http://mirrors.aliyun.com/ubuntu/ trusty-proposed main restricted universe multiverse
deb-src http://mirrors.aliyun.com/ubuntu/ trusty-backports main restricted universe multiverse

3. 更新

sudo apt-get update