Matlab on FreeBSD 5.3

Ask a Question related to FreeBSD, Design and Development.

  1. #1

    Default Matlab on FreeBSD 5.3

    I've tried installing Matlab 13 on FBSD5.3 according to the handbook but I
    can't get it to work. This is pretty annoying since it cost a lot of money.
    I was really stupid, in that, I had a years technical support from
    Mathwords, but kind of gave up because their suggestions got me nowhere and
    it was quicker just to use a pirated copy on windows than follow their
    suggestions when really that was the perfect opportunity to continually
    badger them; since I was paying for it they were obliged to respond...

    The problem is the license manager as far as I can tell, I can't seem to get
    it to start.

    OK, there are a lot of different pieces of information I could post at this
    point, but I'm not sure which are most relevant. So, first of all, I think a
    sensible question I should ask is this:

    Has anyone on this list got Matlab 13 (aka 6.5) running on FBSD5.3? If so,
    did you do this by following the instructions in the handbook verbatim, or
    some other way?

    thanks

    cali

    cali Guest

  2. Similar Questions and Discussions

    1. FreeBSD
      I am wondering if Flash Media Server will run on FreeBSD. Thanks!
    2. FMS on FreeBSD!
      Hey, i have tried to install FMS on FreeBSD 6.1 by emulating fc4... the install went well, but i cant start the server. I just get the message: ...
    3. Compile FreeBSD RELENG_5 on FreeBSD 4-STABLE
      Hi. I have a FreeBSD 4-STABLE machine. I want to do my custom RENELG_5 FreeBSD release. I'm get all RELENG_5 CVS source (with cvs checkout...
    4. Instead of freebsd.com, why not...
      On Monday 14 February 2005 05:34 pm, Anthony Atkielski <atkielski.anthony@wanadoo.fr> wrote: Absolutely untrue. Please stop saying this, as it's...
    5. mouse wheel scroll events under matlab
      Anyone had any success with getting the mouse wheel to work under matlab? Seems like the mouse wheel events are recognise as button the right...
  3. #2

    Default Re: Matlab on FreeBSD 5.3

    Hi,
    I managed to install matlab 6.5 on a freebsd 5.3, but I can't tell you exactly how I
    did now, since I have no matlab here.
    I remember that I played a bit with scripts regarding the detection of architecture ( I
    just edited these scripts and forcely set environment variable to i386 or so ) and did few
    other modifications, but they were quite simple.
    You should manage to get it running, however.
    hope this gives you one more hope :)
    regards,
    santo natale

    On Sun, Feb 27, 2005 at 11:37:04AM -0000, cali wrote:
    > I've tried installing Matlab 13 on FBSD5.3 according to the handbook but I
    > can't get it to work. This is pretty annoying since it cost a lot of money.
    > I was really stupid, in that, I had a years technical support from
    > Mathwords, but kind of gave up because their suggestions got me nowhere and
    > it was quicker just to use a pirated copy on windows than follow their
    > suggestions when really that was the perfect opportunity to continually
    > badger them; since I was paying for it they were obliged to respond...
    >
    > The problem is the license manager as far as I can tell, I can't seem to
    > get it to start.
    >
    > OK, there are a lot of different pieces of information I could post at this
    > point, but I'm not sure which are most relevant. So, first of all, I think
    > a sensible question I should ask is this:
    >
    > Has anyone on this list got Matlab 13 (aka 6.5) running on FBSD5.3? If so,
    > did you do this by following the instructions in the handbook verbatim, or
    > some other way?
    >
    > thanks
    >
    > cali
    Santo Natale Guest

  4. #3

    Default Re: Matlab on FreeBSD 5.3

    I just got it to work, thanks to the encouragement of Santo Natale.

    One thing is the architechture, to fix this you can edit the matlab binary,
    which is actually a script

    gvim /usr/local/bin/matlab

    or whatever

    if you read down you will see some stuff about

    ARCH_LIST

    go down below the fucntion check_archlist and at the bottom of it you will
    see two conditionals that say:

    ARCH=""

    change these to

    ARCH="glnx86"

    or whatever your architechture is (it might be that you only need to change
    one, but this isn't important)

    Then another thing to make sure is that your hostname is set the same as the
    SERVER line
    in your matlab license manager file so if my hostname was "dork", then it
    would say

    SERVER dork ID=XXX

    where you replace XXX with your user ID

    you also have to make sure that you setup your options file properly in your
    license file
    you should have a line like:

    DAEMON MLM /compat/linux/usr/local/matlab/etc/lm_matlab
    options=/compat/linux/usr/local/matlab/etc/MLM.opt

    and in MLM.opt it needs to say:

    INCLUDE MATLAB USER blah

    where blah is your user, note that I'm assuming you have a standalone
    license

    make sure you leave a blank line after the INCLUDE line, I know, sounds dumb
    but otherwise it doesn't work.

    then you just start the flexlm (not as root)

    /usr/local/etc/rc.d/flexlm.sh start

    and then start matlab underthe user you were configured for

    matlab

    and it should work... well I only just got it working so hopefully
    everything works.

    thanks

    cali

    cali Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139