清华大学开源软件镜像站
时间: 2023-12-03 12:39:27 浏览: 835
清华大学开源软件镜像站是一个致力于为国内和校内用户提供高质量的开源软件镜像、Linux 镜像源服务的网站。它由清华大学 TUNA 协会负责运行维护。用户可以通过该镜像站更方便地获取开源软件。如果你想使用Ubuntu系统,可以通过以下步骤更改Ubuntu软件源为清华大学开源软件镜像站:
1.备份原有的软件源列表
```shell
sudo cp /etc/apt/sources.list /etc/apt/sources.list.bak
```
2.编辑软件源列表
```shell
sudo vim /etc/apt/sources.list
```
3.将以下内容复制到文件中并保存
```shell
deb https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ focal main restricted universe multiverse
deb-src https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ focal main restricted universe multiverse
deb https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ focal-updates main restricted universe multiverse
deb-src https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ focal-updates main restricted universe multiverse
deb https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ focal-backports main restricted universe multiverse
deb-src https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ focal-backports main restricted universe multiverse
deb https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ focal-security main restricted universe multiverse
deb-src https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ focal-security main restricted universe multiverse
```
4.更新软件源
```shell
sudo apt-get update
```
阅读全文