找不到/安装libXtst.so.6?
我正在运行的Ubuntu 12.10,我试图安装Netbeans 7.1(或更高版本)我有.sh文件,但它不会安装,错误出现在这里:
[2013-06-27 19:11:28.918]: at org.netbeans.installer.Installer.main(Installer.java:81) [2013-06-27 19:11:28.918]: An error occured while initializing the NetBeans IDE installer UI. [2013-06-27 19:11:28.918]: Most probably the running JVM is not compatible with the current platform. [2013-06-27 19:11:28.919]: See FAQ at http://wiki.netbeans.org/FaqUnableToPrepareBundledJdk for more information. [2013-06-27 19:11:28.919]: /usr/local/java/jre1.7.0_25/lib/i386/xawt/libmawt.so: libXtst.so.6: cannot open shared object file: No such file or directory [2013-06-27 19:11:28.919]: [2013-06-27 19:11:28.919]: Exception: [2013-06-27 19:11:28.919]: java.lang.UnsatisfiedLinkError: [2013-06-27 19:11:28.919]: /usr/local/java/jre1.7.0_25/lib/i386/xawt/libmawt.so: libXtst.so.6: cannot open shared object file: No such file or directory [2013-06-27 19:11:28.919]: [2013-06-27 19:11:28.919]: You can get more details about the issue in the installer log file: [2013-06-27 19:11:28.919]: /root/.nbi/log/20130627191128.log
我没有在任何目录libXtst.so.6文件,我似乎无法find任何地方下载。 有没有其他人遇到这个问题,或知道一个工作?
编辑:正如Stephen Niedzielski在他的评论中提到的那样,这个问题似乎来自JRE的32位存储,事实上,他们正在寻找32位版本的libXtst6
。 要安装所需的库版本,请执行以下操作:
$ sudo apt-get install libxtst6:i386
types:
$ sudo apt-get update $ sudo apt-get install libxtst6
如果这不行,请input:
$ sudo updatedb $ locate libXtst
它应该返回像这样的东西:
/usr/lib/x86_64-linux-gnu/libXtst.so.6 # Mine is OK /usr/lib/x86_64-linux-gnu/libXtst.so.6.1.0
如果你没有libXtst.so.6
但是有libXtst.so.6.XX
创build一个符号链接:
$ cd /usr/lib/x86_64-linux-gnu/ $ ln -s libXtst.so.6 libXtst.so.6.XX
希望这可以帮助。
这在Luna初级操作系统中为我工作
sudo apt-get install libxtst6:i386
你的问题来自你的JDK / JRE的32/64位版本…你的共享库被search到一个32位版本。
您的默认JDK是一个32位版本。 尝试默认安装64位,然后重新启动你的`.sh文件。
有这个问题在Ubuntu 14.04,在我的情况下,我也libXtst.so失踪:
Could not open library 'libXtst.so': libXtst.so: cannot open shared object file: No such file or directory
确保您的符号链接指向正确的文件,cd / usr / lib / x86_64-linux-gnu并列出libXtst:
ll |grep libXtst lrwxrwxrwx 1 root root 16 Oct 7 2016 libXtst.so.6 -> libXtst.so.6.1.0 -rw-r--r-- 1 root root 22880 Aug 16 2013 libXtst.so.6.1.0
然后用下面的方法创build适当的符号链接:
sudo ln -s libXtst.so.6 libXtst.so
再次列出:
ll | grep libXtst lrwxrwxrwx 1 root root 12 Sep 20 10:23 libXtst -> libXtst.so.6 lrwxrwxrwx 1 root root 12 Sep 20 10:23 libXtst.so -> libXtst.so.6 lrwxrwxrwx 1 root root 16 Oct 7 2016 libXtst.so.6 -> libXtst.so.6.1.0 -rw-r--r-- 1 root root 22880 Aug 16 2013 libXtst.so.6.1.0
可以了,好了!