23 lines
259 B
Markdown
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
|
|
```
|