apt-get update Failed to fetch http://archive.ubuntu.com/ubuntu/dists/focal/InRelease Connection failed [IP: 185.125.190.36 80]
时间: 2023-12-29 12:02:16 浏览: 269
这个问题通常是由于网络连接问题导致的。以下是一些可能的解决方案:
1. 检查网络连接状态:确保你的机器已经连接到了互联网,并且网络连接是正常的。你可以尝试使用ping命令来测试网络连接状态,例如:
```
ping google.com
```
如果无法ping通,那么可能是你的网络连接有问题。
2. 更改apt源:尝试更改apt源,使用以下命令备份现有的sources.list文件:
```
sudo cp /etc/apt/sources.list /etc/apt/sources.list.bak
```
然后使用以下命令编辑sources.list文件:
```
sudo nano /etc/apt/sources.list
```
将其中的内容替换为以下内容:
```
deb http://mirrors.aliyun.com/ubuntu/ focal main restricted universe multiverse
deb-src http://mirrors.aliyun.com/ubuntu/ focal main restricted universe multiverse
deb http://mirrors.aliyun.com/ubuntu/ focal-security main restricted universe multiverse
deb-src http://mirrors.aliyun.com/ubuntu/ focal-security main restricted universe multiverse
deb http://mirrors.aliyun.com/ubuntu/ focal-updates main restricted universe multiverse
deb-src http://mirrors.aliyun.com/ubuntu/ focal-updates main restricted universe multiverse
deb http://mirrors.aliyun.com/ubuntu/ focal-backports main restricted universe multiverse
deb-src http://mirrors.aliyun.com/ubuntu/ focal-backports main restricted universe multiverse
```
保存更改并退出编辑器。然后使用以下命令更新apt源:
```
sudo apt-get update
```
现在你应该可以成功更新apt源了。如果仍然无法解决问题,请尝试使用其他的apt源。
希望这些解决方案可以帮助到你。
阅读全文