Created
November 7, 2018 17:29
-
-
Save naranjja/8fd12fb7c6233b3eb984dd66a49af469 to your computer and use it in GitHub Desktop.
Find and remove package from apt
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# look for package | |
dpkg --get-selections | grep '<PACKAGE_NAME_SUBSTRING>' | |
# remove package | |
sudo apt-get --purge remove <FOUND_PACKAGE_NAME> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment