Results 1 to 7 of 7

Thread: Maple 12 problem

  1. #1
    Join Date
    Aug 2006
    Location
    Estonia
    Beans
    50
    Distro
    Xubuntu 6.06

    Maple 12 problem

    Hey.

    I Have installed Maple 12, but cant get it to work. The program starts, then comes the tip window, which is OK, but the Main worksheet window will be blank, the mouse cursor changes it´s formations there like the hand with one finger and the text area cursor etc, but the window won´t show anything. Could it be java problem (I really don´t have any justifications for that, but i haven´t upgraded my java ever).

  2. #2
    Join Date
    Sep 2008
    Beans
    551
    Distro
    Ubuntu 16.04 Xenial Xerus

    Re: Maple 12 problem

    Yes it is a java problem. The first thing is you want to make sure you have the latest sun java 6 installed correctly and that its set as the default system JVM. After that, you will need to edit the Maple start script, or at least thats what I did to get Maple 11 working. I have 12 but as of yet I have not installed it.

    So basically I installed maple to /root/maple11, and had to modify /root/maple11/bin/maple using a text editor.

    Once I had the file open, I added the following two lines:
    Code:
    #override the Maple JRE Bin so it points to sun java 6
    MAPLE_JRE_BIN="/usr/lib/jvm/java-6-sun/bin/"
    In my maple file that was placed at line number 355. The first piece of code after this assigns this variable to PATH.

    So find the lines of code in the maple file that look something similar to this and place the above code right before it:

    Code:
    # Set the PATH so that Maple can find its various auxiliary programs.
    if [ "$MAPLE_JRE_BIN" ]
    then
        PATH="$MAPLE_JRE_BIN:$PATH"
    fi
    PATH="$MAPLE/$MAPLE_SYS_BIN:$PATH"
    export PATH
    Also be aware that even if you install it to /root you do not need to run it using sudo for a regular user as running /root/mape11/bin/xmaple by itself will start it correctly.

  3. #3
    Join Date
    Nov 2008
    Location
    portsmouth , uk
    Beans
    38
    Distro
    Ubuntu 9.04 Jaunty Jackalope

    Re: Maple 12 problem

    great man , you saved UBUNTU on my pc

  4. #4
    Join Date
    Dec 2007
    Beans
    9

    Re: Maple 12 problem

    Thanks!

  5. #5
    Join Date
    Jan 2007
    Beans
    13

    Re: Maple 12 problem

    In order to generalise the above solution, for any location where java is placed on your system, you can replace the code below.
    MAPLE_JRE_BIN="/usr/lib/jvm/java-6-sun/bin/"
    First, find out where your java is. Fire up a terminal and type
    Code:
    $ which java
    This will show you where is your java bin.
    For example, in my system, this is what came up:

    Code:
    %%%%##@!@#$!@$:~$ which java
    /usr/bin/java
    So, I replaced
    MAPLE_JRE_BIN="/usr/lib/jvm/java-6-sun/bin/"
    with
    Code:
    MAPLE_JRE_BIN="/usr/bin/"
    You can then place links in your /usr/local/bin/ to facilitate executing maple or xmaple.

  6. #6
    Join Date
    Jun 2008
    Location
    Nowhere
    Beans
    42
    Distro
    Ubuntu 9.04 Jaunty Jackalope

    Solved problem with Maple 12

    Hi!

    Thanks for solution ju2wheels, and the rat_poison for the improved sol. I had to re-installed Maple 12 (changing the installation folder), but that did not sol. the problem.

    Now, I can work with Maple 12 to solve Math problems.

    Bye!
    Bee Free. Be Linux.

  7. #7
    Join Date
    Apr 2009
    Beans
    4

    Re: Maple 12 problem

    Thanks! It worked for me too!!

Bookmarks

Posting Permissions

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