• 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  
    

      

  • 相关阅读:
    mq/mysql/redis/nginx常见服务&工具安装
    中断——中断描述符表的定义和初始化(二) (基于3.16-rc4)
    中断——中断描述符表的定义和初始化(一) (基于3.16-rc4)
    linux内核中与进程相关的数据结构(基于linux3.16-rc4)
    内核链表的应用
    ubuntu下做柯老师lab19-lab20实验问题总结
    在ns2.35中添加myevalvid框架
    在ns2.35下完成柯老师lab18实验
    windows编程socket问题
    如何高效利用GitHub
  • 原文地址:https://www.cnblogs.com/flyLove/p/9064852.html
Copyright © 2020-2023  润新知