2022-01-16 18:20:39 +00:00
|
|
|
---
|
|
|
|
title: "apt"
|
|
|
|
tags: [ "Documentation", "distros" ]
|
|
|
|
---
|
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
|
|
|
|
2023-06-17 19:28:20 +00:00
|
|
|
```bash
|
|
|
|
sudo apt-get purge [thing]
|
|
|
|
```
|
2020-01-02 00:04:35 +00:00
|
|
|
|
2023-06-17 19:28:20 +00:00
|
|
|
```bash
|
|
|
|
sudo apt autoremove
|
|
|
|
```
|
2020-01-02 00:04:35 +00:00
|
|
|
|
|
|
|
Check if you still have related things:
|
|
|
|
|
2023-06-17 19:28:20 +00:00
|
|
|
```bash
|
|
|
|
apt search [thing]
|
|
|
|
```
|
2020-01-02 00:04:35 +00:00
|
|
|
|
2023-06-17 19:28:20 +00:00
|
|
|
```bash
|
|
|
|
sudo apt-get install [ thing ]
|
|
|
|
```
|
2020-01-02 00:04:35 +00:00
|
|
|
|
|
|
|
Still have problems?
|
|
|
|
|
2023-06-17 19:28:20 +00:00
|
|
|
```bash
|
|
|
|
sudo dpgk --force-confmiss -i /var/cache/apt/archives/[thing]
|
|
|
|
```
|
2020-01-02 00:04:35 +00:00
|
|
|
|