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

MKL on ubuntu

jand1
Beginner
1,378 Views
I am trying to install the MKL on ubuntu Gutsy. I managed to get the compiler up and running but the install script crashes with:

Please type a selection or Serial Number: XXXX-XXXXXXXX

The Intel Software Setup Assistant may attempt to connect to the
Intel Registration Center to validate your Serial Number. This may take
several minutes depending on your network. Please wait...

You may press Ctrl+C to cancel.
./install.sh: line 332: 14577 Floating point exception$install_prog $@


Does anyone have a clue what is going on? Did anyone manage to install the latest MKL on Gutsy?

Thanks, Jan
0 Kudos
1 Reply
jand1
Beginner
1,378 Views
Well, actually, that was easy. Intel even has the solution on their site:

How to install Intel MKL 9.1 on Debian

To install Intel MKL on Debian, invoke the installation directly with particular command line options.

  1. Extract the Intel MKL package.
  2. Run the installation with options.
    • /install/install --nonrpm

How to install Intel MKL 9.1 on Ubuntu

To install Intel MKL on Ubuntu, set up a /bin/sh link to the /bin/bash interpreter and then run the installation.

  1. Remove the default link.
    • rm /bin/sh
  2. Reassign the link to the bash interpreter.
    • ln s /bin/bash /bin/sh
  3. Run the installation with options.
    • /install/install --nonrpm --dash-fix
  4. Rollback to the default dash interpreter.
    • rm /bin/sh
    • ln s /bin/dash /bin/sh



Thanks, Jan
0 Kudos
Reply