Hacker News new | ask | show | jobs
by wkat4242 885 days ago
It does that on FreeBSD as well yeah. Not a huge deal for me as I only install updates when I'm not in the middle of things. I love an OS that doesn't force me to do anything <3
1 comments

Disabling auto-updates on Ubuntu/Debian is, obviously, just a configuration option.
True, I was thinking more of Windows and MacOS.

I chose FreeBSD for a few things like jails, ZFS as first class citizen and no corporate "invented here" crap like snaps.

But I really hate coming back to my pc after a few days and find that it has rebooted to install an update, all my open work be damned. There's no good way to turn that off, nor the telemetry.

What is that option? I would love to disable firefox auto-updates.
For normal Apt updates [0]

  sudo dpkg-reconfigure --priority=low unattended-upgrades
or edit /etc/apt/apt.conf.d/20auto-upgrades.

For Snap [1]

  snap refresh --hold=forever firefox
Or for all Snap applications

  snap refresh --hold=forever
(Various other useful options are documented, like only updating at weekends, or when the application isn't running.)

[0] https://help.ubuntu.com/community/AutomaticSecurityUpdates

[1] https://askubuntu.com/questions/930593/how-to-disable-autore...