6

So I was playing around with a ubuntu 11 VPS, and I installed tomcat using apt-get, and after some time I messed something up, and instead of figuring out the issue I thought I could just remove the package and start over.

sudo apt-get remove tomcat6

I noticed when I removed the package, the folders that tomcat used were still around, so I deleted them:

/etc/tomcat6
/var/lib/tomcat6/
/usr/share/tomcat6

When I tried to install the package again, there were some errors as it was trying to look for files in I believe /usr/share/tomcat6 (I don't recall now).

Did I miss a step or something, shouldn't have this theoretically worked?

Blankman
  • 8,275

2 Answers2

8

For what is worth, here is your answer:

sudo apt-get purge [package]
sudo apt-get install <package> --reinstall
Yi Jiang
  • 1,206
Hernan Cussi
  • 81
  • 1
  • 2
3

You can remove tomcat using terminal in Ubuntu with these very simple steps:

Step 1: Find all packages related with tomcat

dpkg -l|grep tomcat 

Step 2: Remove desired tomcat package

sudo dpkg -P (package you want to delete)
crisron
  • 243
  • 4
  • 12
  • 2
    Welcome to Ask Ubuntu! We require that you explicitly disclose that you're linking to your own blog (or other page you've written or are otherwise affiliated with), when doing so. At minimum, please edit your post to include such disclosure. Also, I recommend against using shortened links (like the "is.gd" link here), as they prevent readers from knowing what site they link to (and thus discourage many readers, for security reasons). – Eliah Kagan Jan 07 '13 at 10:25