6

i'm running ubuntu 11.04 with unity. Recently i found that Dolphin file manager and some qt libraries was installed in my distro, i guess it was installed as a dependency along with some QT softwares ( Qbittorent, Smplayer etc.,)

Well i can do 'sudo apt-get remove dolphin' but pls.suggest me the best way to remove all the unwanted libraries/dependencies of QT.

Thanks in advance

Jorge Castro
  • 70,934
  • 124
  • 466
  • 653
Karey Jack
  • 118
  • 1
  • 6

1 Answers1

5

Removing a package including no longer needed package dependencies can be done with

apt-get remove --autoremove <package>

(see also this answer)

However if Dolphin was installed as a dependency of another package, we need to remove this package first.

In case we need to keep any package depending on Dolphin we cannot remove Dolphin.

Takkat
  • 140,996
  • 54
  • 308
  • 426
  • Thanks. You are right! This should have come as a dependency while installing **digikam** (Correct me if i'm wrong) anyways removed dolphin, kdebase runtime, akonadi, nepomuk etc... – Karey Jack May 31 '11 at 04:35