hap497
hap497

Reputation: 163055

How to uninstall the libraries in ubuntu

In ubuntu 9.10, I execute the following command to download/install the following libraries:

sudo aptitude build-dep openjdk-6

sudo aptitude install openjdk-6-jdk

Can you please tell me how to uninstall the libraries I installed using the above command.

Upvotes: 1

Views: 30599

Answers (3)

Lalit Patel
Lalit Patel

Reputation: 59

$ dpkg --get-selections | grep -v deinstall | grep software_name | awk '{ print $1 }'

$ sudo apt-get purge package_name

Upvotes: 0

gennad
gennad

Reputation: 5575

sudo apt-get remove openjdk-6-jre-headless
sudo apt-get autoremove

Upvotes: 2

mtvee
mtvee

Reputation: 1565

sudo apt-get remove openjdk-6-jdk

Upvotes: 9

Related Questions