运行时我收到错误消息穆尔古Ubuntu 16.04.1 中的 Auto Clicker x64
$ ./AutoClicker
./AutoClicker: error while loading shared libraries: libXtst.so.6: cannot open shared object file: No such file or directory
libxtst6 已安装,我使用以下命令进行检查:
$ 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
有任何想法吗?
我希望有人能帮助解决这个问题
谢谢
答案1
我已经下载了Murguu 64 位 zip 文件后来发现该AutoClicker
文件需要 32 位二进制文件:
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
因此,即使您安装了 64 位版本的 Murguu,问题似乎也来自于所需库的 32 位版本。
因此您需要安装 32 位版本libxtst6
,这很容易:
sudo apt-get install libxtst6:i386
将会做好这些工作。