My question is a follow-up to the existing question. Well, I love Ubuntu, but it keeps showing me updates every day. As I am a terminal-friendly guy, so often I update my Ubuntu with the following command:
sudo apt -y update && sudo apt -y upgrade && sudo apt -y autoremove && sudo apt -y autoclean
However, I don't like to see the popup window so frequently. It somehow distracts me from work. A while ago, I got the following popup:
As suggested in an old answer, there is no "Update" application in the startup. Please see the below screenshot:
Furthermore, the "Software & Updates" utility looks appropriately configured. For example, a screenshot is shown below:
I am using Ubuntu 20.04.5 LTS. How to stop Ubuntu from showing updates every day?
apt upgrade
to apply upgrades; you are awareapt upgrade
does not apply all upgrades, so the use of that command can leave some package(s) not upgraded meaning you'll get notifications that updates are available. You canman apt
to view all options, and please take special note ofapt full-upgrade
will can apply upgrades thatapt upgrade
will skip (splitting upgrades into these options gives you more control!) – guiverc Oct 19 '22 at 03:14full-upgrade
? I considerfull-upgrade
asdist-upgrade
. I don't want to move to new LTS accidentally. – ravi Oct 19 '22 at 06:06apt upgrade
as my 3 times daily upgrade command usesfull-upgrade
. Theapt
cannot upgrade you beyond the current release, ie. you're currently on focal or 20.04, and the mostapt full-upgrade
(ordist-upgrade
) can do is change you from 20.04.4 to 20.04.5; ie. there is no change to your release (focal or 20.04 still) but upgrade level changes.. To release-upgrade requires changes to your sources whichapt
cannot do; Ubuntu usesdo-release-upgrade
& like tools to perform that task. – guiverc Oct 19 '22 at 06:10full-upgrade
to me. I understand. – ravi Oct 19 '22 at 06:11dist-upgrade
orfull-upgrade
(at least to me anyway) is if you have a existing problem in your sources as that can cause damage now; instead of later... but if/when I make a mistake; I'd rather know about it now than leave a minefield for later.. (why I useapt autoremove
&autoclean
always like you do already!) If you're concerned you should be avoiding the-y
which provides AFFIRMATION to the damage before you read the impacts of the command & it asks for confirmation. fyi: I don't automate my upgrades; I always want to peruse them first – guiverc Oct 19 '22 at 06:16