0

I have the following configuration in my system:

  • 2Gb Ram
  • 64 bit system
  • Linux 12.0.1

The problem is when open the eclipse the system become very slow and if I open chrome it becoming too slow. And I checked in the system there were two Java version is running 1. Java jdk5
2. Java jdk6

please help to fix this.

dobey
  • 40,982
Suresh Pattu
  • 101
  • 2

2 Answers2

0
  • Install more RAM ;)
  • Do you mean running in sense of processes?
  • Open a terminal and look for the java installations:
    ls /usr/lib/jvm/
  • Have you used the package manager? Then remove it with the software-center.
  • Look here if you installed from oracle: [
Manuel
  • 1,567
  • 12
  • 19
0

You can use update-alternatives

sudo update-alternatives --install "/usr/bin/javac" "javac" "/usr/lib/jvm/java-6.45-oracle/bin/javac" 1

and then follow it with a command

sudo update-alternatives --config javac

You can refer to the official instruction on installing Java by visiting https://help.ubuntu.com/community/Java

AurA
  • 363