newLISP on UBUNTO on Virtualbox on Mac OS X

For the Compleat Fan
Locked
Lutz
Posts: 5289
Joined: Thu Sep 26, 2002 4:45 pm
Location: Pasadena, California
Contact:

newLISP on UBUNTO on Virtualbox on Mac OS X

Post by Lutz »

inspired by a post on Kazimir's blog:

http://kazimirmajorinc.blogspot.com/200 ... albox.html

I installed Virtualbox on Mac OS X to run newLISP on Linux UBUNTU 8.04

http://www.newlisp.org/images/OSXvirtua ... ewLISP.png


ps: when downloading virtualbox for Mac OS X, it comes with a .dmg.bz2 extension, strip off the b22, its just a normal .dmg disk image file.

You also have to install jre6 (or 5) from Sun. Install Java in /usr/java or anywhere else, but make a softlink into /usr/bin/java, e.g:

Code: Select all

$ ln -s /usr/java/jre.6.0_06/bin/java /usr/bin/java
then start newLISP-GS from a terminal window with

Code: Select all

$ newlisp-edit
To compile newLISP on UBUNTU you have to install two additional packages:

Code: Select all

$ sudo apt-get install build-essential libreadline5-dev

Locked