ubuntu 切换到https://mirrors.163.com/ubuntu/
时间: 2024-10-18 14:10:01 浏览: 34
Ubuntu 是一款流行的开源 Linux 发行版,如果你想要将官方默认的软件包源更改为阿里云的镜像,通常是为了提高下载速度和稳定性。在 Ubuntu 系统中,你可以通过编辑 `/etc/apt/sources.list` 文件来切换源。以下是步骤:
1. 打开终端(Ctrl+Alt+T)。
2. 使用文本编辑器(如 `nano` 或 `vim`)打开sources.list文件:
```
sudo nano /etc/apt/sources.list
```
输入密码后,你会看到一个包含现有源列表的文件。
3. 将原有官方源替换为阿里云的源,例如更换为 Ubuntu 20.04 的阿里云镜像:
```
deb https://mirrors.aliyun.com/ubuntu focal main restricted universe multiverse
deb-src https://mirrors.aliyun.com/ubuntu focal main restricted universe multiverse
```
4. 如果你想更换特定版本的源,比如 18.04,则替换为对应的 URL,例如:
```
deb https://mirrors.aliyun.com/ubuntu/bionic main restricted universe multiverse
deb-src https://mirrors.aliyun.com/ubuntu/bionic main restricted universe multiverse
```
5. 保存并关闭文件,然后更新系统信息使其识别新的源:
```
sudo apt-get update
```
6. 完成上述步骤后,你可以开始安装所需的软件了:
```
sudo apt-get install <package-name>
```
请注意,每次更新系统前都应确认新源的有效性,并且官方源总是建议首选,除非有特殊原因。
阅读全文