1

Today I installed JDK on my ubuntu VM using command sudo apt-get install openjdk-7-jdk.But i can't figure out where exactly it has got installed, will I need to configure the Java in my VM so that it can be used by eclipse. In windows we change the system variable to set up Java.What do i need to do in ubuntu?

Anamdeo
  • 111

1 Answers1

2

Open a terminal and call:

dpkg -L openjdk-7-jdk

This will list all files installed from the .deb-package.

MadMike
  • 4,275
  • 8
  • 29
  • 50