web-dev-qa-db-ja.com

Ubuntu 13.04でソフトウェアとアップデート/ソフトウェアソースを開けない

Ubuntu(Raring Ringtail)であるシングルOSを実行しているMacBook Air Mid 2012を使用しています。 Ubuntuを使用してから1か月が経ち、すべてが正常に機能します。最近、ソフトウェアと更新プログラムを開くことができません。クリックしても表示されません。 Ubuntu Software Center-> Edit-> Software Sourcesを開くと、再び開きません。

しかし、ターミナルを開いたら、次のように入力します

Sudo software-properties-gtk

表示されます/開いています。私は困っていますか?何か問題がありますか?

注:Ubuntu Software Centerからのソフトウェアのインストール、ターミナルからのインストール、Software Updaterの起動は正常に機能します。 Ubuntuを本当に愛しています!

入力したときのターミナルからの出力:

Sudo dpkg-reconfigure software-center

Updating software catalog...this may take a moment.
INFO:softwarecenter.db.pkginfo_impl.aptcache:aptcache.open()

WARNING:softwarecenter.db.update:The file: '/usr/share/app-install/desktop/sonic-visualiser:x-sonicvisualiser.desktop' could not be read correctly. The application associated with this file will not be included in the software catalog. Please consider raising a bug report for this issue with the maintainer of that application

WARNING:softwarecenter.db.update:The file: '/usr/share/app-install/desktop/workrave:workrave.desktop' could not be read correctly. The application associated with this file will not be included in the software catalog. Please consider raising a bug report for this issue with the maintainer of that application

WARNING:softwarecenter.db.update:The file: '/usr/share/app-install/desktop/sonic-visualiser:x-sonicvisualiser-layer.desktop' could not be read correctly. The application associated with this file will not be included in the software catalog. Please consider raising a bug report for this issue with the maintainer of that application

Software catalog update was successful.

image

3
Andzt

warningによると、リポジトリ内のアプリの一部が正しく更新されていないため、バグのようです。投稿が示唆しているように、 バグを起動する を考慮する必要があります。

しかし、その前に問題を修正しようとすることは悪くありません。気にしない場合は、software-centerを完全に削除し、再度インストールすることをお勧めします。

ターミナルで次のコマンドを実行して、削除/インストールしてください。

Sudo apt-get autoremove software-center
Sudo apt-get --purge remove software-center
Sudo apt-get autoclean && Sudo apt-get autoremove
rm -r ~/.config/software-center
Sudo apt-get update
Sudo apt-get -f install software-center

念のため、 synaptic をインストールし、Software & Updatesを開くことができるかどうかを確認してください。また、壊れたまたは残ったパッケージがあるかどうかを確認します。

問題の解決に役立つことを願っています。何か問題が発生した場合は返信してください。

2
Saurav Kumar