Intel® Fortran Compiler
Build applications that can scale for the future with optimized code designed for Intel® Xeon® and compatible processors.
Announcements
FPGA community forums and blogs on community.intel.com are migrating to the new Altera Community and are read-only. For urgent support needs during this transition, please visit the FPGA Design Resources page or contact an Altera Authorized Distributor.
29280 Discussions

problem about intel fortan compiler 12

caza
Beginner
920 Views

i have delete intel fortan compiler 12 with out uninstalation
so when i try to install it again and another old version, this message is appear

The Intel Composer XE 2011 Update 3 for Linux* is already installed.

If you want to reinstall the Intel Composer XE 2011 Update 3 for Linux*
please uninstall current version and run install script again.

how to uninstall it now
thank's in advance

0 Kudos
6 Replies
Kevin_D_Intel
Employee
920 Views

Generate a list of Intel Fortran Composer XE 2011 Update 3 RPMs using the following command:

rpm -qa | grep intel | grep 174

Save that list away somewhere in case it is needed.

Next, as root, remove all Intel Fortran Composer XE 2011 Update 3 related RPMs using the following command:

rpm -e --allmatches `rpm -qa | grep intel | grep 174`

Please NOTE: The use of back-single-quotes in the command above are significant. Be sure to include them.

Once that rpm command completes, then re-try the installation of Update 3 or different version.

0 Kudos
Ron_Green
Moderator
920 Views
IF you did a non-root installation OR a non-RPM installation, you should also remove the intel/ directory created in your home directory:

rm -Rf ~/intel

ron
0 Kudos
caza
Beginner
920 Views
thank you very much for your help
i remove all rpm - one: intel-compilerpro-common-174-12.0-3.noarch
when i do : rpm -e --allmatches `rpm -qa | grep intel | grep 174`
i found this :
[root@localhost]# rpm -qa | grep intel | grep 174
intel-compilerpro-common-174-12.0-3.noarch
[root@localhost]# rpm -e --allmatches `rpm -qa | grep intel | grep 174`
erreur: %preun(intel-compilerpro-common-174-12.0-3.noarch) scriptlet failed, exit status 1


what i should do now

0 Kudos
Kevin_D_Intel
Employee
920 Views
Do you suffer the same error when trying to remove just that RPM with:

rpm -e intel-compilerpro-common-174-12.0-3.noarch
0 Kudos
caza
Beginner
920 Views
yes i have the same problem

[root@localhost physolde]# rpm -e intel-compilerpro-common-174-12.0-3.noarch
erreur: %preun(intel-compilerpro-common-174-12.0-3.noarch) scriptlet failed, exit status 1
0 Kudos
Kevin_D_Intel
Employee
920 Views
Ok, let's try this:

rpm --noscripts -e intel-compilerpro-common-174-12.0-3.noarch
0 Kudos
Reply