Ubuntu 18.04 - Ubuntu をインストールできない / 次のタスクを実行できない

Ubuntu 18.04 - Ubuntu をインストールできない / 次のタスクを実行できない

ここ数日、新しいアプリをインストールしようとするたびに、

ubuntu unable to install:
cannot perform the following task: 

...アプリ名もタスクも表示されませんでした。試してみました

sudo apt update
sudo apt upgrade
sudo apt autoremove

その後も結果は良くなりませんでした。まったくの初心者なので、次に何を試したらよいかわかりません。何かアイデアはありますか?

ご協力ありがとうございます!

何度かやり取りした後、次の情報を追加することを勧められました。

/etc/apt/sources.list を検索します

# deb cdrom:[Ubuntu 16.04.2 LTS _Xenial Xerus_ - Release amd64 (20170215.2)]/ xenial main restricted

# See http://help.ubuntu.com/community/UpgradeNotes for how to upgrade to
# newer versions of the distribution.
deb http://archive.ubuntu.com/ubuntu bionic main restricted
# deb-src http://fr.archive.ubuntu.com/ubuntu/ xenial main restricted

## Major bug fix updates produced after the final release of the
## distribution.
deb http://archive.ubuntu.com/ubuntu bionic-updates main restricted
# deb-src http://fr.archive.ubuntu.com/ubuntu/ xenial-updates main restricted

## N.B. software from this repository is ENTIRELY UNSUPPORTED by the Ubuntu
## team. Also, please note that software in universe WILL NOT receive any
## review or updates from the Ubuntu security team.
deb http://archive.ubuntu.com/ubuntu bionic universe
# deb-src http://fr.archive.ubuntu.com/ubuntu/ xenial universe
deb http://archive.ubuntu.com/ubuntu bionic-updates universe
# deb-src http://fr.archive.ubuntu.com/ubuntu/ xenial-updates universe

## N.B. software from this repository is ENTIRELY UNSUPPORTED by the Ubuntu 
## team, and may not be under a free licence. Please satisfy yourself as to 
## your rights to use the software. Also, please note that software in 
## multiverse WILL NOT receive any review or updates from the Ubuntu
## security team.
deb http://archive.ubuntu.com/ubuntu bionic multiverse
# deb-src http://fr.archive.ubuntu.com/ubuntu/ xenial multiverse
deb http://archive.ubuntu.com/ubuntu bionic-updates multiverse
# deb-src http://fr.archive.ubuntu.com/ubuntu/ xenial-updates multiverse

## N.B. software from this repository may not have been tested as
## extensively as that contained in the main release, although it includes
## newer versions of some applications which may provide useful features.
## Also, please note that software in backports WILL NOT receive any review
## or updates from the Ubuntu security team.
# deb-src http://fr.archive.ubuntu.com/ubuntu/ xenial-backports main restricted universe multiverse

## Uncomment the following two lines to add software from Canonical's
## 'partner' repository.
## This software is not part of Ubuntu, but is offered by Canonical and the
## respective vendors as a service to Ubuntu users.
deb http://archive.canonical.com/ubuntu bionic partner
deb-src http://archive.canonical.com/ubuntu bionic partner

deb http://archive.ubuntu.com/ubuntu bionic-security main restricted
# deb-src http://security.ubuntu.com/ubuntu xenial-security main restricted
deb http://archive.ubuntu.com/ubuntu bionic-security universe
# deb-src http://security.ubuntu.com/ubuntu xenial-security universe
deb http://archive.ubuntu.com/ubuntu bionic-security multiverse
# deb-src http://security.ubuntu.com/ubuntu xenial-security multiverse
deb https://dl.winehq.org/wine-builds/ubuntu/ bionic main
# deb-src https://dl.winehq.org/wine-builds/ubuntu/ bionic main

ls /etc/apt/sources.list.d -1

megasync.list
megasync.list.distUpgrade
megasync.list.save
slack.list
slack.list.save
teamviewer.list

答え1

適切なプロキシ設定を設定する必要があります: https://help.ubuntu.com/community/Ap...e_a_http-proxy

コマンドを使用することに注意してください

コード:

sudo -H gedit

gksudo の代わりに、gksudo はもう存在しません。

編集:リンクが存在しないので、これを試してください

Apt は、/etc/apt/apt.conf.d の下にあるすべての設定ファイルを読み込みます。そこでプロキシ専用の設定を作成し、他のすべての設定とは別にすることができます。

proxy.conf という名前の新しい設定ファイルを作成します。

sudo touch /etc/apt/apt.conf.d/proxy.conf

テキスト エディターで proxy.conf ファイルを開きます。

sudo vi /etc/apt/apt.conf.d/proxy.conf

HTTP プロキシを設定するには、次の行を追加します。

Acquire::http::Proxy "http://user:[email protected]:port/";

HTTPS プロキシを設定するには、次の行を追加します。

Acquire::https::Proxy "http://user:[email protected]:port/";

変更を保存し、テキスト エディターを終了します。

プロキシ設定は、次回 Apt を実行したときに適用されます。

関連情報