Murguu Auto Clicker no Ubuntu 16.04.1

0

Recebi uma mensagem de erro ao executar o Murguu Auto Clicker x64 no ubuntu 16.04.1

$ ./AutoClicker
./AutoClicker: error while loading shared libraries: libXtst.so.6: cannot open shared object file: No such file or directory

Screenshoots

libxtst6 está instalado, eu verifiquei com isto:

$ sudo apt-get install libxtst6
Reading package lists... Done
Building dependency tree       
Reading state information... Done
libxtst6 is already the newest version (2:1.2.2-1).
0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.

$ locate libXts
/usr/lib/x86_64-linux-gnu/libXtst.so.6
/usr/lib/x86_64-linux-gnu/libXtst.so.6.1.0

alguma ideia?

Espero que alguém possa ajudar a corrigir isso

Obrigado

    
por ryanw 13.01.2017 / 05:39

1 resposta

0

Eu baixei o arquivo zip Murguu de 64 bits e mais tarde descobriu que o arquivo AutoClicker exigia binário de 32 bits:

Liso@thinkpad:~/Downloads$ file AutoClicker 
AutoClicker: ELF 32-bit LSB executable, Intel 80386, version 1 (SYSV), dynamically linked, interpreter /lib/ld-linux.so.2, for GNU/Linux 2.6.24, BuildID[sha1]=97621381fea36b46814d978e8ebab4f6caef9119, not stripped

Assim, o problema parece vir da biblioteca de 32 bits, mesmo que você instale a versão de 64 bits do Murguu.

Portanto, você precisará instalar a versão de 32 bits do libxtst6 , é muito fácil:

sudo apt-get install libxtst6:i386

Vai fazer os trabalhos.

    
por Liso 13.01.2017 / 09:15