zoukankan      html  css  js  c++  java
  • Debian 9 Stretch国内常用镜像源

     随着Debian 9的普及,但由于伟大的墙的存在,那就有必要整理一下国内的镜像站点。

    1.使用说明

    一般情况下,修改/etc/apt/sources.list文件,将Debian的默认源地址改成新的地址即可,比如将http://deb.debian.org改成https://mirrors.xxx.com,可使用以下命令:

    sed -i "s@http://deb.debian.org@https://mirrors.xxx.com@g" /etc/apt/sources.list

    若要使用https源,则需要执行apt-get install apt-transport-https,再执行apt-get update更新索引。

     

    2.常用站点列表

    163镜像站  

    deb http://mirrors.163.com/debian/ stretch main non-free contrib
    deb http://mirrors.163.com/debian/ stretch-updates main non-free contrib
    deb http://mirrors.163.com/debian/ stretch-backports main non-free contrib
    deb-src http://mirrors.163.com/debian/ stretch main non-free contrib
    deb-src http://mirrors.163.com/debian/ stretch-updates main non-free contrib
    deb-src http://mirrors.163.com/debian/ stretch-backports main non-free contrib
    deb http://mirrors.163.com/debian-security/ stretch/updates main non-free contrib
    deb-src http://mirrors.163.com/debian-security/ stretch/updates main non-free contrib

    中科大镜像站

    deb https://mirrors.ustc.edu.cn/debian/ stretch main contrib non-free
    deb-src https://mirrors.ustc.edu.cn/debian/ stretch main contrib non-free
    
    deb https://mirrors.ustc.edu.cn/debian/ stretch-updates main contrib non-free
    deb-src https://mirrors.ustc.edu.cn/debian/ stretch-updates main contrib non-free
    
    deb https://mirrors.ustc.edu.cn/debian/ stretch-backports main contrib non-free
    deb-src https://mirrors.ustc.edu.cn/debian/ stretch-backports main contrib non-free
    
    deb https://mirrors.ustc.edu.cn/debian-security/ stretch/updates main contrib non-free
    deb-src https://mirrors.ustc.edu.cn/debian-security/ stretch/updates main contrib non-free

    阿里云镜像站

    deb http://mirrors.aliyun.com/debian/ stretch main non-free contrib
    deb-src http://mirrors.aliyun.com/debian/ stretch main non-free contrib
    deb http://mirrors.aliyun.com/debian-security stretch/updates main
    deb-src http://mirrors.aliyun.com/debian-security stretch/updates main
    deb http://mirrors.aliyun.com/debian/ stretch-updates main non-free contrib
    deb-src http://mirrors.aliyun.com/debian/ stretch-updates main non-free contrib
    deb http://mirrors.aliyun.com/debian/ stretch-backports main non-free contrib
    deb-src http://mirrors.aliyun.com/debian/ stretch-backports main non-free contrib

    华为镜像站

    deb https://mirrors.huaweicloud.com/debian/ stretch main contrib non-free
    deb-src https://mirrors.huaweicloud.com/debian/ stretch main contrib non-free
    deb https://mirrors.huaweicloud.com/debian/ stretch-updates main contrib non-free
    deb-src https://mirrors.huaweicloud.com/debian/ stretch-updates main contrib non-free
    deb https://mirrors.huaweicloud.com/debian/ stretch-backports main contrib non-free deb-src https://mirrors.huaweicloud.com/debian/ stretch-backports main contrib non-free

    清华大学镜像站

    deb https://mirrors.tuna.tsinghua.edu.cn/debian/ stretch main contrib non-free
    deb-src https://mirrors.tuna.tsinghua.edu.cn/debian/ stretch main contrib non-free
    deb https://mirrors.tuna.tsinghua.edu.cn/debian/ stretch-updates main contrib non-free
    deb-src https://mirrors.tuna.tsinghua.edu.cn/debian/ stretch-updates main contrib non-free
    deb https://mirrors.tuna.tsinghua.edu.cn/debian/ stretch-backports main contrib non-free
    deb-src https://mirrors.tuna.tsinghua.edu.cn/debian/ stretch-backports main contrib non-free
    deb https://mirrors.tuna.tsinghua.edu.cn/debian-security/ stretch/updates main contrib non-free
    deb-src https://mirrors.tuna.tsinghua.edu.cn/debian-security/ stretch/updates main contrib non-free

    兰州大学镜像站

    deb http://mirror.lzu.edu.cn/debian stable main contrib non-free
    deb-src http://mirror.lzu.edu.cn/debian stable main contrib non-free
    deb http://mirror.lzu.edu.cn/debian stable-updates main contrib non-free
    deb-src http://mirror.lzu.edu.cn/debian stable-updates main contrib non-free
    deb http://mirror.lzu.edu.cn/debian/ stretch-backports main contrib non-free
    deb-src http://mirror.lzu.edu.cn/debian/ stretch-backports main contrib non-free
    deb http://mirror.lzu.edu.cn/debian-security/ stretch/updates main contrib non-free
    deb-src http://mirror.lzu.edu.cn/debian-security/ stretch/updates main contrib non-free

    上海交大镜像站

    deb https://mirror.sjtu.edu.cn/debian/ stretch main contrib non-free
    deb-src https://mirror.sjtu.edu.cn/debian/ stretch main contrib non-free
    deb https://mirror.sjtu.edu.cn/debian/ stretch-updates main contrib non-free
    deb-src https://mirror.sjtu.edu.cn/debian/ stretch-updates main contrib non-free
    deb https://mirror.sjtu.edu.cn/debian/ stretch-backports main contrib non-free
    deb-src https://mirror.sjtu.edu.cn/debian/ stretch-backports main contrib non-free
    deb https://mirror.sjtu.edu.cn/debian-security/ stretch/updates main contrib non-free
    deb-src https://mirror.sjtu.edu.cn/debian-security/ stretch/updates main contrib non-free

    最后附上官方全球镜像站列表地址https://www.debian.org/mirror/list

  • 相关阅读:
    程序集重用
    bash on windows
    NET 2016
    C#_事件
    AspNetCore.Hosting
    你是否是团队里面最默默付出的那个coder,却发现滔滔不绝的产品和设计是团队里的开心果(转)
    redis来共享各个服务器的session,并同时通过redis来缓存一些常用的资源,加快用户获得请求资源的速度(转)
    使用MYCAT作为Mysql HA的中间件(转)
    cookie是指web浏览器存储的少量数据,该数据会在每次请求一个相关的URL时自动传到服务器中(转)
    网页favicon.ico图标设置(转)
  • 原文地址:https://www.cnblogs.com/bigdatasafe/p/10494281.html
Copyright © 2011-2022 走看看