• Ubuntu16.04更换下载源


    更新源的方法

    进入/etc/apt/

    cd /etc/apt
    

    对 sources.list文件进行备份:

    sudo cp sources.list sources.list.bak
    

    打开源列表文件

    sudo gedit sources.list 
    

    使用下文的源中的内容替换原来文件中的内容,替换完成后执行:

    sudo apt-get update
    

    常使用的源

    清华源

    deb http://mirrors.tuna.tsinghua.edu.cn/ubuntu/ xenial main restricted
    deb http://mirrors.tuna.tsinghua.edu.cn/ubuntu/ xenial-updates main restricted
    deb http://mirrors.tuna.tsinghua.edu.cn/ubuntu/ xenial universe
    deb http://mirrors.tuna.tsinghua.edu.cn/ubuntu/ xenial-updates universe
    deb http://mirrors.tuna.tsinghua.edu.cn/ubuntu/ xenial multiverse
    deb http://mirrors.tuna.tsinghua.edu.cn/ubuntu/ xenial-updates multiverse
    deb http://mirrors.tuna.tsinghua.edu.cn/ubuntu/ xenial-backports main restricted universe multiverse
    deb http://mirrors.tuna.tsinghua.edu.cn/ubuntu/ xenial-security main restricted
    deb http://mirrors.tuna.tsinghua.edu.cn/ubuntu/ xenial-security universe deb http://mirrors.tuna.tsinghua.edu.cn/ubuntu/ xenial-security multiverse
    

    阿里源

    deb-src http://archive.ubuntu.com/ubuntu xenial main restricted #Added by software-properties
    deb http://mirrors.aliyun.com/ubuntu/ xenial main restricted
    deb-src http://mirrors.aliyun.com/ubuntu/ xenial main restricted multiverse universe #Added by software-properties
    deb http://mirrors.aliyun.com/ubuntu/ xenial-updates main restricted
    deb-src http://mirrors.aliyun.com/ubuntu/ xenial-updates main restricted multiverse universe #Added by software-properties
    deb http://mirrors.aliyun.com/ubuntu/ xenial universe
    deb http://mirrors.aliyun.com/ubuntu/ xenial-updates universe
    deb http://mirrors.aliyun.com/ubuntu/ xenial multiverse
    deb http://mirrors.aliyun.com/ubuntu/ xenial-updates multiverse
    deb http://mirrors.aliyun.com/ubuntu/ xenial-backports main restricted universe multiverse
    deb-src http://mirrors.aliyun.com/ubuntu/ xenial-backports main restricted universe multiverse #Added by software-properties
    deb http://archive.canonical.com/ubuntu xenial partner
    deb-src http://archive.canonical.com/ubuntu xenial partner
    deb http://mirrors.aliyun.com/ubuntu/ xenial-security main restricted
    deb-src http://mirrors.aliyun.com/ubuntu/ xenial-security main restricted multiverse universe #Added by software-properties
    deb http://mirrors.aliyun.com/ubuntu/ xenial-security universe
    deb http://mirrors.aliyun.com/ubuntu/ xenial-security multiverse
    

    中科大源

    deb http://debian.ustc.edu.cn/ubuntu/ hardy main multiverse restricted universe
    deb http://debian.ustc.edu.cn/ubuntu/ hardy-backports main multiverse restricted universe
    deb http://debian.ustc.edu.cn/ubuntu/ hardy-proposed main multiverse restricted universe
    deb http://debian.ustc.edu.cn/ubuntu/ hardy-security main multiverse restricted universe
    deb http://debian.ustc.edu.cn/ubuntu/ hardy-updates main multiverse restricted universe
    deb-src http://debian.ustc.edu.cn/ubuntu/ hardy main multiverse restricted universe
    deb-src http://debian.ustc.edu.cn/ubuntu/ hardy-backports main multiverse restricted universe
    deb-src http://debian.ustc.edu.cn/ubuntu/ hardy-proposed main multiverse restricted universe
    deb-src http://debian.ustc.edu.cn/ubuntu/ hardy-security main multiverse restricted universe
    deb-src http://debian.ustc.edu.cn/ubuntu/ hardy-updates main multiverse restricted universe
    
  • 相关阅读:
    linux系统编程综合练习-实现一个小型的shell程序(二)
    linux系统编程综合练习-实现一个小型的shell程序(一)
    Makefile学习二
    Makefile学习一
    jquery遍历:数组、对象、json
    ThinkPHP中:使用递归写node_merge()函数
    ThinkPHP中:多个项目共享同一个session问题
    多域名THINKPHP利用MEMCACHE方式共享SESSION数据
    ThinkPHP中:用户登录权限验证类
    ThinkPHP中:检查Session是否过期
  • 原文地址:https://www.cnblogs.com/chay/p/10292207.html
Copyright © 2020-2023  润新知