
How to Manually Enable Automatic Updates on Debian and Ubuntu 22.04 / 24.04
Keeping your servers updated with the latest security patches and software updates is crucial for system stability and security. This guide will show you how to enable automatic updates on Debian and Ubuntu 22.04 / 24.04 to ensure that important updates are installed regularly.
Step 1: Install Unattended Upgrades
First, install the unattended-upgrades package, which handles automatic updates.
sudo apt update && sudo apt install unattended-upgrades -y
Step 2: Enable Automatic Updates
By default, unattended-upgrades may already be enabled, but you should verify and configure it for your needs.
To check if it’s active:
sudo systemctl status unattended-upgrades
If it’s inactive, enable it manually:
sudo systemctl enable –now unattended-upgrades
Step 3: Configure Automatic Updates
To customize the update settings, open the configuration file:
sudo nano /etc/apt/apt.conf.d/50unattended-upgrades
Look for this section:
// Unattended-Upgrade::Allowed-Origins {
// “${distro_id}:${distro_codename}-updates”;
// “${distro_id}:${distro_codename}-security”;
// };
Uncomment the lines by removing // at the beginning to enable updates:
Unattended-Upgrade::Allowed-Origins {
“${distro_id}:${distro_codename}-updates”;
“${distro_id}:${distro_codename}-security”;
};
Save and exit by pressing CTRL + X, then Y, and Enter.
Step 4: Set Update Frequency
Open the periodic updates configuration file:
sudo nano /etc/apt/apt.conf.d/10periodic
Modify or add these lines to set the update interval in days:
APT::Periodic::Update-Package-Lists “1”;
APT::Periodic::Download-Upgradeable-Packages “1”;
APT::Periodic::AutocleanInterval “7”;
APT::Periodic::Unattended-Upgrade “1”;
"1"
means the system will check for updates daily."7"
means it will clean old packages weekly.
Save and exit the file.
Step 5: Configure Email Notifications (Optional)
To receive email alerts about automatic updates, install apticron:
sudo apt install apticron -y
Open the configuration file:
sudo nano /etc/apticron/apticron.conf
Find the line that starts with EMAIL="root"
and replace "root"
with your email address:
EMAIL=”your-email@example.com“
Save and exit.
Step 6: Test Automatic Updates
To manually trigger an update and test the settings:
sudo unattended-upgrades –dry-run –debug
If everything is configured correctly, your system will now automatically check, download, and install updates, ensuring security and stability.
Would you like help configuring additional security measures or troubleshooting update issues? Let me know! 🚀