lk/distros/debian/apt.md
2025-02-12 15:01:15 +01:00

35 lines
392 B
Markdown

---
title: "apt"
tags: [ "distros" ]
---
## apt
### Configurations?
Messed up a package's configuration files?
```sh
sudo apt-get purge [thing]
```
```sh
sudo apt autoremove
```
Check if you still have related things:
```sh
apt search [thing]
```
```sh
sudo apt-get install [ thing ]
```
Still have problems?
```sh
sudo dpgk --force-confmiss -i /var/cache/apt/archives/[thing]
```