1) if you are running Ubuntu, try to use a software package manager like aptitude or synaptic, instead of manually downloading and installing the software package from this webpage. 2) You can use any source image in the following list to add a line to your/etc/apt/sources. list file as follows: debhttp: // cz.archive.ubuntu.com/ubuntujauntymai
1) if you are running Ubuntu, try to use a software package manager like aptitude or synaptic, instead of manually downloading and installing the software package from this webpage.
2) You can use any source image in the following list to add a line to your/etc/apt/sources. list file as follows:
Deb http://cz.archive.ubuntu.com/ubuntu jaunty main universe
Replace cz.archive.ubuntu.com/ubuntuwith the final source image.
3). If you try installing Intel Fortran Compiler on Ubuntu 10.04 Lucid Lynx or Karmic Koala, it is going to throw the error:
Error while loading shared libraries: libstdc. so.5
The original libstdc 5 package is no longer available with the Ubuntu 9.10 repos.
(A). So for 32 bit system you wowould have to get it from Jaunty Repository.
Install it and you are good to go if you are using the 32 bit OS.
(B). For 64 bit it is a bit complicated, first install libstdc 5 64bit and then do the following:
Wget http://security.ubuntu.com/ubuntu/pool/universe/ I /ia32-libs/ia32-libs_2.7ubuntu6.1_amd64.deb
Dpkg-deb-x ia32-libs_2.7ubuntu6.1_amd64.deb ia32-libssudo
Cp ia32-libs/usr/lib32/libstdc. so.5.0.7/usr/lib32/
Cd/usr/lib32
Sudo ln-s libstdc. so.5.0.7 libstdc. so.5
This shoshould get you going.