- 论坛徽章:
- 59
|
本帖最后由 renxiao2003 于 2011-08-31 21:35 编辑
2433: /tmp/install.dir.880/Linux/resource/jre/bin/java: not found
发生这个错误就是因为在64位的系统上安装时没有32位的lib库。所以需要安装32的库。下面的错误虽然不是informix,但却适用于解决informix。
http://www.mathworks.cn/support/ ... p;solution=1-C7174M
提示:Why do I receive an error message saying java not found during Polyspace installation on 64-bit Linux?
Date Last Modified: Thursday, August 5, 2010
Solution ID: 1-C7174M
Product: Polyspace Server for C/C++
Reported in Release: No Release
Platform: Linux 64-bit
Operating System: Linux 64-bit Any
Subject:
Why do I receive an error message saying java not found during Polyspace installation on 64-bit Linux?
Problem Description:
When installing a PolySpace product on a 64 bit Linux machine, the installation program ends with the error message:
exec: 2433: /tmp/install.dir.880/Linux/resource/jre/bin/java: not found
The complete output of the installation process is:
prompt> ./install.sh
Installation Procedure (c) 1999-2009, MathWorks, Inc.
Launching the installer...
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...
Launching installer...
exec: 2433: /tmp/install.dir.880/Linux/resource/jre/bin/java: not found
An error has occured and some files have not been installed.
Please check free disk space (almost 600MB are required to install all products).
Look at the log file for details.
In case of trouble with the main installer or java,
you can try to relaunch this script with -console.
Solution:
This error occurs because the Polyspace installer is itself a 32-bit binary using 32-bit binaries, which may cause problems on a 64-bit machine. It needs 32-bit libraries installed.
On an Ubuntu 64-bit Linux machine, to work around this issue, install the package "ia32-libs" from your Linux distribution:
apt-get install ia32-libs
Under most Linux releases, the command can be different. On a Red Hat 64-bit Linux machine, this installation can be accomplished by executing the following command in a shell:
yum install glibc-devel.i386
Note that you need to be root to complete these steps.
Please refer to the documentation for your Linux distribution for more information on installing these libraries.
Please provide feedback to help us improve this Solutio |
|