ubantu怎么换清华源
时间: 2023-11-07 11:57:08 浏览: 1036
在Ubuntu上修改为清华源有多种方法可以实现。以下是其中两种常用的方法:
方法一:
1. 打开终端,使用root权限(输入sudo su)。
2. 备份原软件源列表文件(输入cp /etc/apt/sources.list /etc/apt/sources.list.bak)。
3. 使用文本编辑器编辑源列表文件(输入gedit /etc/apt/sources.list)。
4. 在编辑器中将原来的软件源地址替换为清华源地址(mirrors.tuna.tsinghua.edu.cn)。
5. 保存文件并关闭编辑器。
6. 更新软件包列表(输入apt-get update)。
方法二:
1. 打开"Software & Updates"(软件和更新)。
2. 在"Download from"(下载源)选项中选择"Other"(其他)。
3. 在列表中找到国家/地区为China的选项。
4. 在该选项中找到清华源(mirrors.tuna.tsinghua.edu.cn)并选中。
5. 点击"Choose Server"(选择服务器)保存设置。
请注意,以上方法都需要使用root权限或管理员权限进行操作。
相关问题
ubuntu更换清华源
要更换 Ubuntu 的软件源为清华源,可以按照以下步骤操作:
1. 打开终端,输入以下命令备份当前的源列表文件:
```
sudo cp /etc/apt/sources.list /etc/apt/sources.list.bak
```
2. 编辑 sources.list 文件,使用以下命令打开文件:
```
sudo gedit /etc/apt/sources.list
```
3. 将文件中的内容全部替换为以下内容:
```
# 以下为清华大学 TUNA 协会镜像源,包括 Ubuntu 官方源及各种其他开源镜像源
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
deb https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ focal-proposed main restricted universe multiverse
deb-src https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ focal-proposed main restricted universe multiverse
```
4. 保存文件并关闭。
5. 更新软件源列表,输入以下命令:
```
sudo apt-get update
```
这样就可以成功更换 Ubuntu 的软件源为清华源。
ubuntu换清华源
Ubuntu是一个基于Linux操作系统的开源操作系统,用户可以通过更改软件源来加速软件下载和更新,使用清华大学的开源镜像源可以提高下载和更新软件的速度。下面是在Ubuntu系统中更改软件源为清华大学的方法:
1.打开“终端”(Ctrl+Alt+T),输入以下命令:
```
sudo cp /etc/apt/sources.list /etc/apt/sources.list.bak
```
该命令是备份原来的软件源列表。
2.然后输入以下命令:
```
sudo gedit /etc/apt/sources.list
```
该命令会打开软件源配置文件。
3.将文件中的内容全部删除,然后将以下内容复制到文件中:
```
deb https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ bionic main restricted universe multiverse
deb-src https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ bionic main restricted universe multiverse
deb https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ bionic-updates main restricted universe multiverse
deb-src https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ bionic-updates main restricted universe multiverse
deb https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ bionic-backports main restricted universe multiverse
deb-src https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ bionic-backports main restricted universe multiverse
deb https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ bionic-security main restricted universe multiverse
deb-src https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ bionic-security main restricted universe multiverse
```
4.保存并关闭文件,然后在终端中输入以下命令以更新软件源:
```
sudo apt-get update
```
至此,Ubuntu系统的软件源已经更改为清华大学的镜像源了。
阅读全文