Midnight Commander binary anyone ?

Ben Zandstra
Hi,

does anyone have a binary for Midnight Commander for the Mini2440 which he
wants to share ?

TnX,

Ben

Ben Zandstra
Solved my problem another way:

I'm used to Nano but I can work with the editor from MC.

I found a way to intall Nano without having to install compilers on my
Mini2440:

2.2  Running software from debian
It is also possible to run software from debian. For example, if you would
like to run the "nano" text editor:

Connect to the OYO. I used SSH (like described above)

Install the software. Since we don't have a full package manager (yet) it
is a bit of manual work. Just copy & paste the following:

mount / -o remount,rw
wget
"http://ftp.us.debian.org/debian/pool/main/n/nano/nano-tiny_2.0.7-5_armel...;
wget
"http://ftp.us.debian.org/debian/pool/main/s/slang2/libslang2_2.1.3-3_arm...;
FILES=$(ls /root/*deb)
cd /
for NAME in $FILES ; do
    ar -x "${NAME}"
    tar zxf data.tar.gz
    rm debian-binary data.tar.gz control.tar.gz
    rm "${NAME}"
done
cd -
ln -sf /bin/nano-tiny /bin/nano


It's at http://www.fwma.de/pmwiki/pmwiki.php?n=Main.OYO number 2.2
Did change the folder name but that was all.