0

I've Installed OpenJDK 6, opened the jar with java by right clicking, but it doesnt do anything

What am I missing?

I've also tried java -jar Minecraft.jar with sudo, didn't worked :(

  • 2
    "Didn't worked" is such an informative description of the problem :) Expect helpful detailed answers... http://askubuntu.com/search?q=lwjgl – Sergey Dec 30 '12 at 01:18
  • Do you receive any output on your terminal when you try java -jar Minecraft.jar? – tgies Dec 30 '12 at 01:35
  • Possible Duplicate: http://askubuntu.com/questions/225432/how-to-correctly-install-and-troubleshoot-minecraft-client/225433#225433 – Seth Dec 30 '12 at 02:27

1 Answers1

0

Is the jar marked as executable? Right click on the jar file and check the execution permissions, or run

sudo chmod a+x Minecraft.jar

in the terminal.

functionptr
  • 993
  • 1
  • 9
  • 23