lk/distros/debian/apt.md

35 lines
392 B
Markdown
Raw Normal View History

2022-01-16 18:20:39 +00:00
---
title: "apt"
2025-02-11 19:47:50 +00:00
tags: [ "distros" ]
2022-01-16 18:20:39 +00:00
---
2020-01-02 00:04:35 +00:00
## apt
### Configurations?
2022-01-22 18:57:34 +00:00
Messed up a package's configuration files?
2020-01-02 00:04:35 +00:00
2025-02-12 14:01:15 +00:00
```sh
sudo apt-get purge [thing]
```
2020-01-02 00:04:35 +00:00
2025-02-12 14:01:15 +00:00
```sh
sudo apt autoremove
```
2020-01-02 00:04:35 +00:00
Check if you still have related things:
2025-02-12 14:01:15 +00:00
```sh
apt search [thing]
```
2020-01-02 00:04:35 +00:00
2025-02-12 14:01:15 +00:00
```sh
sudo apt-get install [ thing ]
```
2020-01-02 00:04:35 +00:00
Still have problems?
2025-02-12 14:01:15 +00:00
```sh
sudo dpgk --force-confmiss -i /var/cache/apt/archives/[thing]
```
2020-01-02 00:04:35 +00:00