Reply To: How-to setup Firefly on a Synology disk station (powerpc)

FireFly Media Server Firefly Media Server Forums Firefly Media Server Setup Issues How-to setup Firefly on a Synology disk station (powerpc) Reply To: How-to setup Firefly on a Synology disk station (powerpc)

#14508
cstern
Participant

@Hilversum wrote:

This is the result:

find / -iname music
BusyBox v1.1.0 (2007.11.01-14:41+0000) multi-call binary

Usage: find [PATH…] [EXPRESSION]

I don’t know what it means.
(Time to go to bed! I look forward to continuing this conversation tomorrow. Thank you very much for your help so far.)

I would suggest


find / -name music -type d -print

(-print may be implicit, but it should not harm)

It means: find, starting from “/” which is the top level directory on the system, items named “music” of the type “d” = directory, and print the result to the terminal.