zoukankan      html  css  js  c++  java
  • Ubuntu16.04换源(转)

    乌班图换源(ubuntu 16.04换阿里云源为例)

    换成国内最快的阿里云源

    第一步:备份原来的源文件

    cd /etc/apt/  
    
    • 1
    • 2

    然后会显示下面的源文件sources.list 
    输入命令 
    sudo cp sources.list sources.list.bak 
    就是将sources.list备份到sources.list.bak

    第二步:替换源

    阿里云源的文件

        deb http://mirrors.aliyun.com/ubuntu/ xenial main restricted universe multiverse  
        deb http://mirrors.aliyun.com/ubuntu/ xenial-security main restricted universe multiverse  
        deb http://mirrors.aliyun.com/ubuntu/ xenial-updates main restricted universe multiverse  
        deb http://mirrors.aliyun.com/ubuntu/ xenial-backports main restricted universe multiverse  
        ##测试版源  
        deb http://mirrors.aliyun.com/ubuntu/ xenial-proposed main restricted universe multiverse  
        # 源码  
        deb-src http://mirrors.aliyun.com/ubuntu/ xenial main restricted universe multiverse  
        deb-src http://mirrors.aliyun.com/ubuntu/ xenial-security main restricted universe multiverse  
        deb-src http://mirrors.aliyun.com/ubuntu/ xenial-updates main restricted universe multiverse  
        deb-src http://mirrors.aliyun.com/ubuntu/ xenial-backports main restricted universe multiverse  
        ##测试版源  
        deb-src http://mirrors.aliyun.com/ubuntu/ xenial-proposed main restricted universe multiverse  
        # Canonical 合作伙伴和附加  
        deb http://archive.canonical.com/ubuntu/ xenial partner  
        deb http://extras.ubuntu.com/ubuntu/ xenial main  

    替换并保存 
    sudo gedit sources.list打开文件,替换成阿里云文件即可

    第三步:更新源和软件

       sudo apt-get update 更新源  
       sudo apt-get upgrade 更新软件 
  • 相关阅读:
    摄像头标定
    Call PDF to Vector Converter Command Line from C#, ASP, etc. web program languages
    Camera Calibration and 3D Reconstruction
    C++获取一个文件夹下的所有文件名(转)
    javascript学习之对象应用
    javascript中Array对象总结
    Joomla学习之模块
    关于ci中的表单提交问题
    phpcms之文件目录
    jQuery中的join方法
  • 原文地址:https://www.cnblogs.com/shixiuxian/p/9069310.html
Copyright © 2011-2022 走看看