Skip to main content

Enable Auto Updates

·74 words·1 min
Essential Posts 101 ubuntu
Table of Contents
New vulnerabilities are found regularly. Ensuring system packages are up to date is crucial for security.

Ubuntu can apply security updates automatically, without user interaction. This is done via the unattended-upgrades package, which is installed by default.

Auto Update
#

Consider enabling auto security updates:

% sudo apt install unattended-upgrades
% sudo dpkg-reconfigure --priority=low unattended-upgrades

Manual Update
#

To manually update packages:

% sudo apt update && sudo apt upgrade 

Links#

Related

NodeJS 101
·389 words·2 mins
xx
Posts 101 nodejs ubuntu
See how I setup node.js on Ubuntu 22.04 (Jammy)
Python Package
·223 words·2 mins
Posts Essential 101 python
Fundamental building block for Python package.
Adding Python3.11
·261 words·2 mins
Posts 101 python ubuntu
Steps to install alternate Python version for Noble