回答:
これは、新しくインストールされたシステムに使用可能なパッケージのデータベースがないために発生する可能性があります。以下の手順で、パッケージリポジトリから最新のものを生成できます。
端末を開きます。これを実現する方法はたくさんありますが、最も一般的な方法は
terminal
ダッシュを入力して、同じ名前のアプリケーションを起動するか、次のコマンドを入力するか、コピーしてターミナルに貼り付け、実行します。
sudo apt update
sudo apt upgrade -y
(プロセスでエラーが発生した場合は、新しい質問を開いて、これらのコマンドの出力全体を逐語的に含めてください。)
ソフトウェアセンターを再度開いて、再試行してください。
sudo apt-get update && sudo apt-get upgrade
再起動しても問題が解決しない場合は、次のことをお勧めします。
sudo apt-get dist-upgrade
再起動。それでも問題が解決しない場合は、プログラムに関連付けられているホームディレクトリのフォルダをバックアップしてから削除することもできます。まず、ターミナルまたはその他のCLIで:
killall gnome-software
その後
mv ~/.local/share/gnome-software{,-BAK}
Ubuntuソフトウェアを再度開きます。(必要な場合は、いつでもGNOME-ソフトウェアフォルダの削除を元に戻すと、バックアップを復元することができますrm -r ~/.local/share/gnome-software && mv ~/.local/share/gnome-software{-BAK,}
)
最後に、これでうまくいかない場合は、次の出力を知りたいと思います。
find /etc/apt/ -name '*.list' -ls -exec cat {} \;
これは、許可されているすべてのソースのリストです(ソースとは、ダウンロード可能なソフトウェアを含むリポジトリです)。
sources.listに何もない理由は考えられませんが、通常のトラブルシューティング手順をすべて試した後、Ubuntuソフトウェアで何も利用可能と表示されない理由について私が考えることができる唯一の説明でもあります。
上記のコマンドの出力例:
1234567 4 -rw-r--r-- 1 root root 3026 Apr 8 22:39 /etc/apt/sources.list
# deb cdrom:[Ubuntu 16.04.1 LTS _Xenial Xerus_ - Release amd64 (20160719)]/ xenial main multiverse restricted universe
# 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, 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
## 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 http://us.archive.ubuntu.com/ubuntu/ xenial-backports main restricted universe multiverse
# 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
上記の例では、4つのメインリポジトリが有効になっています。
更新も有効になります。Canonicalパートナーのソフトウェアを使用したリポジトリは有効になっていません。これらは、Ubuntuを初めてインストールするときに有効になる標準オプションを表しています。
PPAを追加した場合は、上記の出力にも表示されます。
mv ~/.local/share/gnome-software{,-BAK}
なぜだかわかりません。
sudo apt-get update
してsudo apt-get upgrade
コマンドを実行しました