Intel® Fortran Compiler
Build applications that can scale for the future with optimized code designed for Intel® Xeon® and compatible processors.

Problem install intel compiler

truongco
Beginner
1,310 Views
I could not install Intel fortran compiler l_fcompxe_ia32_2011.10.319.tgz in my system
Distributor ID: Debian
Description: Debian GNU/Linux 6.0.4 (squeeze)
Release: 6.0.4
Codename: squeeze

32 bit
The program turn out the following bugs
./install.sh: line 379: /home/co/basictool/soft/ifort/l_fcompxe_ia32_2011.10.319/./pset/32e/install.32e: No such file or directory
./install.sh: line 380: /tmp/intel.pset.strings.co.debian: No such file or directory
./install.sh: line 379: /home/co/basictool/soft/ifort/l_fcompxe_ia32_2011.10.319/./pset/32e/install.32e: No such file or directory./install.sh: line 380: /tmp/intel.pset.strings.co.debian: No such file or directory
Could any one give me a emergency advices? . I higly appreciate it.
Thank you very much!


0 Kudos
6 Replies
Hubert_H_Intel
Employee
1,310 Views

I'm working on this. Give me some time to evaluate.
Is your Debian 32- or 64-bit?
Regards, Hubert.

0 Kudos
truongco
Beginner
1,310 Views
Thank you for your support,my system is Debian 32 bit

Distributor ID: Debian
Description: Debian GNU/Linux 6.0.4 (squeeze)
Release: 6.0.4
Codename: squeeze
getconf LONG_BIT
32


0 Kudos
TimP
Honored Contributor III
1,310 Views
Are you performing a standard install as root? If not, do you have full permissions on /tmp ? Do you have plenty of free space on /tmp (and in /opt, if installing there)?
0 Kudos
truongco
Beginner
1,310 Views
Dear
- Yes i performing as a standard root install
- Permission of /mnt is
drwxr-xr-x 2 root root 4096 Dec 14 2010 mnt
- /opt and /mnt are locate at / directory and the space of / is:
/dev/sda5 19223252 6321264 11925504 35% /
when typed command: ./install.sh as a root bug turned out :
./install.sh: line 379: /home/co/basictool/soft/ifort/l_fcompxe_ia32_2011.10.319/./pset/32e/install.32e: No such file or directory
./install.sh: line 380: /tmp/intel.pset.strings.root.debian: No such file or directory
./install.sh: line 538: /home/co/basictool/soft/ifort/l_fcompxe_ia32_2011.10.319/./pset/32e/install.32e: No such file or directory
./install.sh: line 379: /home/co/basictool/soft/ifort/l_fcompxe_ia32_2011.10.319/./pset/32e/install.32e: No such file or directory./install.sh: line 380: /tmp/intel.pset.strings.root.debian: No such file or directory./install.sh: line 538: /home/co/basictool/soft/ifort/l_fcompxe_ia32_2011.10.319/./pset/32e/install.32e: No such file or directory
When i typed command : sh install.sh or sh ./install.sh bugs are :
trap: SIGTSTP: bad trap
[: 301: x86_64: unexpected operator
Error: Incorrect path to installation script. Installation can not be started
if the path contains space symbols.
Quitting! Press "Enter" to terminate install.
read: 310: arg count
exit: 310: Illegal number: -1
Could you give me advices?
0 Kudos
truongco
Beginner
1,310 Views
I am trying to install a 32 bit intel package on my system.
uname -a
Linux debian 2.6.32-5-amd64 #1 SMP Mon Mar 26 07:00:19 UTC 2012 x86_64 GNU/Linux. It mean that my sytem is 64 bit system.
But when i typed: getconf LONG_BIT the result was: 32
When i reinstalled the program with a intel package 64 bit , new bugs appeared :
/home/co/basictool/soft/ifort/l_fcompxe_intel64_2011.10.319/./pset/32e/install.32e: error while loading shared libraries: libz.so.1: cannot open shared object file: No such file or directory
./install.sh: line 380: /tmp/intel.pset.strings.root.debian: No such file or directory
/home/co/basictool/soft/ifort/l_fcompxe_intel64_2011.10.319/./pset/32e/install.32e: error while loading shared libraries: libz.so.1: cannot open shared object file: No such file or directory
/home/co/basictool/soft/ifort/l_fcompxe_intel64_2011.10.319/./pset/32e/install.32e: error while loading shared libraries: libz.so.1: cannot open shared object file: No such file or directory./install.sh: line 380: /tmp/intel.pset.strings.root.debian: No such file or directory/home/co/basictool/soft/ifort/l_fcompxe_intel64_2011.10.319/./pset/32e/install.32e: error while loading shared libraries: libz.so.1: cannot open shared object file: No such file or directory
I sured that library libz.so.1 existing in/usr/lib/libz.so.1
So i try other way to figure out them:
Go to install.sh of 32 bit package and at the context
system_cpu=`uname -m`
if [ "$system_cpu" == "ia64" ]; then
my_arch=64
elif [ "$system_cpu" == "x86_64" ]; then
my_arch=32e
else
my_arch=32
fi
I modified my_arch=32e to my_arch=32

I went to pset directory and
mv 32e -> b32e
cp -r 32 -> 32e
then i navigated chklic directory and did the same above
mv 32e -> b32e
cp -r 32 -> 32e
After all that step i installed from beggining with modified source and everything perfect now.
In my opinion, i think that there is bit confusion on my computer and "uname -m " command in the install.sh script could not handle this.
0 Kudos
Alessandro_Galvão_F_
1,310 Views
This comment has been moved to its own thread
0 Kudos
Reply