code

libXtst.so.6을 찾거나 설치할 수 없습니까?

codestyles 2020. 11. 23. 08:12
반응형

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 파일이없고 다운로드 할 곳이없는 것 같습니다. 다른 사람이이 문제를 겪거나 해결 방법을 알고 있습니까?


편집 : 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

도움이 되었기를 바랍니다.


이것은 Luna Elementary OS에서 저에게 효과적이었습니다.

sudo apt-get install libxtst6:i386

문제는 32/64 비트 버전의 JDK / JRE에서 발생합니다. 공유 라이브러리에서 32 비트 버전을 검색합니다.

기본 JDK는 32 비트 버전입니다. 기본적으로 64 비트를 설치하고`.sh 파일을 다시 시작하십시오.


우분투 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

모든 설정!

참고 URL : https://stackoverflow.com/questions/17355863/cant-find-install-libxtst-so-6

반응형