eePC Asus installation

Machine-specific discussion
Unix, Linux, OS X, OS/2, Windows, ..?
Locked
ale870
Posts: 297
Joined: Mon Nov 26, 2007 8:01 pm
Location: Italy

eePC Asus installation

Post by ale870 »

Hello,

I was trying a new Asus model: eePC 900. I really like it. It is equiped with Linux Xandros, and it well fits in that mini computer.
Obviously, after some tests I tried to install "debian" version of newLisp in that PC.
The problem was such Xandros version does not contain glibc 2.4, and it seems there are some problems for its installation.
Can you suggest me another way to...
1) take that library and install it;
2) or... do not use that library and use something else.
3) or... ????

Thank you for your help (I think newLisp in eePC for installation or configuration could be a very interesting target).

Thank you!
--

Lutz
Posts: 5289
Joined: Thu Sep 26, 2002 4:45 pm
Location: Pasadena, California
Contact:

Post by Lutz »

Download newlisp-9.4.4.tgz and put it into your home directory. Then execute the following in a terminal window to build newLISP yourself:

Code: Select all

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

tar xzvf newlisp-9.4.4.tgz
cd newlisp-9.4.4
make debian
sudo make install
The first two lines get and install stuff for compiling from the internet. The last four lines then extract, build and install newLISP for debian Linux. For a minimum install, just move the executable file: newlisp into /usr/bin after the build.

ale870
Posts: 297
Joined: Mon Nov 26, 2007 8:01 pm
Location: Italy

Post by ale870 »

Thank you!
I will try it and I will inform you about the results!
If it works I will publish it in my blog, and I think this will be another success story about newLisp! :-)
--

Locked