12

When I launch JD-GUI on my Ubuntu 12.04.3 (Precise Pangolin) 64 bits system, nothing happens:

user@host:~/jd-gui-0.3.5.linux.i686$ ./jd-gui
user@host:~/jd-gui-0.3.5.linux.i686$ 

How do I launch it?

Peter Mortensen
  • 30,738
  • 21
  • 105
  • 131
Anthony O.
  • 22,041
  • 18
  • 107
  • 163

5 Answers5

9

For Ubuntu 13.10 64 bit, you should use

sudo apt-get install libgtk2.0-0:i386
sudo apt-get install libcanberra-gtk-module:i386
sudo apt-get install gtk2-engines-murrine:i386
kavai77
  • 6,282
  • 7
  • 33
  • 48
7

You should install package ia32-libs.

Anthony O.
  • 22,041
  • 18
  • 107
  • 163
  • On Ubuntu 13.10 x86_64 it should be `sudo apt-get install ib32z1 lib32ncurses5 lib32bz2-1.0 libgtk2.0-0:i386 libxxf86vm1:i386 libsm-dev:i386 libcanberra-gtk3-module:i386` – ademar111190 Feb 11 '14 at 22:36
  • 11
    On Ubuntu 14.04 x86_64 it should be sudo apt-get install libgtk2.0-0:i386 libxxf86vm1:i386 libsm6:i386 lib32stdc++6 – shadowbq Jul 07 '14 at 19:27
  • he asked how to launch you are answering how to install – Nasz Njoka Sr. Mar 12 '15 at 10:36
  • Not really, actually the OP shows a problem on launch, which is a lack of installed lib: jd-gui depends on those ia32 libs and others. – Anthony O. Mar 12 '15 at 15:37
  • 1
    @ademar111190 Edit : On Ubuntu 13.10 x86_64 it should be `sudo apt-get install lib32z1 lib32ncurses5 lib32bz2-1.0 libgtk2.0-0:i386 libxxf86vm1:i386 libsm-dev:i386 libcanberra-gtk3-module:i386` – Kushal Mar 23 '15 at 11:01
5

For Ubuntu 14.04, you can use :

sudo apt-get install lib32z1 lib32ncurses5 lib32bz2-1.0 libgtk2.0-0:i386 libxxf86vm1:i386 libsm-dev:i386 libcanberra-gtk3-module:i386
Kushal
  • 8,100
  • 9
  • 63
  • 82
3

I am using Ubuntu 14.04 LTS, all the methods above (apt-get install blabla) don't work.

this worked for me:

$ git clone git@github.com:java-decompiler/jd-gui.git
$ gradle build 

then a file will be generated to : build/libs/jd-gui-1.0.0.jar

run it:

$ java -jar build/libs/jd-gui-1.0.0.jar
Siwei
  • 19,858
  • 7
  • 75
  • 95
1

There is another option to use jd-gui on Ubuntu 64 bit. Download jd-gui for Windows and use Wine to open it. It works fine and without any hassles.

Peter Mortensen
  • 30,738
  • 21
  • 105
  • 131
  • 3
    OP specifically asks for a solution for his linux problem, using windows via wine is like saying take a bike if you want your car fixed – Gunther Struyf Aug 27 '14 at 10:38
  • what they ask is to be able to use it, and they will. your answer is like a very immature one. – read_somewhere_else Aug 30 '14 at 07:45
  • Id like to see you doing this in the real world, little man. but it is so easy to "grow up" in the internet. go ahead. make for the real world here. – read_somewhere_else Aug 30 '14 at 08:37
  • 1
    Wine is just an emulator for windows, so this solution works for (almost) _any_ application that should also work on windows. _In my opinion_ this is not what OP was looking for. See [here](https://meta.stackoverflow.com/questions/252297) if you'd like to see more discussion on downvoting and commenting. – Gunther Struyf Sep 07 '14 at 17:29