java - 找不到/安装 libXtst.so.6?

标签 java linux ubuntu netbeans command-line

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

最佳答案

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

$ 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,请创建符号链接(symbolic link):

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

希望这会有所帮助。

关于java - 找不到/安装 libXtst.so.6?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17355863/

相关文章:

java - 登录页面共享首选项未按预期工作

java - 如何使用 Java 从 URL 保存文件

c - 带有 `df` 的可用 block

java - 如何在ubuntu中通过docker文件安装oracleJDK8

ubuntu - Ubuntu 上的 "avr-gcc: command not found"

java - Gremlin 获取具有特定起始和结束节点的 Edge

java - 何时线程。何时不使用线程

php - 将 php 函数转换为 bash 字符串

mysql - 在linux服务器上自动备份MySQL数据库

objective-c - 如何将 Obj-C 2.0 与 GNUstep 一起使用?