ubuntu 设置阿里源
时间: 2024-10-12 13:01:17 浏览: 37
Ubuntu系统上设置阿里云的软件源通常是为了获取更快速的软件包更新和国内镜像支持。以下是步骤:
1. **打开终端**:在Ubuntu桌面左下角点击`Activities`,然后输入`Terminal`并运行。
2. **备份当前源列表**:
```
sudo cp /etc/apt/sources.list /etc/apt/sources.list.bak
```
3. **添加阿里云的 apt 镜像仓库**:
使用文本编辑器创建一个新的源文件,例如:
```bash
echo "deb http://mirrors.aliyun.com/ubuntu/ $(lsb_release -cs) main restricted universe multiverse" > /etc/apt/sources.list.d/alibaba.list
echo "deb-src http://mirrors.aliyun.com/ubuntu/ $(lsb_release -cs) main restricted universe multiverse" >> /etc/apt/sources.list.d/alibaba.list
```
4. **安装阿里云的 apt-key**:
```
curl -fsSL https://mirrors.aliyun.com/ubuntu/$(/lsb_release -cs)/pgp pubring | gpg --dearmor -o /usr/share/keyrings/aliyun-archive-keyring.gpg
```
5. **刷新索引并更新软件包**:
```
sudo apt-get update
sudo apt-get upgrade
```
6. **验证源的有效性**:
检查新添加的源是否已成功启用:
```
apt-cache policy <软件名>
```
阅读全文