running a nL on nearlyfreespeech

Q&A's, tips, howto's
Locked
joejoe
Posts: 173
Joined: Thu Jun 25, 2009 5:09 pm
Location: Denver, USA

running a nL on nearlyfreespeech

Post by joejoe »

I am using

Code: Select all

#/usr/local/env/bin newlisp
(println "hihi")
(exit)
saved as an index.cgi w 755 chmod.

w only a 500 error on nearlyfreespeech.

When I type whereis newlisp, it shows:

Code: Select all

$ whereis newlisp
newlisp:
I have done this before easily.

Now get:

Code: Select all

$ newlisp
-bash: newlisp: command not found
Any tip on how to execute an index.cgi nL script w NFS?

Or if an easier place to up and run nL, please direct. Thought NFS was pretty straight.

Thank you!

rickyboy
Posts: 607
Joined: Fri Apr 08, 2005 7:13 pm
Location: Front Royal, Virginia

Re: running a nL on nearlyfreespeech

Post by rickyboy »

Your #! line looks wrong.
(λx. x x) (λx. x x)

joejoe
Posts: 173
Joined: Thu Jun 25, 2009 5:09 pm
Location: Denver, USA

Re: running a nL on nearlyfreespeech

Post by joejoe »

No doubt,

I have tried a few -

#/usr/local/env/bin newlisp
!#/usr/local/bin/env newlisp
#!/usr/local/bin/env newlisp
#!/usr/bin/env newlisp
#!/usr/local/bin/newlisp

If whereis doesnt work, how best to find the right path?

Code: Select all

whereis newlisp
newlisp:

joejoe
Posts: 173
Joined: Thu Jun 25, 2009 5:09 pm
Location: Denver, USA

Re: running a nL on nearlyfreespeech

Post by joejoe »

Think they may have lost support?

$ newlisp
-bash: newlisp: command not found

Just submitted a request w NFS to know if it is still supported.

Found that as its been dropped from the bs d port, so no go, only compile from source.

https://members.nearlyfreespeech.net/fo ... ht=newlisp
Newlisp has been dropped from the FreeeBSD ports collection due to lack of support from the developer, so we are unable to offer it preinstalled.

We contacted the developer about this to see if we could facilitate a solution, but we were not successful. The developer recommends that anyone who wants to use newlisp compile it from source.

joejoe
Posts: 173
Joined: Thu Jun 25, 2009 5:09 pm
Location: Denver, USA

Re: running a nL on nearlyfreespeech

Post by joejoe »

Any known hosts out of box nL friendly?

Thanks and for all!
Last edited by joejoe on Wed Aug 26, 2020 4:36 am, edited 2 times in total.

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

Re: running a nL on nearlyfreespeech

Post by Lutz »

When NearlyFreeSpeech.NET Support contacted me, we had a longer email exchange. This is the solution I offered:

Code: Select all

lutz mueller <lutz.email@gmail.com>
	
Apr 17, 2020, 1:05 PM
	
to [NearlyFreeSpeech.NET
Hi Jeff,

You can find a current executable compiled and tested on your server here: http://www.newlisp.org/cgi-bin/newlisp

[newlisp /home/public/cgi-bin]$ ./newlisp
newLISP v.10.7.5 64-bit on BSD IPv4/6 UTF-8 libffi, options: newlisp -h

>

Best regards - Lutz
There where relying on newlisp to be compiled by the FreeBSD organization web site. But FreeBSD organization did not have updated to v10.7.5.

My own scripts on NearlyFreeSpeech.NET all use:

#!/home/public/cgi-bin/newlisp

in the .cgi files. You could just download:

http://www.newlisp.org/cgi-bin/newlisp

and do the same.

joejoe
Posts: 173
Joined: Thu Jun 25, 2009 5:09 pm
Location: Denver, USA

Re: running a nL on nearlyfreespeech

Post by joejoe »

Thank you Lutz!

I ran these and got pretty much there if it helps anyone. Will figure the rest.

Code: Select all

mkdir cgi-bin
cd cgi-bin
wget http://www.newlisp.org/cgi-bin/newlisp
chmod 755 newlisp

./newlisp
Shared object "libreadline.so.7" not found, required by "newlisp"

wget ftp://ftp.gnu.org/gnu/readline/readline-8.0.tar.gz
tar zxvf readline-8.0.tar.gz
cd readline-8.0
./configure
make

make install
install: /usr/local/include/readline/readline.h: Read-only file system
*** Error code 71
Thanks for allow so much support for all distros and hosting options!

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

Re: running a nL on nearlyfreespeech

Post by Lutz »

newLISP can be compiled without readline support by taking out: -DREADLINE from the compile line in the make file and take out: -lreadline and: -lncurses from the linkline in the make file.

Here is a new recompile without readline support:

http://www.newlisp.org/cgi-bin/newlisp

compiled using: makefile_bsdLP64_utf8 and shouldn't complain about any library missing.

In case this still doesn't work, expand newlisp-10.7.5.tgz and recompile yourself on your server using:

make -f makefile_bsdLP64_utf8

joejoe
Posts: 173
Joined: Thu Jun 25, 2009 5:09 pm
Location: Denver, USA

Re: running a nL on nearlyfreespeech

Post by joejoe »

Thank you Lutz!

I replaced the old with the new binary

http://www.newlisp.org/cgi-bin/newlisp

I also am using your

Code: Select all

#!/home/public/cgi-bin/newlisp
Everything worked immediately, and will keep note of your recompile without readline in mind too!

Much appreciated, Lutz!

Marisabelaa
Posts: 3
Joined: Tue Aug 27, 2019 9:10 am
Location: United States

-

Post by Marisabelaa »

My wife just told me about a survey that asked Americans and Australians to choose either sex or running. The majority of Australians chose running, and the majority of Americans chose sex. The journalist asked is it the quality of running in Australia or the quality of sex in America?



Locked