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


69

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


/usr/local/java/jre1.7.0_25来自哪里?
托尔比约恩Ravn的安德森

这是甲骨文。我在使用开放jre时遇到问题
Tropical_Peach13年

我强烈建议您仅运行一下sudo apt-get install openjdk-6- jdk,看看该Java版本是否足以满足您的目的。这是建立你的平台上,应该运行良好开箱
托尔比约恩Ravn的安德森

我以前有过,而Netbeans却有错误。相信我,我宁愿使用openjdk / jre而不使用Oracle的Oracle,但是由于某种原因,它对于Netbeans都不起作用。
Tropical_Peach13年

每当您在Linux下遇到软件包问题时,请检查支持哪些平台。wiki.netbeans.org/NetBeans_70_Supported_Platforms-如果“我需要这项工作”很重要,则您只能使用其中之一。这里是Ubuntu 10.10。
托尔比约恩Ravn的安德森

Answers:


143

编辑:正如Stephen Niedzielski在其评论中提到的那样,问题似乎出在JRE的32位,这实际上是在寻找32位版本的JRE 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

希望这可以帮助。


2
那什么也没做,它安装了一些东西,但是我仍然遇到同样的错误。
Tropical_Peach13年

你得到$ locate libXtst什么?没有 ?
Gauthier Boaglio

1
现在,我得到的是[2013-06-28 00:24:46.802]:/usr/local/java/jre1.7.0_25/lib/i386/xawt/libmawt.so:libXtst.so.6:错误的ELF类:ELFCLASS64'
Tropical_Peach

1
尝试使用32位/ 64位版本中的另一个。
托尔比约恩Ravn的安德森

41
sudo apt-get install libxtst6:i386
Stephen Niedzielski

13

这在Luna基本操作系统中为我工作

sudo apt-get install libxtst6:i386

6

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

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


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

搞定!

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.