This is a discussion on LD_ASSUME_KERNEL within the Linux Administration forums, part of the Linux Forums category; Hello all, I HAD redhat 9 and matlab. I had to write a small script that would load matlab like ...
|
|||||||
| FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
|
|||
|
Hello all,
I HAD redhat 9 and matlab. I had to write a small script that would load matlab like this: #!/bin/sh export LD_ASSUME_KERNEL="2.4.1" /usr/local/bin/matlab_exe export LD_ASSUME_KERNEL= exit 0 or else the java would not start. I upgraded to Fedora Core 2. Now the script does not work and I get the same behaviour with java not starting as happened with Redhat 9 before this script. I could not find anything related to it in the release notes of Fedora. Any hints? Thank you. |
|
|||
|
Theophanis Kontogiannis wrote:
> Hello all, > > I HAD redhat 9 and matlab. I had to write a small script that would load > matlab like this: > > #!/bin/sh > > export LD_ASSUME_KERNEL="2.4.1" > /usr/local/bin/matlab_exe > > export LD_ASSUME_KERNEL= > > exit 0 > > or else the java would not start. > > I upgraded to Fedora Core 2. > > Now the script does not work and I get the same behaviour with java not > starting as happened with Redhat 9 before this script. > > I could not find anything related to it in the release notes of Fedora. > > Any hints? > Thank you. > Try to start your program $ LD_ASSUME_KERNEL=2.4.19 /usr/local/bin/matlab_exe or maybe ? $ LD_ASSUME_KERNEL=2.5 /usr/local/bin/matlab_exe // moma |
|
|||
|
Theophanis Kontogiannis pravi:
> Hello all, > > I HAD redhat 9 and matlab. I had to write a small script that would load > matlab like this: > > #!/bin/sh > > export LD_ASSUME_KERNEL="2.4.1" > /usr/local/bin/matlab_exe > > export LD_ASSUME_KERNEL= > > exit 0 > > or else the java would not start. > > I upgraded to Fedora Core 2. > > Now the script does not work and I get the same behaviour with java not > starting as happened with Redhat 9 before this script. > > I could not find anything related to it in the release notes of Fedora. > > Any hints? > Thank you. > > > > In my Pingo 3.0 - our Slovenian local distro ex FC2/FC1/RH9/RH7/RH6.2 kernel is versioned like this: 2.6.7.very.long.something.pingo3 . So you probably need to reinstall matlab (or refresh script). Or install GNU Octave: ;) > http://www.octave.org/ HND, JK |
|
|||
|
Ueofanh
I would try export LD_ASSUME_KERNEL="2.2.5"; /usr/local/bin/matlab_exe The version you have is probably 32 bit so it should work. Check the matlab support page on OS requirements. Pavlos Theophanis Kontogiannis wrote: > Hello all, > > I HAD redhat 9 and matlab. I had to write a small script that would load > matlab like this: > > #!/bin/sh > > export LD_ASSUME_KERNEL="2.4.1" > /usr/local/bin/matlab_exe > > export LD_ASSUME_KERNEL= > > exit 0 > > or else the java would not start. > > I upgraded to Fedora Core 2. > > Now the script does not work and I get the same behaviour with java not > starting as happened with Redhat 9 before this script. > > I could not find anything related to it in the release notes of Fedora. > > Any hints? > Thank you. > > > > |