Ubuntu 修改 apt 源为阿里云源

文章目录

  • 软件源 Software Source
  • 使用说明
    • 图形界面(新手推荐)
    • 手动修改配置文件
  • 相关链接

软件源 Software Source

软件源是指用于存储各种 Linux 应用程序的存储库,包括自由或非自由软件。这个存储库可以是网站、光盘,或者是本地磁盘上的一个目录。你可以将软件源理解成是 Ubuntu 提供的一个 Linux 应用程序集市,几乎所有的应用程序都可以在这个集市上找到。

Ubuntu 修改 apt 源为阿里云源_第1张图片

安装好 Ubuntu 系统之后,默认的源会指向 http://cn.archive.ubuntu.com,但是这个源地址在某些地区会出现无法连接或者是连接速度慢的情况,这时候我们可以更换一个更快的源来实现软件安装的需求,国内有名的源包括:

  • 网易源: https://mirrors.163.com
  • 阿里云源: https://mirrors.aliyun.com

本文以阿里云为例,说明如何修改 ubuntu 软件源。

使用说明

图形界面(新手推荐)

  1. 点击屏幕左下角的程序清单,选择 Software & Updates 图标

Ubuntu 修改 apt 源为阿里云源_第2张图片
2. 在 “Download from” 列表框中选择 “Other…”
3. 在弹出的对话框中,找到 “mirrors.aliyun.com”
4. 点击 Choose Server 按钮生效。

Ubuntu 修改 apt 源为阿里云源_第3张图片

手动修改配置文件

此处可直接跳转至阿里云的镜像页面 https://developer.aliyun.com/mirror/,在该页面中点击 ubuntu 链接进入配置页面。

  1. 将现有的 sources.list 文件改名备份

    sudo cp /etc/apt/sources.list /etc/apt/sources.list.bak
    
  2. 用你最熟悉的编辑器打开 sources.list 文件,比如:

    sudo gedit /etc/apt/sources.list
    
  3. 删除文件中的所有内容

  4. 然后将阿里云的源粘贴进去

Ubuntu 18.04 配置如下

deb http://mirrors.aliyun.com/ubuntu/ bionic main restricted universe multiverse
deb-src http://mirrors.aliyun.com/ubuntu/ bionic main restricted universe multiverse

deb http://mirrors.aliyun.com/ubuntu/ bionic-security main restricted universe multiverse
deb-src http://mirrors.aliyun.com/ubuntu/ bionic-security main restricted universe multiverse

deb http://mirrors.aliyun.com/ubuntu/ bionic-updates main restricted universe multiverse
deb-src http://mirrors.aliyun.com/ubuntu/ bionic-updates main restricted universe multiverse

# deb http://mirrors.aliyun.com/ubuntu/ bionic-proposed main restricted universe multiverse
# deb-src http://mirrors.aliyun.com/ubuntu/ bionic-proposed main restricted universe multiverse

deb http://mirrors.aliyun.com/ubuntu/ bionic-backports main restricted universe multiverse
deb-src http://mirrors.aliyun.com/ubuntu/ bionic-backports main restricted universe multiverse

其他版本的源配置建议参考阿里云给出的配置文本。

  1. 最后更新 apt 本地缓存

    sudo apt update
    

相关链接

  • 阿里云:https://developer.aliyun.com/mirror
  • 中国科技大学源:https://mirrors.ustc.edu.cn/ubuntu/
  • 网易云:https://mirrors.163.com

欢迎关注我的公众号:飞翔的小黄鸭
也许会发现不一样的风景


△ \triangle Ubuntu 软件包管理利器 - 新立得 (Synaptic)
▽ \bigtriangledown Ubuntu 18.04 安装 fcitx 中文输入法

你可能感兴趣的:(Linux,ubuntu,阿里云,linux)