Uipko Berghuis
New member
EDIT: I typed out the URL in the command line (instead of trying to find the file on the SD card) and it seemed to work on the second try. I would still like to know how to locate the file on the SD card though....
Crash course linux.
On linux the file system starts at / all directories, files, drives, removable media are somewhere under /
The following commands can be used:
- show the path of the current directory
pwd
- show list of directories and files in current directory, lines starting with a d are directories
ls -l
- show list of directories and files in /, lines starting with a d are directories
ls -l /
- change directory
cd /
- find all files and directories under / starting with luci
find / -name "luci*"
If you want to learn more have a look at http://www.tuxfiles.org/linuxhelp/cli.html
or http://linuxcommand.org/learning_the_shell.php
Please bear in mind the the HM is running a very small and basic version, this means that not commands and options are available. See http://www.busybox.net/about.html .