次の手順に従って、Linux Ubuntu 16.4にKritaをインストールしようとしました。
sudo add-apt-repository ppa:kubuntu-ppa/backports
sudo apt-get update
sudo apt-get install krita
2番目のコマンド(更新用)を試みると、次の結果が表示されます。
Err:1 http://rs.archive.ubuntu.com/ubuntu xenial InRelease
Could not connect to 172.16.0.3:8080 (172.16.0.3), connection timed out
Err:2 http://rs.archive.ubuntu.com/ubuntu xenial-backports InRelease
Unable to connect to 172.16.0.3:8080:
Err:3 http://rs.archive.ubuntu.com/ubuntu xenial-updates InRelease
Unable to connect to 172.16.0.3:8080:
Err:4 http://archive.canonical.com/ubuntu xenial InRelease
Could not connect to 172.16.0.3:8080 (172.16.0.3), connection timed out
Err:5 http://dl.google.com/linux/chrome/deb stable InRelease
Could not connect to 172.16.0.3:8080 (172.16.0.3), connection timed out
Err:6 http://ppa.launchpad.net/kubuntu-ppa/backports/ubuntu xenial InRelease
Could not connect to 172.16.0.3:8080 (172.16.0.3), connection timed out
Err:7 http://security.ubuntu.com/ubuntu xenial-security InRelease
Could not connect to 172.16.0.3:8080 (172.16.0.3), connection timed out
Reading package lists... Done
W: Failed to fetch http://rs.archive.ubuntu.com/ubuntu/dists/xenial/InRelease Could not connect to 172.16.0.3:8080 (172.16.0.3), connection timed out
W: Failed to fetch http://rs.archive.ubuntu.com/ubuntu/dists/xenial-backports/InRelease Unable to connect to 172.16.0.3:8080:
W: Failed to fetch http://security.ubuntu.com/ubuntu/dists/xenial-security/InRelease Could not connect to 172.16.0.3:8080 (172.16.0.3), connection timed out
W: Failed to http://archive.canonical.com/ubuntu/dists/xenial/InRelease Could not connect to 172.16.0.3:8080 (172.16.0.3), connection timed out
W: Failed to fetch http://rs.archive.ubuntu.com/ubuntu/dists/xenial-updates/InRelease Unable to connect to 172.16.0.3:8080:
W: Failed to fetch http://dl.google.com/linux/chrome/deb/dists/stable/InRelease Could not connect to 172.16.0.3:8080 (172.16.0.3), connection timed out
W: Failed to fetch http://ppa.launchpad.net/kubuntu-ppa/backports/ubuntu/dists/xenial/InRelease Could not connect to 172.16.0.3:8080 (172.16.0.3), connection timed out
W: Some index files failed to download. They have been ignored, or old ones used instead.
- プロキシを使用しません
。最初のコマンドも機能しません。
gpg: keyserver receive failed: keyserver error
- 3番目のコマンドも同じですが、主な問題は次のとおりですので、3番目のコマンドについては何も入力しません。
Could not connect to 172.16.0.3:8080 (172.16.0.3), connection timed out
-私はこれを試しました(それでファイアウォールが問題だとは思わない):
sudo ufw disable
OSをアップデートしてKrita(または他のアプリケーション)をインストールするにはどうすればよいですか?
答え1
DNSに問題があります。rs.archive.ubuntu.com
147.91.175.253 として確認する必要がありますが、ご使用の環境では、RFC 1918 スペースのアドレスである 172.16.0.3 を取得します。つまり、ローカルネットワークで使用するためのアドレスです。ログをさらに詳しく見ると、172.16.0.3が得られます。すべてDNSルックアップ。
DNSサーバーを確認し、使用して/etc/resolv.conf
いるものを確認してください。会社のネットワークに接続していないために問題が発生する可能性がある場合は、GoogleのDNSサーバー8.8.8.8を使用してください。会社のネットワークにいる場合は、IT担当者に連絡してください。
答え2
それはおそらく/etc/apt/apt.confに次のものが含まれているからです。 Acquire::http::Proxy "http://172.16.0.3:8080/";その内容を削除した後、sudo apt-get updateが正しく機能します。