Uninstall LAMP Ubuntu 11.10

1

I recently installed a LAMP stack on my Ubuntu 11.10 machine so I can work a little more easily with some of my outside work. However come to find out the lamp stack is conflicting with my core paying job. Now I need to remove apache, mysql, php, and phpmyadmin so I can get back on track with my main paying job.

So question today is how do I uninstall my LAMP packages (cleanly)

chris

Posted 2011-11-04T18:51:36.330

Reputation: 648

Answers

1

apt-get remove --auto-remove

is your friend. Identify the packages you've installed by hand (by looking at your logs and notes, for example) and remove them, letting auto-remove take care of the rest.

thiton

Posted 2011-11-04T18:51:36.330

Reputation: 826