0

I've just installed TokuMX according to this tutorial on my Ubuntu Server 12.04. Basically I did the following:

$ ls tokumx*.deb
tokumx_1.4.0-1-precise_amd64.deb  tokumx-clients_1.4.0-1-precise_amd64.deb  tokumx-common_1.4.0-1-precise_amd64.deb  tokumx-server_1.4.0-1-precise_amd64.deb

$ sudo dpkg -i tokumx*.deb

$ sudo apt-get -f install

All works fine. But I'm just curious how could I completely remove this one with all installed dependencies from my machine?

Stennie
  • 63,885
  • 14
  • 149
  • 175
Erik
  • 14,060
  • 49
  • 132
  • 218
  • I believe tokumx registeres itself as `tokumx` so: `sudo apt-get remove --purge tokumx` That should remove the main package and all of its dependancies which should be the others you installed – Sammaye Mar 04 '14 at 10:52

1 Answers1

1
$ sudo apt-get purge tokumx tokumx-server tokumx-common tokumx-clients 
$ sudo apt-get autoremove
leif
  • 1,987
  • 4
  • 19
  • 22