How to check, remove JRE, JDK, OPENJDK installation?
Nov 13, 2012 - by kurinchilamp / Java / Post Comment
To check the current installation of java
$ rpm -qa | grep jre
$ rpm -qa | grep jdk
$ rpm -qa | grep openjdk
To remove the java installs
$ yum erase jre jdk openjdk
Continue Reading