I was just wondering how to completely disable updates on my Yoga 2 11, which has a corrupted BIOS-- I can't fix broken updates with a reinstall anymore. I was wondering specifically if there was a way to disable the commandsudo apt-get upgrade
and the update manager as well. I don't want my laptop being updated at all, and I know I'll break my system or something if I update! Thanks for any and all input.
Asked
Active
Viewed 123 times
3

Robert Sederholm
- 750
1 Answers
4
In the System Settings go to Software & Updates, under "Updates" set "Automatically check for updates" to Never
And Disable unattended upgrades:
sudo dpkg-reconfigure unattended-upgrades
Select "no" when asked "Automatically download and install stable updates?" then select "ok".
Instead of disabling apt-get
it would be better to place a hold on packages you dont't want to get updated as shown in the answer to this question:

stumblebee
- 3,547
apt-get upgrade
it will install the updated packages. It shows upgrades are there (available) becauseapt-get uptates
had been already run. – stumblebee Apr 07 '18 at 07:52apt-get upgrade
you could also blacklist that command. IMHO that would be as silly as disablingrm
because you are afraid of accidentally deleting something. – stumblebee Apr 12 '18 at 04:34