zoukankan      html  css  js  c++  java
  • Ubuntu软件源更换

    在使用ubuntu系统的时候经常需要在线安装某些软件(apt-get install),然后由于国内一些原因,部分软件源无法使用,在此就需要更换软件源,具体做法如下:

    1、打开软件源配置文件/etc/apt/sources.list

    sudo gedit /etc/apt/sources.list 

    2、将文件里面的内容替换

    deb http://mirrors.aliyun.com/ubuntu/ vivid main restricted universe multiverse  
    deb http://mirrors.aliyun.com/ubuntu/ vivid-security main restricted universe multiverse  
    deb http://mirrors.aliyun.com/ubuntu/ vivid-updates main restricted universe multiverse  
    deb http://mirrors.aliyun.com/ubuntu/ vivid-proposed main restricted universe multiverse  
    deb http://mirrors.aliyun.com/ubuntu/ vivid-backports main restricted universe multiverse  
    deb-src http://mirrors.aliyun.com/ubuntu/ vivid main restricted universe multiverse  
    deb-src http://mirrors.aliyun.com/ubuntu/ vivid-security main restricted universe multiverse  
    deb-src http://mirrors.aliyun.com/ubuntu/ vivid-updates main restricted universe multiverse  
    deb-src http://mirrors.aliyun.com/ubuntu/ vivid-proposed main restricted universe multiverse  
    deb-src http://mirrors.aliyun.com/ubuntu/ vivid-backports main restricted universe multiverse  
    

    上面的内容表示使用阿里的软件源,同时也有一些163的软件源也挺常用,在此粘贴如下:

    deb http://mirrors.163.com/ubuntu/ precise main universe restricted multiverse   
    deb-src http://mirrors.163.com/ubuntu/ precise main universe restricted multiverse   
    deb http://mirrors.163.com/ubuntu/ precise-security universe main multiverse restricted   
    deb-src http://mirrors.163.com/ubuntu/ precise-security universe main multiverse restricted   
    deb http://mirrors.163.com/ubuntu/ precise-updates universe main multiverse restricted   
    deb http://mirrors.163.com/ubuntu/ precise-proposed universe main multiverse restricted   
    deb-src http://mirrors.163.com/ubuntu/ precise-proposed universe main multiverse restricted   
    deb http://mirrors.163.com/ubuntu/ precise-backports universe main multiverse restricted   
    deb-src http://mirrors.163.com/ubuntu/ precise-backports universe main multiverse restricted   
    deb-src http://mirrors.163.com/ubuntu/ precise-updates universe main multiverse restricted  
    

     3、执行更新

    sudo apt-get update  
    

      

  • 相关阅读:
    Python 压缩图片至指定大小
    nginx 服务器自签https协议 (Let’s Encrypt)
    Django 批量创建app
    常见的设计模式(python )———适配器模式
    带你完全理解Python中的metaclass,type,class之间的恩怨情仇...
    常见的设计模式(python)———单例模式(转载)
    常见的设计模式(python)———工厂模式
    常见的设计模型(python)——建造者模型
    Django-restframework 概述及目录
    Java多线程开发
  • 原文地址:https://www.cnblogs.com/flyLove/p/9064852.html
Copyright © 2011-2022 走看看