"Could not resolve host: mirrors.aliyun.com; 未知的错误" 正在尝试其它镜像。
时间: 2024-02-19 07:59:33 浏览: 282
这个错误提示表示你使用的镜像地址 `mirrors.aliyun.com` 无法被解析,可能是网络连接出现了问题。你可以尝试使用其他镜像地址进行安装。
对于 Ubuntu/Debian 系统,你可以将 `/etc/apt/sources.list` 中的镜像地址替换为其他可用的镜像地址,例如使用中科大的镜像:
```
deb https://mirrors.ustc.edu.cn/ubuntu/ xenial main restricted universe multiverse
deb https://mirrors.ustc.edu.cn/ubuntu/ xenial-updates main restricted universe multiverse
deb https://mirrors.ustc.edu.cn/ubuntu/ xenial-backports main restricted universe multiverse
deb https://mirrors.ustc.edu.cn/ubuntu/ xenial-security main restricted universe multiverse
```
对于 CentOS/RHEL/Fedora 系统,你可以在 `/etc/yum.repos.d/` 目录下找到相应的 `.repo` 文件,将其中的 `baseurl` 修改为其他可用的镜像地址即可。
修改完成后,记得要执行 `sudo apt-get update` 或 `sudo yum makecache` 命令,重新更新本地软件包列表。
阅读全文