web-dev-qa-db-ja.com

sudo apt-get update:localhost:9999(127.0.0.1)に接続できませんでした。 -接続(111:接続が拒否されました)

turtlebot@turtlebot-bot:~$ Sudo apt-get update

Err:1 http://ports.ubuntu.com xenial InRelease Could not connect to localhost:9999 (127.0.0.1). - connect (111: Connection refused)

Err:2 http://ports.ubuntu.com xenial-updates InRelease Unable to connect to localhost:9999:

Err:3 http://ports.ubuntu.com xenial-security InRelease Unable to connect to localhost:9999:

Err:4 http://ports.ubuntu.com xenial-backports InRelease Unable to connect to localhost:9999:

Err:5 http://ppa.launchpad.net/flexiondotorg/minecraft/ubuntu xenial InRelease Could not connect to localhost:9999 (127.0.0.1). - connect (111: Connection refused)

Err:6 http://ppa.launchpad.net/ubuntu-mate-dev/welcome/ubuntu xenial InRelease Unable to connect to localhost:9999:

Err:7 http://packages.ros.org/ros/ubuntu xenial InRelease
Could not connect to localhost:9999 (127.0.0.1). - connect (111: Connection refused)

Err:8 http://ppa.launchpad.net/ubuntu-mate-dev/xenial-mate/ubuntu xenial InRelease Unable to connect to localhost:9999:

Err:9 http://ppa.launchpad.net/ubuntu-pi-flavour-makers/ppa/ubuntu xenial InRelease Unable to connect to localhost:9999:

Err:10 http://ppa.launchpad.net/wireshark-dev/stable/ubuntu xenial InRelease

Unable to connect to localhost:9999: Reading package lists... Done

W: Failed to fetch http://ports.ubuntu.com/dists/xenial/InRelease Could not connect to localhost:9999 (127.0.0.1). - connect (111: Connection refused)

W: Failed to fetch http://ports.ubuntu.com/dists/xenial-updates/InRelease Unable to connect to localhost:9999:

W: Failed to fetch http://ports.ubuntu.com/dists/xenial-security/InRelease Unable to connect to localhost:9999:

W: Failed to fetch http://ports.ubuntu.com/dists/xenial-backports/InRelease Unable to connect to localhost:9999:

W: Failed to fetch http://ppa.launchpad.net/flexiondotorg/minecraft/ubuntu/dists/xenial/InRelease Could not connect to localhost:9999 (127.0.0.1). - connect (111: Connection refused)

W: Failed to fetch http://packages.ros.org/ros/ubuntu/dists/xenial/InRelease Could not connect to localhost:9999 (127.0.0.1). - connect (111: Connection refused)

W: Failed to fetch http://ppa.launchpad.net/ubuntu-mate-dev/welcome/ubuntu/dists/xenial/InRelease Unable to connect to localhost:9999:

W: Failed to fetch http://ppa.launchpad.net/ubuntu-mate-dev/xenial-mate/ubuntu/dists/xenial/InRelease Unable to connect to localhost:9999:

W: Failed to fetch http://ppa.launchpad.net/ubuntu-pi-flavour-makers/ppa/ubuntu/dists/xenial/InRelease Unable to connect to localhost:9999:

W: Failed to fetch http://ppa.launchpad.net/wireshark-dev/stable/ubuntu/dists/xenial/InRelease Unable to connect to localhost:9999:

W: Some index files failed to download. They have been ignored, or old ones used instead.

turtlebot@turtlebot-bot:~$ lsb_release -a

No LSB modules are available.

Distributor ID: Ubuntu

Description: Ubuntu 16.04.3 LTS

Release: 16.04

Codename: xenial

PS:スタック交換の文化を知りませんでした。 turtlebot3-burgerbotからの質問であるため、electronics.stackexchange.comでこの同じ質問を公開したとき、私は5に下票されました。とにかく、私はLinux分野の初心者であり、答えを探すことに必死です。ありがとうございました。

2
sujeet

エラー

Could not connect to localhost:9999 (127.0.0.1). - connect (111: Connection refused)

システムがapt接続にローカルHTTPプロキシを使用するように構成されていること(およびそのようなプロキシが実行されていないこと)を提案します。

コマンドラインで空の値Acquire::Http::Proxy=を渡すことにより、コマンドラインでこの設定を一時的にオーバーライドできます。

Sudo apt-get -oAcquire::Http::Proxy= update

それが機能する場合そしてプロキシ設定が不適切だと思う、あなたはあなたのapt設定ファイルのプロキシ設定に関連する行を見つけてコメントアウトするか削除することで設定を永続化することができます-/etc/apt/apt.confおよび/etc/apt/apt.conf.d/ディレクトリ内の関連ファイル-HTTPのエントリと同様に、HTTPSやsocksプロトコルのエントリを見つけることができます。

3
steeldriver