I have an .lnx file that I need to use on the RedHat distribution. Any idea how to run / install it?
I tryed to make it executable and jut call it but this doesn't work.
Thank you.
I have an .lnx file that I need to use on the RedHat distribution. Any idea how to run / install it?
I tryed to make it executable and jut call it but this doesn't work.
Thank you.
Based on the output the
file
command:The file name seems to indicate it is a version for Red Hat Linux 9 which sounds similar but is very much not the same as Red Hat Enterprise Linux (RHEL). Despite the apparently higher release number Red Hat Linux 9 is from 2003 where the current 2015 RHEL release is 7 (and RHEL 5 & 6 are also common). But this pure conjecture, as filenames don't govern actual functionality.
It is compiled for Intel 80386 which might be explained as suitable for 32-bit architecture or it might really be intended to run on actual Intel 80386 chipset.
For GNU/Linux 2.6.18 on the other hand indicates it is intended for Linux kernel 2.6.18 which makes it a build suitable for RHEL 5 and similar.
You may want to use
ldd
to check and see if it depends on external libraries and if those are present, but those requirements are met in theory it should be possible to make it run withchmod +x corina_annual_Linux2.4_RedHat9_2016_07_10.lnx
and./orina_annual_Linux2.4_RedHat9_2016_07_10.lnx:
You may have downloaded the wrong binary, or are trying it to run it on the wrong Linux system, however which way you want to call it.
To come back with a working solution here. In order to make this workimg, as mentioned by HBrujn, I had to install
with following commands: