博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Linux修改yum源为阿里云、网易、中国科技大学
阅读量:6196 次
发布时间:2019-06-21

本文共 2028 字,大约阅读时间需要 6 分钟。

说明

Linux系统默认yum源速度慢,最好修改为国内的yum源,国内阿里、网易、中国科技大学等都是非常不错的,更新快,速度快,选择其一就好。下面说明如何使用。

 

1.阿里

 

1.1备份当前的yum源

mv /etc/yum.repos.d /etc/yum.repos.d.backup

 

1.2下载新的CentOS-Base.repo 到/etc/yum.repos.d/

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
CentOS 
5
wget 
-
/
etc
/
yum.repos.d
/
CentOS
-
Base.repo http:
/
/
mirrors.aliyun.com
/
repo
/
Centos
-
5.repo
或者
curl 
-
/
etc
/
yum.repos.d
/
CentOS
-
Base.repo 
  
 
CentOS 
6
wget 
-
/
etc
/
yum.repos.d
/
CentOS
-
Base.repo http:
/
/
mirrors.aliyun.com
/
repo
/
Centos
-
6.repo
或者
curl 
-
/
etc
/
yum.repos.d
/
CentOS
-
Base.repo http:
/
/
mirrors.aliyun.com
/
repo
/
Centos
-
6.repo
 
 
CentOS 
7
wget 
-
/
etc
/
yum.repos.d
/
CentOS
-
Base.repo http:
/
/
mirrors.aliyun.com
/
repo
/
Centos
-
7.repo
或者
curl 
-
/
etc
/
yum.repos.d
/
CentOS
-
Base.repo http:
/
/
mirrors.aliyun.com
/
repo
/
Centos
-
7.repo

1.3 清空并生成缓存

yum clean all

yum makecache

 

备注

yum 会把下载的软件包和header存储在cache中(默认路径/var/cache/yum/),而不自动删除。如果觉得占用磁盘空间,可以使用yum clean指令进行清除,更精确 的用法是yum clean headers清除header,yum clean packages清除下载的rpm包,yum clean all全部清除。

 

2.网易

2.1备份当前的yum源

1
mv 
/
etc
/
yum.repos.d
/
CentOS
-
Base.repo 
/
etc
/
yum.repos.d
/
CentOS
-
Base.repo.backup

 

2.2 下载对应版本repo文件, 放入/etc/yum.repos.d/

1
2
3
4
5
http:
/
/
mirrors.
163.com
/
.
help
/
CentOS7
-
Base
-
163.repo
  
http:
/
/
mirrors.
163.com
/
.
help
/
CentOS6
-
Base
-
163.repo
  
http:
/
/
mirrors.
163.com
/
.
help
/
CentOS5
-
Base
-
163.repo

 

2.3运行以下命令生成缓存

yum clean all

yum makecache

 

3. 中科大

 

3.1首先备份CentOS-Base.repo

mv /etc/yum.repos.d/CentOS-Base.repo /etc/yum.repos.d/CentOS-Base.repo.backup

 

3.2下载对应版本的CentOS-Base.repo, 放入/etc/yum.repos.d/

1
2
3
4
5
6
7
8
Centos5
https:
/
/
lug.ustc.edu.cn
/
wiki
/
_export
/
code
/
mirrors
/
help
/
centos?codeblock
=
1
 
Centos6
https:
/
/
lug.ustc.edu.cn
/
wiki
/
_export
/
code
/
mirrors
/
help
/
centos?codeblock
=
2
  
Centos7
https:
/
/
lug.ustc.edu.cn
/
wiki
/
_export
/
code
/
mirrors
/
help
/
centos?codeblock
=
3

 

3.3运行以下命令生成缓存

yum clean all

yum makecache

本文转自pizibaidu 51CTO博客,原文链接:http://blog.51cto.com/pizibaidu/1948695,如需转载请自行联系原作者

你可能感兴趣的文章
C++STL之vector用法总结
查看>>
javascript face ++
查看>>
SMR磁盘学习12---drivemanaged SMR 磁盘总结
查看>>
Uva 10085 - The most distant state
查看>>
虚拟内存安排
查看>>
select into 与 insert into select
查看>>
[HAOI2016]食物链
查看>>
[BZOJ3223]文艺平衡树
查看>>
Internet Download Manager IDM 破解器
查看>>
架构设计从这5点考虑,能帮后期运维很大忙!
查看>>
您必须先调用“WebSecurity.InitializeDatabaseConnection”方法,然后再调用"WebSecurity"类的任何其他方法。...
查看>>
【JDK1.8】JDK1.8集合源码阅读——TreeMap(二)
查看>>
json 解析豆瓣ApiURL
查看>>
C# - 值类型、引用类型&走出误区,容易错误的说法
查看>>
20171127-构建之法:现代软件工程-阅读笔记
查看>>
java 基础2
查看>>
SSRF(服务端请求伪造)
查看>>
MySQL主从延时这么长,要怎么优化?
查看>>
python os模块
查看>>
python面试大全
查看>>