i want download some files from teh wrt54g with openwrt, is there some smart way?
Topic: how to download a flie from the openwrt .
The content of this topic has been archived on 23 Apr 2018. There are no obvious gaps in this topic, but there may still be some posts missing at the end.
Page 1 of 1
wget -O <filename on the local filesystem> http:// or ftp:// ... file ...
thanks
you could use scp, like this:
from your PC:
scp root@<linksys-ip>:/path/to/file local-file-name
the opositive is also posible:
scp local-file-name root@<linksys-ip>:/path/to/file
you can copy more than one file if the destiny is one directory (ie, it ends with "/").
Hope this helps!.
The discussion might have continued from here.
Page 1 of 1