- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Dear Sirs,
I ve recently dowloaded the Fortran Compiler 11 (academic use) in my ASUS EEEpc 901- with Ubuntu Netmix.
I ve face up with two problems:
1) when it searces for the prerequisites during the installation procedure, it could't find the java rte 5. The same message has been printed out. Nevertheless, I ignored the missing software and I continued the installation which was succesfull after all.
2) The major issue is the following message when I type ifort -v:
giorgos@giorgos-laptop:~$ source /opt/intel/Compiler/11.1/056/bin/ifortvars.sh ia32
giorgos@giorgos-laptop:~$ export INTEL_LICENSE_FILE=opt/intel/licenses/NCOM_L_CMP_FOR_NB3L_xxxxxxxx.lic
giorgos@giorgos-laptop:~$ ifort -v
Error: A license for FCompL could not be obtained (-1,359,2).
Is your license file in the right location and readable?
The location of your license file should be specified via
the $INTEL_LICENSE_FILE environment variable.
License file(s) used were (in this order):
1. Trusted Storage
2. opt/intel/licenses/NCOM_L_CMP_FOR_NB3L-xxxxxxxx.lic
3. /opt/intel/Compiler/11.1/056/Licenses
4. /home/giorgos/intel/licenses
5. /opt/intel/licenses/NCOM_L_CMP_FOR_NB3L-xxxxxxxx.lic
6. /Users/Shared/Library/Application Support/Intel/Licenses
Please visit http://support.intel.com/support/performancetools/support.htm if you require technical assistance.
ifort: error #10052: could not checkout FLEXlm license
giorgos@giorgos-laptop:~$
I ve tried the same with the guy in the post:
http://software.intel.com/en-us/forums/showthread.php?t=68324
but the malfunction still remains.
I would appreciate if you could help me with this problem.
Best,
George
I ve recently dowloaded the Fortran Compiler 11 (academic use) in my ASUS EEEpc 901- with Ubuntu Netmix.
I ve face up with two problems:
1) when it searces for the prerequisites during the installation procedure, it could't find the java rte 5. The same message has been printed out. Nevertheless, I ignored the missing software and I continued the installation which was succesfull after all.
2) The major issue is the following message when I type ifort -v:
giorgos@giorgos-laptop:~$ source /opt/intel/Compiler/11.1/056/bin/ifortvars.sh ia32
giorgos@giorgos-laptop:~$ export INTEL_LICENSE_FILE=opt/intel/licenses/NCOM_L_CMP_FOR_NB3L_xxxxxxxx.lic
giorgos@giorgos-laptop:~$ ifort -v
Error: A license for FCompL could not be obtained (-1,359,2).
Is your license file in the right location and readable?
The location of your license file should be specified via
the $INTEL_LICENSE_FILE environment variable.
License file(s) used were (in this order):
1. Trusted Storage
2. opt/intel/licenses/NCOM_L_CMP_FOR_NB3L-xxxxxxxx.lic
3. /opt/intel/Compiler/11.1/056/Licenses
4. /home/giorgos/intel/licenses
5. /opt/intel/licenses/NCOM_L_CMP_FOR_NB3L-xxxxxxxx.lic
6. /Users/Shared/Library/Application Support/Intel/Licenses
Please visit http://support.intel.com/support/performancetools/support.htm if you require technical assistance.
ifort: error #10052: could not checkout FLEXlm license
giorgos@giorgos-laptop:~$
I ve tried the same with the guy in the post:
http://software.intel.com/en-us/forums/showthread.php?t=68324
but the malfunction still remains.
I would appreciate if you could help me with this problem.
Best,
George
1 Solution
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
George,
Re. runtime environment 5:
You will need a JAVA runtime environment (JRE) version 5 (also known as 1.5) or later (6.0 or 1.6) only in case you plan to use the graphical debugger included with the Fortran compiler. This JRE version is usually not part of common Linux distributions, thus the warning message about missing requirements. At the time of installation you can safely ignore this message.
If you want to use the Intel IDB Debugger with the graphical Eclipse framework, you will need to install a proper JRE.
The easiest way is to go to www.java.com and download the right JRE for Linux (32 or 64 bit).
Extract the java runtime package to any location (with user or root privileges) and include the java bin dir into your PATH, e.g.:
$ export PATH=/opt/jre1.6.0_14/bin:$PATH
The JRE version should be issues then correctly as a 1.6 version, e.g.:
$ java -version
java version "1.6.0_14"
Java SE Runtime Environment (build 1.6.0_14-b08)
Java HotSpot Client VM (build 14.0-b16, mixed mode, sharing)
$
Regards,
Hubert.
Re. runtime environment 5:
You will need a JAVA runtime environment (JRE) version 5 (also known as 1.5) or later (6.0 or 1.6) only in case you plan to use the graphical debugger included with the Fortran compiler. This JRE version is usually not part of common Linux distributions, thus the warning message about missing requirements. At the time of installation you can safely ignore this message.
If you want to use the Intel IDB Debugger with the graphical Eclipse framework, you will need to install a proper JRE.
The easiest way is to go to www.java.com and download the right JRE for Linux (32 or 64 bit).
Extract the java runtime package to any location (with user or root privileges) and include the java bin dir into your PATH, e.g.:
$ export PATH=/opt/jre1.6.0_14/bin:$PATH
The JRE version should be issues then correctly as a 1.6 version, e.g.:
$ java -version
java version "1.6.0_14"
Java SE Runtime Environment (build 1.6.0_14-b08)
Java HotSpot Client VM (build 14.0-b16, mixed mode, sharing)
$
Regards,
Hubert.
Link Copied
5 Replies
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
You want this instead:
export INTEL_LICENSE_FILE=opt/intel/licenses/
although this should be set up for you with the "source" command. Please log out and start over, skipping the export.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
George,
Re. runtime environment 5:
You will need a JAVA runtime environment (JRE) version 5 (also known as 1.5) or later (6.0 or 1.6) only in case you plan to use the graphical debugger included with the Fortran compiler. This JRE version is usually not part of common Linux distributions, thus the warning message about missing requirements. At the time of installation you can safely ignore this message.
If you want to use the Intel IDB Debugger with the graphical Eclipse framework, you will need to install a proper JRE.
The easiest way is to go to www.java.com and download the right JRE for Linux (32 or 64 bit).
Extract the java runtime package to any location (with user or root privileges) and include the java bin dir into your PATH, e.g.:
$ export PATH=/opt/jre1.6.0_14/bin:$PATH
The JRE version should be issues then correctly as a 1.6 version, e.g.:
$ java -version
java version "1.6.0_14"
Java SE Runtime Environment (build 1.6.0_14-b08)
Java HotSpot Client VM (build 14.0-b16, mixed mode, sharing)
$
Regards,
Hubert.
Re. runtime environment 5:
You will need a JAVA runtime environment (JRE) version 5 (also known as 1.5) or later (6.0 or 1.6) only in case you plan to use the graphical debugger included with the Fortran compiler. This JRE version is usually not part of common Linux distributions, thus the warning message about missing requirements. At the time of installation you can safely ignore this message.
If you want to use the Intel IDB Debugger with the graphical Eclipse framework, you will need to install a proper JRE.
The easiest way is to go to www.java.com and download the right JRE for Linux (32 or 64 bit).
Extract the java runtime package to any location (with user or root privileges) and include the java bin dir into your PATH, e.g.:
$ export PATH=/opt/jre1.6.0_14/bin:$PATH
The JRE version should be issues then correctly as a 1.6 version, e.g.:
$ java -version
java version "1.6.0_14"
Java SE Runtime Environment (build 1.6.0_14-b08)
Java HotSpot Client VM (build 14.0-b16, mixed mode, sharing)
$
Regards,
Hubert.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
The current installers generally flag the JRE installation as unacceptable, even when it is good and works when you proceed with the installation.
For (unsupported) distros which offer Sun or clone JRE 1.6 on their online update servers, that normally would be preferable to the Sun web version.
For (unsupported) distros which offer Sun or clone JRE 1.6 on their online update servers, that normally would be preferable to the Sun web version.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Quoting - Steve Lionel (Intel)
You want this instead:
export INTEL_LICENSE_FILE=opt/intel/licenses/
although this should be set up for you with the "source" command. Please log out and start over, skipping the export.
Thank you very much for your instant answer but the problem remains! The same messages arise.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Quoting - gbabas
Thank you very much for your instant answer but the problem remains! The same messages arise.
Do you mean you have Ubuntu Remix for Netbooks? We've never tried that OS, there could be something missing that the compiler needs.
The export is for bash/sh shells. Which shell do you run?
echo $0
will tell you the shell name.
Also, there is a typo in the prior posts - there was a missing "/" at the start of the correct path to /opt/intel/licenses
ron

Reply
Topic Options
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page