Web Hosting Talk







View Full Version : Uninstalling Java on a Linux machine


papaj123
06-16-2004, 06:35 PM
How do I do it...? (I apparently installed it incorrectly, and I'm now having problems with it and Apache.)

Oxygen_IT
06-16-2004, 07:25 PM
Was it RPM file ? or you compiled it ?

papaj123
06-16-2004, 07:38 PM
It was an RPM file.

mno
06-17-2004, 02:05 AM
What kind of problems are you having? Can you list some error messages?

5need
06-17-2004, 02:17 AM
Hello ,
Do that
rpm -qa | grep j2sdk | xargs rpm -e
it's will search for java and uninstall it automatic
if you still wanna to show result of java make :
rpm -qa | grep j2sdk
or
rpm -qa | grep java
then do rpm -e of them
Regards

papaj123
06-18-2004, 11:05 PM
What if it was a BIN file?

Burhan
06-19-2004, 06:15 AM
Just delete it, and remove the information from your PATH. If it was installed via RPM, then rpm -e should get rid of it (and all files that it installed).