web-dev-qa-db-ja.com

Ubuntu 16.04「アップデートの確認中に問題が発生しました」

Ubuntu 16.04を実行していますが、突然APTが破損し、ターミナルを開くことができません。具体的には、上部のツールバーに白いマイナス記号の付いた赤い円が表示され、クリックするとA problem occurred when checking for the updatesと表示されます。ターミナルをクリックすると、マウスポインターが数秒間円に変わり、何も起こりません。

私はこれが何度も尋ねられていることを理解していますが、他のいくつかのソリューションを試してみました(たとえば、apt-get -f install、apt-get update、apt-get upgradeの実行、sources.listでのPPAのコメントアウト)。

ここに私の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://us.archive.ubuntu.com/ubuntu/ xenial main restricted
# deb-src http://us.archive.ubuntu.com/ubuntu/ xenial main restricted

## Major bug fix updates produced after the final release of the
## distribution. deb http://us.archive.ubuntu.com/ubuntu/ xenial-updates main restricted
# deb-src http://us.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://us.archive.ubuntu.com/ubuntu/ xenial universe
# deb-src http://us.archive.ubuntu.com/ubuntu/ xenial universe deb http://us.archive.ubuntu.com/ubuntu/ xenial-updates universe
# deb-src http://us.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://us.archive.ubuntu.com/ubuntu/ xenial multiverse
# deb-src http://us.archive.ubuntu.com/ubuntu/ xenial multiverse deb http://us.archive.ubuntu.com/ubuntu/ xenial-updates multiverse
# deb-src http://us.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://us.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 xenial partner
# deb-src http://archive.canonical.com/ubuntu xenial partner

deb http://security.ubuntu.com/ubuntu xenial-security main restricted
# deb-src http://security.ubuntu.com/ubuntu xenial-security main restricted deb http://security.ubuntu.com/ubuntu xenial-security universe
# deb-src http://security.ubuntu.com/ubuntu xenial-security universe deb http://security.ubuntu.com/ubuntu xenial-security multiverse
# deb-src http://security.ubuntu.com/ubuntu xenial-security multiverse

また、/ etc/apt/sources.list.dにPPAがあります。

  • dropbox.list
  • gerardpuig-ubuntu-ppa-xenial.list
  • atlassian-hipchat4.list
  • jonathonf-ubuntu-python-3_6-xenial.list
  • libreoffice-ubuntu-ppa-xenial.list
  • pgdg.list

また、update/upgrade/dist-upgradeを実行して再起動したにもかかわらず、TTY1にログインすると、まだ94個のパッケージがアップグレードされていると表示されます。

これに先立って私がしていた唯一のことは、いくつかのpythonコードで作業することでした。ただし、変更を加えたとは思わない。デフォルトのPythonシンボリックリンクを変更してPython2を指すようにしましたが、Python3に戻しましたが、残念ながら何も修正されませんでした。

ありがとう。

5
Brooks

python 3.Xバージョンを切り替えるには、次を実行します。

Sudo update-alternatives --config python3

ソフトウェアアップデートを復元するには、python 3.5の数を入力するだけです。

6
BXL

Python3をインストールした後のある時点で、デフォルトのpython3.5ランタイムではなくpython3.6を指すように/ usr/bin/python3シンボリックリンクを切り替えました。

/usr/bin/python3.5を指すようにsymlinkをリセットすると、すべてが修正されました。

2
Brooks

正確には、私の場合は助けました:ターミナル(またはターミナルが機能しない場合はUXTermまたはXterm)を開き、次の2つのコマンドを入力します。

Sudo rm /usr/bin/python3
Sudo ln -s /usr/bin/python3.5 /usr/bin/python3
1
Artur