Reply To: NSLU2 and Firefly Setup Issues

#6169
rpedde
Participant

@Darth Nemo wrote:

Thanks for all the help – but I can’t seem to copy the new nightly file onto my drive in telnet. My drive is connected on usb 2 and i’m using the command

cp /share/hdd/data/public/mt-daapd(insert version number).ipk /tmp but alas no joy.

Lots of people seem to be able to view their directory structure – but I have no idea how to do that?

James

It might be /share/flash/data/public/

To see files and whatnot, use “ls”. Something like “ls /share” will show you all the files and directories in “/share”. You can use ls to list files in any directory by specifying what directory you want to list files for.

Given that, you ought to be able to find out where the file is.

Another useful command is find:

foo@slug:~$ find / -name “mt-daapd_svn*”

That will show the files with name starting with “mt-daapd_svn” in the “/” directory (or below).

Might take some time to scan the whole drive, but it will eentually find it and show you the path.

— Ron