added old posts from ghost

This commit is contained in:
paul-loedige
2024-12-03 15:38:07 +01:00
parent 7ac2af94ca
commit 052470509f
15 changed files with 301 additions and 3 deletions
@@ -0,0 +1,23 @@
+++
date = '2022-09-04T15:40:21'
draft = false
title = 'Automatic Updates'
type = 'post'
tags = ['Linux', 'Debian']
+++
Installing security updates is very important. Especially on a server that is not accessed on a daily basis.
This tutorial covers the basics for setting up unattended-upgrades on any Debian-based Linux distribution.
## Update the system
```
sudo apt update && sudo apt upgrade
```
## Install unattended-upgrades
```
apt install unattended-upgrades
```
```
dpkg-reconfigure unattended-upgrades
```
## Further Information
<https://wiki.debian.org/UnattendedUpgrades>