The README contains these commands as instructions to backup the original firmware:
cd /dev
for part in mtd[0123] ; do
dd if=$part of=/tmp/$part
done
Then it tells the reader to use scp to transfer the resulting /tmp/mtdX files to a computer. This last "scp" step may be confusing, because in the latest OpenSSH release, they have internally mapped the "scp" command to use the SFTP protocol by default. Here is the error:
[aep@hp-laptop linksys-e8450]$ scp root@192.168.1.1:/tmp/mtd* .
ash: /usr/libexec/sftp-server: not found
scp: Connection closed
The reader should be instructed to use the "-O" option to fall back to the old and deprecated scp protocol... but I am afraid this would be removed either.
The README contains these commands as instructions to backup the original firmware:
Then it tells the reader to use scp to transfer the resulting
/tmp/mtdX
files to a computer. This last "scp" step may be confusing, because in the latest OpenSSH release, they have internally mapped the "scp" command to use the SFTP protocol by default. Here is the error:The reader should be instructed to use the "-O" option to fall back to the old and deprecated scp protocol... but I am afraid this would be removed either.