sudo apt update,连接卡在 0%

sudo apt update,连接卡在 0%

当我执行 sudo apt update 时我一直卡在下面这一行:

0% [Connecting to security.ubuntu.com (2001:67c:1360:8001::21)] 

Ubuntu 中的 ipv6 解析有问题吗?如果出现此问题,有没有办法强制使用 ipv4?(也许我的路由器不那么智能,我不知道)。

Ping 输出:

ping6 2001:67c:1360:8001::21
PING 2001:67c:1360:8001::21(2001:67c:1360:8001::21) 56 data bytes
^C
--- 2001:67c:1360:8001::21 ping statistics ---
12 packets transmitted, 0 received, 100% packet loss, time 11000ms

跟踪路由输出:

 traceroute6  2001:67c:1360:8001::21traceroute to 2001:67c:1360:8001::21
 , 30 hops max, 24 byte packets
 1  * * *
 2  * * *
 3  * * *
 4  * * *
 5  * * *
 6  * * *
 7  * * *

答案1

-o Acquire::ForceIPv4=true在命令后添加apt-get将强制 IPv4 连接。

为了永久修复,请创建一个名为的文件 /etc/apt/apt.conf.d/99force-ipv4并向其中添加以下行:

Acquire::ForceIPv4 "true"; 

答案2

有时,比如在旅行到新地方之后,通过运行此探测器来更新本地最快的 ubuntu repo 服务器是不错的选择

System Settings -> 
Software & Updates -> 
Download from -> 
Other -> 
Select Best Server

相关内容