對Yum源的一些優化配置
添加時間:2019-5-7 20:53:20
添加:
思海網絡
設置163源
網易(163)yum源是國內最好的yum源之一 ,無論是速度還是軟件版本,都非常的不錯,將yum源設置為163yum,可以提升軟件包安裝和更新的速度,同時避免一些常見軟件版本無法找到。具體設置方法如下:
1,進入yum源配置目錄
cd /etc/yum.repos.d
2,備份系統自帶的yum源
mv CentOS-Base.repo CentOS-Base.repo.bk
下載163網易的yum源:
wget http://mirrors.163.com/.help/CentOS6-Base-163.repo
3,更新玩yum源后,執行下邊命令更新yum配置,使操作立即生效
yum makecache
4,除了網易之外,國內還有其他不錯的yum源,比如中科大和搜狐的,大家可以根據自己需求下載
中科大的yum源:
wget http://centos.ustc.edu.cn/CentOS-Base.repo
sohu的yum源
wget http://mirrors.sohu.com/help/CentOS-Base-sohu.repo
理論上講,這些yum源redhat系統以及fedora也是可以用 的,但是沒有經過測試,需要的站長可以自己測試一下。
使用Cobbler搭建自己的yum源
Cobbler使用介紹:
進入cobller界面,點擊”Repos”,新建Repo“create new repo”,我這里已經創建好了4個yum源,下拉go旁邊的選項,選中“Reposync”,勾選repo項目,可進行yum源同步。
cobbler創建yum源原理很簡單,就是把外面的yum源同步過來,所以下面配置repo項目的時候,”mirror”項填選可用的yum源即可,執行Reposync時,cobbler就會把外面的軟件包同步過來。
這里我們架構”Arch”選擇x86_64(64位系統),種類”Breed”選擇”yum”;”mirror”項填選外部yum源。
我用的是阿里云的yum源
CentOS-Base:http://mirrors.aliyun.com/centos/6/os/x86_64/
CentOS-updates:http://mirrors.aliyun.com/centos/6/updates/x86_64/
CentOS-extras:http://mirrors.aliyun.com/centos/6/extras/x86_64/
Centos-epel:http://mirrors.aiyun.com/epel/6/x86_64/
由于更新的軟件包較大,我單獨掛載了一塊磁盤 把它link到/var/www/cobbler/repo_mirror/(yum源軟件存放的目錄)
# 創建一個CentOS-Base.repo文件(把他放到/var/www/cobbler/ks_mirror/mirror_name上面(mirro_name是你建的鏡像源的名字),這樣服務器就能下載使用了)
[core-0]
name=core
baseurl=http://192.168.6.170/cobbler/ks_mirror/Centos6.4_mini-x86_64/
enabled=1
gpgcheck=0
priority=1
[centos6.4-x86_64-base]
name=centos6.4-x86_64-base
baseurl=http://192.168.6.170/cobbler/repo_mirror/Centos6.4-x86_64-base/
enabled=1
priority=99
gpgcheck=0
[centos6.4-x86_64-updates]
name=centos6.4-x86_64-update
baseurl=http://192.168.6.170/cobbler/repo_mirror/Centos6.4-x86_64-update/
enabled=1
priority=99
gpgcheck=0
[centos6.4-x86_64-extras]
name=centos6.4-x86_64-extras
baseurl=http://192.168.6.170/cobbler/repo_mirror/Centos6.4-x86_64-extras/
enabled=1
priority=99
gpgcheck=0
[centos6.4-x86_64-epel]
name=centos6.4-x86_64-epel
baseurl=http://192.168.6.170/cobbler/repo_mirror/Centos6.4-x86_64-epel/
enabled=1
priority=99
gpgcheck=0
關鍵字:Yum源、優化配置
新文章:
- CentOS7下圖形配置網絡的方法
- CentOS 7如何添加刪除用戶
- 如何解決centos7雙系統后丟失windows啟動項
- CentOS單網卡如何批量添加不同IP段
- CentOS下iconv命令的介紹
- Centos7 SSH密鑰登陸及密碼密鑰雙重驗證詳解
- CentOS 7.1添加刪除用戶的方法
- CentOS查找/掃描局域網打印機IP講解
- CentOS7使用hostapd實現無AP模式的詳解
- su命令不能切換root的解決方法
- 解決VMware下CentOS7網絡重啟出錯
- 解決Centos7雙系統后丟失windows啟動項
- CentOS下如何避免文件覆蓋
- CentOS7和CentOS6系統有什么不同呢
- Centos 6.6默認iptable規則詳解