Can't launch JD-GUI on Ubuntu 12.04.3 64 bits
Asked Answered
I

5

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?

Inconformity answered 10/1, 2014 at 13:59 Comment(0)
I
7

You should install package ia32-libs.

Inconformity answered 10/1, 2014 at 13:59 Comment(5)
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:i386Therontheropod
On Ubuntu 14.04 x86_64 it should be sudo apt-get install libgtk2.0-0:i386 libxxf86vm1:i386 libsm6:i386 lib32stdc++6Toscana
he asked how to launch you are answering how to installSlr
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.Inconformity
@Therontheropod 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:i386Appanage
B
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
Brammer answered 19/2, 2014 at 11:50 Comment(0)
I
7

You should install package ia32-libs.

Inconformity answered 10/1, 2014 at 13:59 Comment(5)
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:i386Therontheropod
On Ubuntu 14.04 x86_64 it should be sudo apt-get install libgtk2.0-0:i386 libxxf86vm1:i386 libsm6:i386 lib32stdc++6Toscana
he asked how to launch you are answering how to installSlr
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.Inconformity
@Therontheropod 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:i386Appanage
A
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
Appanage answered 23/3, 2015 at 11:17 Comment(0)
T
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 [email protected]: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
Tierza answered 19/4, 2015 at 8:29 Comment(0)
M
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.

Masterful answered 24/8, 2014 at 10:7 Comment(4)
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 fixedCoeval
what they ask is to be able to use it, and they will. your answer is like a very immature one.Masterful
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.Masterful
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 if you'd like to see more discussion on downvoting and commenting.Coeval

© 2022 - 2024 — McMap. All rights reserved.