Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/samk13/linux-pop-os-notes
https://github.com/samk13/linux-pop-os-notes
Last synced: about 5 hours ago
JSON representation
- Host: GitHub
- URL: https://github.com/samk13/linux-pop-os-notes
- Owner: Samk13
- License: mit
- Created: 2024-05-22T07:18:36.000Z (6 months ago)
- Default Branch: master
- Last Pushed: 2024-06-15T14:27:14.000Z (5 months ago)
- Last Synced: 2024-06-15T15:36:29.989Z (5 months ago)
- Size: 275 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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
```