PDA

View Full Version : Uninstall


jbullard
June 22nd, 2007, 01:45 PM
How do you uninstall this thing????? I don't want to just start deleting directories. Please let me know.

THanks

ajgreeny
June 22nd, 2007, 03:10 PM
Uninstall what thing? If you want to get rid of ubuntu totally, just format the partition or install something else over it, but remember if you have windows as well you will need to restore the MBR for you to be able to boot into windows again. You can do this with the windows install CD, Recovery Console and fixmbr.

jbullard
June 22nd, 2007, 03:41 PM
Uhm....EHCP...since this is the subforum if I am not mistaken.

ajgreeny
June 23rd, 2007, 03:52 PM
OK, I see. I don't usually notice which subforum of the whole forum I am on as the screen is always too low to even show that for me, (it's set to show the last unread post in any thread that I look at using the RSS feed in Firefox Bookmarks Toolbar). To answer your query is beyond me I'm afraid.

bvidinli
June 27th, 2007, 02:53 AM
if you want to just stop running ehcp,
then it is enaugh to stop daemon,
you may issue command:

sudo killall php

this will stop running ehcp daemon, which php runs it.


if you want to remove totally ehcp, then,
there is no automatic way,
you need to do two thins:

1- remove directory that you installed ehcp, for example,
rm -rvf /home/yourname/ehcp

2- delete ehcp database from your mysql server,
get into mysql console,
mysql
drop database ehcp


Ehcp also installs some server programs such as apache, mysql, postfix, etc.
you actually dont need to delete them, as they may be needed later on your system,
if you still want to delete all of them, then issue this command on your command line:

sudo apt-get remove php5 php5-imap php5-mysql php5-cli postfix postfix-mysql postfix-doc mysql-client mysql-server courier-authdaemon courier-authlib-mysql courier-pop courier-pop-ssl courier-imap courier-imap-ssl libsasl2 libsasl2-modules libsasl2-modules-sql sasl2-bin libpam-mysql openssl phpmyadmin pure-ftpd-mysql mysql-server apache2 bind9 mysql-client


this will remove anything that ehcp installs...


see you..