Who won't love updating computer? Here is a simple way to configure Ubuntu to automatic updating.
Command:
Check that unattended-upgrades package is installed and running
apt install unattended-upgrades -y
systemctl start unattended-upgrades && systemctl enable unattended-upgrades
Edit configure file
nano /etc/apt/apt.conf.d/50unattended-upgrades
Enable auto upgrades
nano /etc/apt/apt.conf.d/20auto-upgrades
APT::Periodic::Update-Package-Lists "1";
APT::Periodic::Unattended-Upgrade "1";
APT::Periodic::AutocleanInterval "5";
Testing
unattended-upgrades --dry-run --debug
Support channel: https://www.youtube.com/c/HeikkiKoivi...
#Ubuntu #update #unattended