| yodelaye  
 
 
 
 
 Group: Members
 Posts: 16
 Joined: Feb. 2007
 | 
|  | Posted: May 02 2007,18:54 |  |  hi
 
 1st of all, thanks for the answer.
 as I had to make a few trials to understand your point I will provide some details in case this could be helpfull to others.
 
 exemple :
 il downloaded these 2 files :
 >>racer_0.5.0-english.run<< and  >>racer_0.5.0-english.run.md5<<
 from this page http://www.liflg.org/      section      download>native>racer
 result of md5sum -c racer_0.5.0-english.run.md5  says OK
 so there is no issue during the download and my md5sum function seems to run fine
 
 after chmoding +x the file
 result of ./racer_0.5.0-english.run --help gave me the various options the script can accept
 
 result of ./racer_0.5.0-english.run --list gave me an error of gzip :
 gzip : short read
 
 thus I thought there was an error with the gzip provided with busybox
 I downloaded the .deb gzip archive from debian mirrors
 unpacked it in /opt/bin/gzip
 and in /bin I replaced the symlink gzip -> /bin/busybox by gzip->/opt/bin/gzip
 
 not better : result of ./racer_0.5.0-english.run --list was still an error
 
 as you mentionned the dd replacement  I tried again :
 debian package search => dd is in coreutils
 download the .deb coreutils from debian
 unpaked dd it in /opt/bin/dd
 in /bin replaced the symlink dd->/bin/busybox by dd->/opt/bin/dd
 
 and : bingo !
 result of ./racer_0.5.0-english.run --list is now the list of files contained in the archive
 
 good to know how to proceed with these ".run" archive
 if I m successfull with games installation this way, I may post them as .dsl
 
 
 thanks
 yodelaye
 |