From owner-freebsd-emulation@FreeBSD.ORG Sun Feb 11 21:04:07 2007 Return-Path: X-Original-To: freebsd-emulation@freebsd.org Delivered-To: freebsd-emulation@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 899C016A41F for ; Sun, 11 Feb 2007 21:04:07 +0000 (UTC) (envelope-from carl@UDel.Edu) Received: from md2.nss.udel.edu (md2.nss.udel.edu [128.175.1.12]) by mx1.freebsd.org (Postfix) with ESMTP id 515F913C478 for ; Sun, 11 Feb 2007 21:04:06 +0000 (UTC) (envelope-from carl@UDel.Edu) Received: from ms1.nss.udel.edu (ms1.nss.udel.edu [128.175.1.21]) by md2.nss.udel.edu (MOS 3.8.2-GA) with ESMTP id DYM78500; Sun, 11 Feb 2007 16:04:05 -0500 (EST) Received: (from ms1.nss.udel.edu [68.82.120.39]) by ms1.nss.udel.edu (MOS 3.7.1-GA) with HTTPS/1.1 id CNP31726 (AUTH carl); Sun, 11 Feb 2007 16:04:03 -0500 (EST) From: To: Tijl Coosemans , freebsd-emulation@freebsd.org X-Mailer: Mirapoint Webmail Direct 3.7.1-GA MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-Id: <20070211160403.CNP31726@ms1.nss.udel.edu> Date: Sun, 11 Feb 2007 16:04:03 -0500 (EST) X-Junkmail-Status: score=10/50, host=md2.nss.udel.edu X-Junkmail-SD-Raw: score=unknown, refid=str=0001.0A090205.45CF84C5.0058,ss=1,fgs=0, ip=128.175.1.21, so=2006-09-22 03:48:54, dmn=5.2.125/2007-01-26 Cc: carl@UDel.Edu Subject: Re: FreeBSD-6.2 and MAPLE-9 X-BeenThere: freebsd-emulation@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Development of Emulators of other operating systems List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 11 Feb 2007 21:04:07 -0000 Dear Tijl, Thank you very much for your assistance, it is greatly appreciated! I've implemented your suggestions below, and the maple splash comes up, and then hangs. When I run maple in text mode, I still get "maple: could not start server", which I believe would explain the hanging. Any thoughts on why the server won't start? Again, this is happening with linux_base-fc4; this text-mode problem does not manifest itself if I use an older linux_base. Thank you very much for your assistance, it is greatly appreciated! Best Regards, Carl ---- Original message ---- >The linux jdk should work, but you probably need to load and mount >linprocfs. Also, I believe the maple chapter in the handbook is about >maple 10, but I'm not entirely sure. > >> [carl@giediprime ~]$ cd maple9/bin >> [carl@giediprime ~/maple9/bin]$ ./maple >> maple: could not start server >> > >I have maple 9.5 running under linux_base-fc4 with a couple minor >changes: > >* I've installed maple in /compat/linux/opt/maple9.5, but this > shoudn't really matter. >* add this link in /compat/linux/usr/lib: > ln -s ../../lib/librt-2.3.6.so /compat/linux/usr/lib/librt.so.1 >* create a script named xmaple in /usr/local/bin or somewhere else in > your path with the following two lines: > >#! /bin/sh >exec /compat/linux/bin/sh /opt/maple9.5/bin/xmaple > >* either use the jre maple ships with and then you probable need to > mount linprocfs > or, you can use the native freebsd jdk when you make a few changes > to /compat/linux/opt/maple9.5/bin/maple. Under the > "bin.IBM_INTEL_LINUX" case check the following variables: > >MAPLE_JRE_BIN="/usr/local/jdk1.5.0/jre/bin/" >JRE_ROOT="/usr/local/jdk1.5.0/jre/lib" > >ADDLIB="$MAPLE/$MAPLE_SYS_BIN/P4SSE2" > > jdk 1.4 should work just as well and since you have a pentium 3, you > probably want to change the P4SSE2 in the ADDLIB var to PIII or > PIIISSE1. > >I believe that's all that's needed. Running "xmaple" from a command >line should start maple in graphical mode now.