Files
lk/distros/debian/apt.md
2026-04-20 06:09:58 +02:00

32 lines
389 B
Markdown

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