5Yr*_*DBA 7 installation java libraries 12.04
我刚开始使用 Ubuntu。我安装了 12.04 64 位 Ubuntu。Java 和 Eclipse 已安装并运行良好。当我安装 Accurev 时,出现以下错误:
Preparing to install...
Extracting the JRE from the installer archive...
Unpacking the JRE...
Extracting the installation resources from the installer archive...
Configuring the installer for this system's environment...
strings: '/lib/libc.so.6': No such file
Launching installer...
./AccuRev_5_4_1_LinuxClientOnly_x86_2_4.bin: 3310: exec: /tmp/install.dir.2907/Linux/resource/jre/bin/java: not found
Run Code Online (Sandbox Code Playgroud)
有人可以帮助我吗?谢谢
编辑:
下面的答案加上这里的答案,或http://www.accurev.com/ubbthreads/ubbthreads.php/topics/3812/cannot_install_Accurev5_4_1_on#Post3812
gre*_*een 12
一个快速的解决方案。
打开终端(Ctrl+ Alt+ T)和运行下面的命令:
对于 64 位 Ubuntu(17.10 或更新版本):
sudo ln -s /lib/x86_64-linux-gnu/libc.so.6 /lib/libc.so.6
Run Code Online (Sandbox Code Playgroud)
对于 64 位 Ubuntu(17.10 之前):
sudo ln -s /lib64/x86_64-linux-gnu/libc.so.6 /lib64/libc.so.6
Run Code Online (Sandbox Code Playgroud)
对于 32 位 Ubuntu(17.10 之前):
sudo ln -s /lib/i386-linux-gnu/libc.so.6 /lib/libc.so.6
Run Code Online (Sandbox Code Playgroud)