Hi, folks.
I know that the initial complaint "
mintUpdate icon says "up to date" - even if updates available" was posted two months ago.
Yet, if I have not missed it, no-one has posted a solution, yet.
OK. So here is the solution which works fine for me:
Problem:mintUpdate icon says "up to date" - even if updates available, as reported.
Cause:There is a daily anacron job /etc/cron.daily/apt which is meant to update the local software list once per day. (apt-get update).
This job reads the configuration file /etc/apt/apt.conf.d/10periodic and checks the value of the setting named "
APT::Periodic::Update-Package-Lists"
This setting defaults to "0", unless explicitly set to "1".
I do not know since when. But it is a fact that this setting is missing on all of my Mint 13 installations from the file /etc/apt/apt.conf.d/10periodic.
As a consequence the daily job assumes it does not have to perform any
- Code: Select all
apt-get update
As a consequence MintUpdate is always happily telling me there are no updates, unless I open MintUpdate by clicking on the icon in the notification area nevertheless.
Solution:As user root edit the file /etc/apt/apt.conf.d/10periodic and make sure it holds the line
- Code: Select all
APT::Periodic::Update-Package-Lists "1";
Effect:Next time the daily job /etc/cron.daily/apt gets executed, it will perform
- Code: Select all
apt-get update
thus updating the local software list.
Provided updated software packages are available a few minutes later the MintUpdate icon in the notification area will let you know.
Problem solved.
Kind regards,
Karl