docs-simoncor-net/docs/linux/packages.md
2025-05-30 18:37:57 +02:00

23 lines
259 B
Markdown

# Packages and updates
## Debian / Ubuntu
Update and upgrade.
```shell
apt update
apt upgrade -y
```
Default packages.
```shell
apt install -y sudo net-tools wget curl unzip htop vim
```
Autoremove and cleanup.
```shell
apt autoremove -y
apt clean
```