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  
    

      

  • 相关阅读:
    SQL Select Case
    Fxcop:Globlization warning/全球化警告
    How to get free(available) physical memory/获取可用的内存
    CA2000: Dispose objects before losing scope/在退出作用域前Dispose object
    并行编译Parallel Building
    VS2010 WebInstall/web安装
    欧洲天空访问
    .NET Framework Client Profile/.net framework 客户端配置
    新书推荐:Practical Code Generation in .NET: Covering Visual Studio 2005, 2008, and 2010
    Disable floppy driver(禁用软盘)
  • 原文地址:https://www.cnblogs.com/flyLove/p/9064852.html
Copyright © 2011-2022 走看看