web-dev-qa-db-ja.com

更新通知が機能しない[キャッシュの問題]

更新が利用可能になったとき、更新通知は通知しません。しばらく前に私は同様の問題を抱えていましたが、これはうまくいきました:

Sudo rm /var/lib/update-notifier/dpkg-run-stamp
Sudo rm /var/lib/update-notifier/updates-available
Sudo rm /var/lib/apt/periodic/update-success-stamp

ただし、この場合は機能しません。

Sudo /usr/lib/update-notifier/update-motd-updates-available --force
E: Unknown error: «<class 'KeyError'>» ("The cache has no package named 'wine1.7-i386'")

私も試しました:

Sudo apt-get clean
Sudo apt-get auto-clean
Sudo apt-get clean all

しかし、それもうまくいきませんでした。

誰でもそれを修正する方法を知っていますか?

moray33@Jose:~$ Sudo apt-get check
Reading package lists... Done  
Building dependency tree       
Reading state information... Done  
moray33@Jose:~$ Sudo dpkg --audit
moray33@Jose:~$ dpkg -S /var/lib/apt/periodic/ /var/lib/update-notifier/
apt: /var/lib/apt/periodic
update-notifier-common, ubuntu-release-upgrader-core, update-manager-core: /var/lib/update-notifier
2
moray33

こんにちは、ubuntuが初めてなので、試しています。Dreamveaverを使用したいのでワインを知りましたが、成功しませんでした。コンピュータを「Windowsサーバー」に接続します(これがエラーメッセージの意味です)。とにかくそれらのことをした後、私は今朝まであなたと同じ問題を抱えていた。

E: Unknown error: «<class 'KeyError'>» ("The cache has no package named 'wine1.7-i386'")

「失った」wine1.7-i386があったので、再インストールしようとしたので実行しました

Sudo apt-get update
Sudo apt-get install wine1.7-i386

その後、wine1.7とwine1.7-AMD64を更新し、wine1.7-i386もインストールしました。ちょっとまた、wine1.7-i386をダウンロードしている間、それは何らかの忘れられた理由で中止しました。しかし、私は同じコマンドを再入力し、それを続けました。そして今、エラーメッセージは消えています。それがあなたを助けることを願っています。


PS:Sudo rm /var/lib/update-notifier/dpkg-run-stampまたはその他を使用したことはありません。

4
Ray-dono

私は同じ問題を抱えていて、この解決策を見つけました。アンインストールしてから再インストールしました。 wine1.7-i386をアップグレードしようとしましたが、最新バージョンだと言われました。

Sudo apt-get remove --purge wine1.7-i386
rm -r ~/.wine
Sudo apt-get install wine1.7-i386

ソース: http://ubuntuforums.org/showthread.php?t=810815

0
Exikle

私にとってうまくいったのは、すべてのWineパッケージを削除し、これらのフォルダーをすべて削除したことです。HOME/ .wine HOME/.config/menus/applications-merged/wine * HOME/.local/share/applications/wine HOME /。 local/share/desktop-directories/wine * HOME/.local/share/icons /その後、Wineを再インストールすると、この問題はもう発生していません。

0
moray33

これは私のために働いた:

Sudo ( apt-get update && Sudo apt-get dist-upgrade )

その後、ログアウトして再度ログインします。

https://askubuntu.com/questions/531248/why-is-there-a-persistant-apt-error-indicator-when-i-have-since-repaired-my-syst =

0
unhammer