newLISP Fan Club

Forum => newLISP and the O.S. => Topic started by: Darth_Severus on February 17, 2016, 04:52:37 AM

Title: I/O error
Post by: Darth_Severus on February 17, 2016, 04:52:37 AM
Hi,



I'm recently getting an I/O error when trying to start newLisp:


Quote$ /usr/bin/newlisp



ERR: I/O error


I didn't change anything, it just happend. Didn't try a new install so far. Any ideas why this happend?


Quote$ file /usr/bin/newlisp

/usr/bin/newlisp: ELF 32-bit LSB executable, Intel 80386, version 1 (SYSV), dynamically linked, interpreter /lib/ld-linux.so.2, for GNU/Linux 2.6.26, BuildID[sha1]=6e58352d03112cf6cf1deb50fc8186415bf68610, stripped


QuoteCPU~Dual core Intel Core2 Duo U7600 (-MCP-) speed/max~800/1201 MHz Kernel~3.14-0.bpo.2-686-pae i686 Up~5 days Mem~620.3/999.6MB
Title: Re: I/O error
Post by: rrq on February 17, 2016, 01:22:57 PM
If possible, try running it with strace
strace /usr/bin/newlisp |& tee LOG
Then reduce the LOG file to the stat, open and error lines with
egrep '(stat|open|ERR)' LOG
Doing that might give a lead to where the problem arises.
Title: Re: I/O error
Post by: Darth_Severus on February 18, 2016, 10:52:43 AM
Thanks ralf, this was a good idea. I should have had that thought on my own. Next time I'm trying strace. However, my computer froze and I had to restart. Now it is working.
Title: -
Post by: ValentiMr on June 26, 2022, 04:48:54 AM
So .. after complete HDD eration, still have problems with freezing and crashing and stuff. It gives me error 487 .... what to do next? Win10 64 bit is system. Tnx for help.
Title: hi!
Post by: ValentiMr on June 30, 2022, 07:25:54 PM
QuoteIf possible, try running it with strace Code: Select allstrace /usr/bin/newlisp |& tee LOG


The nice answer!