Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/samk13/linux-pop-os-notes


https://github.com/samk13/linux-pop-os-notes

Last synced: about 5 hours ago
JSON representation

Awesome Lists containing this project

README

        

# linux-notes

## Uninstall .deb packages

```bash
# find the package
dpkg -l | grep -i my-package
```

Uninstall using apt

```bash
# find the package
sudo apt remove my-app
```