これをブラウズしている私のubuntuは、通常、どのサイトにもアクセスできません。さらにapt-get update
、さらにはupgrade
でさえ、以下に示すようにエラーが発生します。
Sudo apt-get update
Get:1 http://security.ubuntu.com/ubuntu xenial-security InRelease [94,5 kB]
Hit:2 http://ppa.launchpad.net/webupd8team/sublime-text-3/ubuntu xenial InRelease
Err:3 http://br.archive.ubuntu.com/ubuntu xenial InRelease
Cannot initiate the connection to br.archive.ubuntu.com:80 (2801:82:80ff:8000::5). - connect (101: Network is unreachable) [IP: 2801:82:80ff:8000::5 80]
Err:4 http://br.archive.ubuntu.com/ubuntu xenial-updates InRelease
Cannot initiate the connection to br.archive.ubuntu.com:80 (2801:82:80ff:8000::5). - connect (101: Network is unreachable) [IP: 2801:82:80ff:8000::5 80]
Err:5 http://br.archive.ubuntu.com/ubuntu xenial-backports InRelease
Cannot initiate the connection to br.archive.ubuntu.com:80 (2801:82:80ff:8000::5). - connect (101: Network is unreachable) [IP: 2801:82:80ff:8000::5 80]
Downloading 94,5 kB in 2min 0s (786 B/s)
Reading package lists ... Done
W: Failed to fetch http://br.archive.ubuntu.com/ubuntu/dists/xenial/InRelease Cannot initiate the connection to br.archive.ubuntu.com:80 (2801:82:80ff:8000::5). - connect (101: Network is unreachable) [IP: 2801:82:80ff:8000::5 80]
W: Failed to fetch http://br.archive.ubuntu.com/ubuntu/dists/xenial-updates/InRelease Cannot initiate the connection to br.archive.ubuntu.com:80 (2801:82:80ff:8000::5). - connect (101: Network is unreachable) [IP: 2801:82:80ff:8000::5 80]
W: Failed to fetch http://br.archive.ubuntu.com/ubuntu/dists/xenial-backports/InRelease Cannot initiate the connection to br.archive.ubuntu.com:80 (2801:82:80ff:8000::5). - connect (101: Network is unreachable) [IP: 2801:82:80ff:8000::5 80]
W: Some index files failed to download. They have been ignored, or old ones used instead.
Ubuntu:
DISTRIB_ID=Ubuntu
DISTRIB_RELEASE=16.04
DISTRIB_CODENAME=xenial
DISTRIB_DESCRIPTION="Ubuntu 16.04.1 LTS"
「ソフトウェアと更新」を開き、別のミラーを選択することで変更できます。
ローカルリポジトリのミラーは時々ダウンするので、他のものをチェックすることは常に良い考えです;)
また、ルーターまたはISPがサポートしていない可能性のあるIPv6経由で接続しようとしていることにも気付きました。 this を試しましたか?
ログから、お使いのマシンはIPv6を使用してインターネットに接続しているようです。インターネットサービスプロバイダーがIPv6をサポートしていない可能性があります。 IPv6を無効にしてみてください。
これをシステム全体で行うには、ファイル/etc/default/grub
を編集し(たとえば、Sudo nano /etc/default/grub
を使用)、ipv6.disable=1
をGRUB_CMDLINE_LINUX_DEFAULT
の値に追加します。
デフォルトのUbuntuインストールでは、この行は
GRUB_CMDLINE_LINUX_DEFAULT="quiet splash"
に変更します
GRUB_CMDLINE_LINUX_DEFAULT="quiet splash ipv6.disable"
その後、最初にSudo update-grub
を実行してから再起動します。