apt-get停留在0 [连接到us.archive.ubuntu.com]


164

当我升级时,它会卡在这里:

user@plato:~# sudo apt-get upgrade
Reading package lists... Done
Building dependency tree       
Reading state information... Done
Calculating upgrade... Done
The following packages will be upgraded:
  bind9-host coreutils cpio curl dnsutils libbind9-90 libc-bin libc-dev-bin
  libc6 libc6-dev libcgmanager0 libcurl3 libcurl3-gnutls libdns100
  libdrm-intel1 libdrm-nouveau2 libdrm-radeon1 libdrm2 libisc95 libisccc90
  libisccfg90 libjasper1 liblwres90 libplymouth2 libsepol1 libssl-dev
  libssl-doc libssl1.0.0 linux-libc-dev mime-support multiarch-support ntp
  ntpdate openssl plymouth plymouth-theme-ubuntu-text python3-distupgrade
  ubuntu-release-upgrader-core unzip
39 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
Need to get 16.0 MB of archives.
After this operation, 12.3 kB of additional disk space will be used.
Do you want to continue? [Y/n] y
0% [Connecting to us.archive.ubuntu.com (2001:67c:1562::15)] ░

当我更新时,它卡在这里:

user@plato:~# apt-get update
0% [Connecting to us.archive.ubuntu.com (2001:67c:1562::14)] [Connecting to sec░

我可以ping us.archive.ubuntu.com正常:

user@plato:~# ping us.archive.ubuntu.com
PING us.archive.ubuntu.com (91.189.91.23) 56(84) bytes of data.
64 bytes from economy.canonical.com (91.189.91.23): icmp_seq=1 ttl=54 time=81.5 ms
64 bytes from economy.canonical.com (91.189.91.23): icmp_seq=2 ttl=54 time=81.5 ms
64 bytes from economy.canonical.com (91.189.91.23): icmp_seq=3 ttl=54 time=81.5 ms
64 bytes from economy.canonical.com (91.189.91.23): icmp_seq=4 ttl=54 time=81.4 ms
^C
--- us.archive.ubuntu.com ping statistics ---
4 packets transmitted, 4 received, 0% packet loss, time 3004ms
rtt min/avg/max/mdev = 81.425/81.528/81.582/0.355 ms

我该怎么做才能解决此问题?


到目前为止我尝试过的。

我尝试按照此博客上的说明进行操作:http : //nickescobedo.com/719/ubuntu-apt-get-hangs-at-0

强制apt-get仅使用IPv4

  • 在以下位置创建文件 /etc/apt/apt.conf.d/99force-ipv4
  • 将此行添加到新创建的文件中 Acquire::ForceIPv4 false;
  • Apt-get现在将专门使用IPv4

没有一个答案对我有用:我的问题是我的Windows主机防火墙阻止了我在Virtualbox中运行的Ubuntu来宾。
drodsou

这些答案都不适合我。我重新启动了虚拟机,现在可以正常工作了。
千焦耳'18

Answers:


309

我想通了如何重新开始工作。

编辑gai.conf

sudo vim /etc/gai.conf

更改〜54行以取消注释以下内容:

precedence ::ffff:0:0/96  100

编写并退出:

:wq

警告

看一下第50行,看起来几乎相同:

precedence ::ffff:0:0/96  10

这是错误的行。往下走大约4行,您会发现正确的行要取消注释,因为它以100而不是结尾10


1
感谢您发布解决方案。我遇到了同样的问题,并解决了此问题。
布雷迪2015年

55
您如何解决这个问题?这突然开始在我的一台服务器上发生,并已解决。
Brian Neal

4
这里发生了什么?想详细说明为什么此修复程序有效吗?
2015年

53
问题: ISP开始建立内部IPv6网络,以准备最终连接到IPv6 Internet。结果,在运行apt-get时,默认情况下,此网络中的服务器现在尝试通过其IPv6地址连接到* .ubuntu.com。解决方案:取消注释precedence ::ffff:0:0/96 100允许请求更喜欢IPv4
Arian Faurtosh

8
固定!这绝对是解决此问题的正确方法。但是对于遇到此修复程序的任何人,请确保您不要做我所做的事情。我取消注释precedence ::ffff:0:0/96 10,我不得不回到文件中并再次注释该行,然后取消注释正确的行,这是precedence ::ffff:0:0/96 100
dtigue

14

最好在更新和升级之前禁用IPV6。

  1. 开放终端

  2. 输入sudo -H gedit /etc/sysctl.conf并打开配置文件,并在末尾添加以下几行

    net.ipv6.conf.all.disable_ipv6 = 1
    net.ipv6.conf.default.disable_ipv6 = 1 
    net.ipv6.conf.lo.disable_ipv6 = 1 
    
  3. 在那之后

    cat /proc/sys/net/ipv6/conf/all/disable_ipv6 
    

    如果报告为“ 1”,则表示您已禁用IPV6。

    如果报告为“ 0”,请执行步骤4和步骤5。

  4. 输入command sudo sysctl -p。您将在终端中看到此内容。

    net.ipv6.conf.all.disable_ipv6 = 1 
    net.ipv6.conf.default.disable_ipv6 = 1 
    net.ipv6.conf.lo.disable_ipv6 = 1 
    
  5. 重复上述“第3步”,现在将报告1。


这行得通。我不明白为什么。你能解释一下吗?
AAI

6

没有IPv6修复程序对我有用。可能我的症状相同,原因不同。我的解决方法是通过在sources.list中进行搜索和替换来切换到其他存档,例如:

sudo vim /etc/apt/sources.list

接着:

:%s/us\.archive/de\.archive/g
:wq

这至少可以让我重新开始工作,直到我找出真正的问题。


1

对我有用的是将Ubuntu客户机的VirtualBox Network设置从“桥接适配器”切换为“ NAT”。


是的,这势必有效。但是,为什么它不能在“桥接适配器”上工作。除了,我可以使用“桥接适配器”进行所有操作apt-get update
soufrk
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.