Java libXt.so Erro de link não-satisfeito

0

Estou tentando instalar a ferramenta "Together UML" no meu Ubuntu 16.04. Mas está me dando o seguinte erro

mukund@mukund-Lenovo-U41-70:~/Downloads$ ./ta_4244v2_linux.bin
Preparing to install...
Extracting the JRE from the installer archive...
Unpacking the JRE...
Extracting the installation resources from the installer archive...
Configuring the installer for this system's environment...

Launching installer...

Invocation of this Java Application has caused an InvocationTargetException. This application will now exit. (LAX)

Stack Trace:
java.lang.UnsatisfiedLinkError: /tmp/install.dir.17310/Linux/resource/jre/jre/lib/i386/libawt.so: libXt.so.6: cannot open shared object file: No such file or directory
    at java.lang.ClassLoader$NativeLibrary.load(Native Method)
    at java.lang.ClassLoader.loadLibrary0(ClassLoader.java:1560)
    at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1477)
    at java.lang.Runtime.loadLibrary0(Runtime.java:788)
    at java.lang.System.loadLibrary(System.java:834)
    at sun.security.action.LoadLibraryAction.run(LoadLibraryAction.java:50)
    at java.security.AccessController.doPrivileged(Native Method)
    at sun.awt.NativeLibLoader.loadLibraries(NativeLibLoader.java:38)
    at sun.awt.DebugHelper.<clinit>(DebugHelper.java:29)
    at java.awt.Component.<clinit>(Component.java:506)
    at com.zerog.ia.installer.Main.c(Unknown Source)
    at com.zerog.ia.installer.Main.main(Unknown Source)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:324)
    at com.zerog.lax.LAX.launch(Unknown Source)
    at com.zerog.lax.LAX.main(Unknown Source)
GUI-
mukund@mukund-Lenovo-U41-70:~/Downloads$ 

Por favor ajude.

    
por Mukund Jadhav 21.10.2016 / 17:12

1 resposta

1

Instale o libxt6 com

sudo apt-get install libxt6

Em seguida, verifique novamente

sudo updatedb
locate libXt.so.6

Se você tem libXt.so.6.0.0 e não libXt.so.6 vá para o diretório onde você tem o arquivo e digite

ln -s libXt.so.6.0.0 libXt.so.6

Se você estiver na arquitetura x86 e quiser instalar o tipo de versão i386

sudo apt-get install libxt6:i386
    
por nobody 21.10.2016 / 17:47