当我升级时,它卡在这里:
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
我想出了如何让 apt-get 再次工作。
编辑
gai.conf
:更改 ~54 行以取消注释以下内容:
写下并退出:
警告
查看看起来几乎相同的第 50 行:
这是错误的行。往下走 ~4 行,您会找到要取消注释的正确行,因为它以
100
而不是结尾10
最好在更新和升级之前禁用 IPV6。
打开终端
进入
sudo -H gedit /etc/sysctl.conf
并打开配置文件,在最后添加如下几行在那次跑步之后
如果它报告“1”,则表示您已禁用 IPV6。
如果报告“0”,请按照第 4 步和第 5 步进行操作。
键入命令
sudo sysctl -p
。你会在终端看到这个。重复上面的“步骤 3”,现在将报告 1。
没有一个 IPv6 修复对我有用。可能我有相同的症状但原因不同。我的解决方法是通过在 sources.list 中进行搜索和替换来切换到不同的存档,例如:
接着:
这至少让我可以回去工作,直到我找出真正的问题。
对我有用的是将我的 Ubuntu 客户机的 VirtualBox 网络设置从“桥接适配器”切换为“NAT”。