0 Members and 1 Guest are viewing this topic.
sudo apt-get update
sudo apt-get upgrade
sudo apt-get remove --purge mintupdate
sudo apt-get install mintupdate
Re: Your system is up to date.Postby clem on Wed Apr 06, 2011 12:33 pmWell, it all comes down to one thing and one thing only: You need to refresh your APT cache to see if there are "new" updates. For this, you need to elevate yourself to root.When you click on mintupdate, it launches itself in root mode, and that's why it asks for a password. When you type "apt update" (which is the same as "sudo apt-get update"), you're asked for a password too.. as you're elevating yourself as root to refresh the cache. Either way, you're refreshing your cache when you do that.What's important to realise here, is that mintUpdate isn't designed to "alert" you in "real time". It's not a server admin tool to keep your box up to date "the minute" something is released in the repositories. Its primary function is to make it easy for people to upgrade and to prevent novice users from upgrading sensitive parts of their system (via the level system).Note however, that if you wanted mintUpdate to find updates and alert you in real time, all you'd have to do is to create a cron job that regularly calls "apt update". This would refresh the cache for you in the background and mintUpdate would then be able to find new updates, whether it's in root mode or user mode.
sudo crontab -e
*/30 * * * * apt-get update
++ Starting refresh++ Auto-refresh timer is going to sleep for 0 minutes, 0 hours and 4 days