linux_ubuntu_apt_替换阿里源
在Ubuntu系统中,您可以通过以下步骤将APT软件包管理器的默认源更换为阿里云源以提高软件包下载速度。
- 打开终端。
备份当前的
sources.list
文件:sudo cp /etc/apt/sources.list /etc/apt/sources.list.backup
编辑
sources.list
文件:sudo nano /etc/apt/sources.list
将文件中的内容替换为阿里云源的内容。您可以根据您Ubuntu的版本从阿里云官方源站点复制相应的源列表。例如,如果您使用的是Ubuntu 20.04 (Focal Fossa),可以使用以下内容:
deb http://mirrors.aliyun.com/ubuntu/ focal main restricted universe multiverse deb-src http://mirrors.aliyun.com/ubuntu/ focal main restricted universe multiverse deb http://mirrors.aliyun.com/ubuntu/ focal-security main restricted universe multiverse deb-src http://mirrors.aliyun.com/ubuntu/ focal-security main restricted universe multiverse deb http://mirrors.aliyun.com/ubuntu/ focal-updates main restricted universe multiverse deb-src http://mirrors.aliyun.com/ubuntu/ focal-updates main restricted universe multiverse deb http://mirrors.aliyun.com/ubuntu/ focal-backports main restricted universe multiverse deb-src http://mirrors.aliyun.com/ubuntu/ focal-backports main restricted universe multiverse
- 保存并关闭文件。
更新软件包列表:
sudo apt update
升级所有安装的软件包:
sudo apt upgrade
以上步骤将会将您的Ubuntu系统的APT软件包管理器的源更换为阿里云的源。
评论已关闭