web-dev-qa-db-ja.com

Ubuntuソフトウェアにソフトウェアが表示されない

16.04のインストール後、スクリーンショットに示すようにUbuntuソフトウェアは常に空になります。どうすれば修正できますか?

enter image description here

8
zandrade

ソフトウェアと更新ダウンロード元サーバーを変更します。私は近くのスウェーデンのものに設定しました(おそらくそれ自体はまだ更新されていません)。私はより公式な英国のサーバーに変更し、Ubuntuソフトウェアは現在機能しています。

7
Michael

これは、新しくインストールされたシステムに利用可能なパッケージのデータベースがないためである可能性が最も高いです。以下の手順で、パッケージリポジトリから最新のものを生成できます。

  1. ターミナルを開きます。それを達成する方法はたくさんありますが、最も一般的なのは

    • ダッシュにterminalと入力して、同じ名前のアプリケーションを起動するか、
    • 押す Ctrl+Alt+T
  2. 次のコマンドを端末に入力またはコピーして貼り付け、実行します。

    Sudo apt update
    Sudo apt upgrade -y
    

    (プロセスでエラーが発生した場合は、新しい質問を開いて、これらのコマンドの全体出力を含めてくださいverbatim。)

  3. Software Centerを再度開き、再試行してください。

4
David Foerster

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-softwareフォルダーの削除をいつでも元に戻し、バックアップを復元できます: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つのメインリポジトリが有効になっています。

  1. メイン-Canonicalがサポートする無料のオープンソースソフトウェア。
  2. ユニバース-コミュニティが管理する無料のオープンソースソフトウェア。
  3. 制限付き-デバイス用の専用ドライバー。
  4. Multiverse-著作権または法的問題により制限されているソフトウェア。

更新も有効になります。 Canonicalパートナーのソフトウェアによるリポジトリは有効になっていません。これらは、Ubuntuを初めてインストールするときに有効になる標準オプションを表します。

PPAを追加した場合、上記の出力にも表示されます。

2
Hee Jin