tags:

views:

404

answers:

1

Hi,

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.

Thank you.

+2  A: 
sudo apt-get remove openjdk-6-jdk
mtvee
Thanks. But what about how to undo 'sudo aptitude build-dep openjdk-6'?
hap497
I believe apt is smart enough to handle deps properly as well. At least it will usually note them. You can also `sudo apt-get autoremove ...` to nuke deps automatically.
mtvee