75

我正在运行 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 文件,而且我似乎无法在任何地方找到它可以下载。有没有其他人遇到过这个问题,或者知道解决方法?

4

4 回答 4

150

编辑:正如Stephen Niedzielski在他的评论中提到的,问题似乎来自 JRE 的 32 位存在,事实上,它正在寻找libXtst6. 要安装所需版本的库:

$ sudo apt-get install libxtst6:i386

类型:

$ sudo apt-get update
$ sudo apt-get install libxtst6

如果这不正确,请键入:

$ 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.X.X创建符号链接:

$ cd /usr/lib/x86_64-linux-gnu/
$ ln -s libXtst.so.6 libXtst.so.6.X.X

希望这可以帮助。

于 2013-06-28T01:35:26.013 回答
13

这在 Luna 基本操作系统中对我有用

sudo apt-get install libxtst6:i386
于 2015-08-11T18:32:45.793 回答
6

您的问题来自 JDK/JRE 的 32/64 位版本...您的共享库正在搜索 32 位版本。

您的默认 JDK 是 32 位版本。尝试默认安装一个 64 位的并重新启动您的 `.sh 文件。

于 2015-11-23T09:57:32.487 回答
2

在 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

然后只需使用以下命令创建正确的符号链接:

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

可以了,好了!

于 2017-09-20T09:50:38.103 回答