Ubuntu22.04配置国内源

备份原有的配置文件(可选):

sudo cp /etc/apt/sources.list /etc/apt/sources.list.backup

用文本编辑器打开配置文件:

sudo nano /etc/apt/sources.list

在文件开头添加以下内容,表示使用清华源:

# 默认注释了源码镜像以提高 apt update 速度,如有需要可自行取消注释
deb https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ jammy main restricted universe multiverse
deb https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ jammy-updates main restricted universe multiverse
deb https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ jammy-backports main restricted universe multiverse
deb https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ jammy-security main restricted universe multiverse

保存并关闭文件,然后运行以下命令更新软件源列表:

sudo apt update

(可选)运行以下命令升级已安装的软件包:

sudo apt upgrade

你可能感兴趣的:(Ubuntu,linux,服务器,ubuntu)