Reputation: 163055
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
Reputation: 59
$ dpkg --get-selections | grep -v deinstall | grep software_name | awk '{ print $1 }'
$ sudo apt-get purge package_name
Upvotes: 0