1. ホーム
  2. java

[解決済み] libXtst.so.6 が見つからない/インストールできない?

2022-02-02 07:18:15

質問

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 のファイルがどのディレクトリにもありませんし、ダウンロードする場所もないようです。他にこの問題に遭遇した人、または回避策を知っている人はいますか?

解決方法は?

EDITです。 で述べたように スティーブン・ニエジエルスキー の32ビット版を探すという、事実上のJREの32ビット版であることに起因しているようです。 libXtst6 . 必要なバージョンのライブラリをインストールするため。

$ sudo apt-get install libxtst6:i386


タイプ

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

これでOKでない場合は、タイプしてください。

$ 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

お役に立てれば幸いです。