zoukankan      html  css  js  c++  java
  • 几个国内速度最快的centos yum(更新源)

    • http://ftp.sjtu.edu.cn/centos/,上海交大,但服务器位于北京,中国教育网网络中心,我看像是朝阳区那边的IP,以前在那边上过班,下载速度高达十M。 北方用户与教育网用户推荐,速度飞快。 CentOS版本也挺多,现在用5.2和5.3的用户较新。 CenOS-Base.repo:无连接,麻烦手动
    • http://centos.ustc.edu.cn,中国科技大学,服务器位于合肥。 南方用户推荐。 同样的,CenOS版本非常丰富,适合长期使用。 CenOS-Base.repo:http://centos.ustc.edu.cn/CentOS-Base.repo
    • http://mirrors.sohu.com/,sohu的开源镜像服务器,服务器位于山东省联通。 速度飞快,全国用户推荐,经常用FireFox下载CD镜像。 我看几乎支持目前所有的开源项目,可以看到该镜像服务器为FreeBSD、archLinux、fedora、CentOS、ubuntu、debian、gentoo、 slackware主流开源系统,以及cygwin、mysqlphpnginx等主流的开源程序提供更新。 这个镜像服务器更新还比较及时的,频率为每两天更新一次。 顺道贴上CentOS的CD和DVD下载地址: http://mirrors.sohu.com/centos/5.4/isos/i386/CentOS-5.4-i386-bin-DVD.iso http://mirrors.sohu.com/centos/5.4/isos/i386/CentOS-5.4-i386-LiveCD.iso 下载CentOS-Base-sohu.repo, 放入/etc/yum.repos.d/
    • http://mirrors.163.com/centos,网易的开源服务器镜像 速度也不错,全国用户推荐. 下载CentOS-Base-163.repo, 放入/etc/yum.repos.d/

    以下是手动更新YUM配置文件的方法:
    修改/etc/yum.repos.d/CentOS-Base.repo:
    [base]
    name=CentOS-5 - Base
    #mirrorlist=http://mirrorlist.centos.org/?release=$releasever5&arch=$basearch&
    repo=os
    #baseurl=http://mirror.centos.org/centos/$releasever/os/$basearch/
    baseurl=http://ftp.sjtu.edu.cn/centos/5.0/os/$basearch/
    gpgcheck=1
    gpgkey=http://mirror.centos.org/centos/RPM-GPG-KEY-centos5
    #released updates
    [update]
    name=CentOS-5 - Updates
    #mirrorlist=http://mirrorlist.centos.org/?release=4&arch=$basearch&repo=updates
    baseurl=http://ftp.sjtu.edu.cn/centos/5.0/updates/$basearch/
    gpgcheck=1
    gpgkey=http://mirror.centos.org/centos/RPM-GPG-KEY-centos5
    #packages used/produced in the build but not released
    [addons]
    name=CentOS-5 - Addons
    #mirrorlist=http://mirrorlist.centos.org/?release=4&arch=$basearch&repo=addons
    baseurl=http://ftp.sjtu.edu.cn/centos/5.0/addons/$basearch/
    gpgcheck=1
    gpgkey=http://mirror.centos.org/centos/RPM-GPG-KEY-centos5
    #additional packages that may be useful
    [extras]
    name=CentOS-5 - Extras
    #mirrorlist=http://mirrorlist.centos.org/?release=4&arch=$basearch&repo=extras
    baseurl=http://ftp.sjtu.edu.cn/centos/5.0/extras/$basearch/
    gpgcheck=1
    gpgkey=http://mirror.centos.org/centos/RPM-GPG-KEY-centos5
    #additional packages that extend functionality of existing packages
    [centosplus]
    name=CentOS-5 - Plus
    #mirrorlist=http://mirrorlist.centos.org/?release=4&arch=$basearch&repo=centosplus
    baseurl=http://ftp.sjtu.edu.cn/centos/5.0/centosplus/$basearch/
    gpgcheck=1
    enabled=0
    gpgkey=http://mirror.centos.org/centos/RPM-GPG-KEY-centos5
    #contrib - packages by Centos Users
    [contrib]
    name=CentOS-5 - Contrib
    #mirrorlist=http://mirrorlist.centos.org/?release=4&arch=$basearch&repo=contrib
    baseurl=http://ftp.sjtu.edu.cn/centos/5.0/contrib/$basearch/
    gpgcheck=1
    enabled=0
    gpgkey=http://mirror.centos.org/centos/RPM-GPG-KEY-centos5

  • 相关阅读:
    最大子数组问题(分治策略实现)
    Solving the Detached Many-to-Many Problem with the Entity Framework
    Working With Entity Framework Detached Objects
    Attaching detached POCO to EF DbContext
    如何获取qq空间最近访问人列表
    Health Monitoring in ASP.NET 2.0
    problem with displaying the markers on Google maps
    WebMatrix Database.Open… Close() and Dispose()
    Accessing and Updating Data in ASP.NET: Retrieving XML Data with XmlDataSource Control
    Create web setup project that has crystal reports and sql script run manually on client system
  • 原文地址:https://www.cnblogs.com/ifso/p/4874148.html
Copyright © 2011-2022 走看看