Re: PHP 4 uninstall

2006-05-24 Thread Paul Dwerryhouse
On Mon, May 22, 2006 at 10:44:34PM +0200, JB MORLA wrote: >I have mistakenly installed php4 when I wanted php5. >Which apt-get commands should I use to completely remove PHP 4? This ought to do it: apt-get --purge remove `dpkg --get-selections | grep php4 | awk '{print $1}'` You might pr

Re: PHP 4 uninstall

2006-05-23 Thread Clive Menzies
On (22/05/06 22:44), JB MORLA wrote: > I have mistakenly installed php4 when I wanted php5. > Which apt-get commands should I use to completely remove PHP 4? I use: $ sudo aptitude purge php4 then: $ sudo updatedb then: $ locate php4 and remove any left over config files. Regards Clive --

PHP 4 uninstall

2006-05-22 Thread JB MORLA
Hi,   I have mistakenly installed php4 when I wanted php5. Which apt-get commands should I use to completely remove PHP 4?   Many thanks