First try the command as root from /root directory (using a command line terminal window):
# ls -a
Are there any files that start with '.' (dot) that could possibly be the music file(s)?
Assuming the name of the music file(s) is "music" or has "music" somewhere in the name, you could issue the command, again as root from /root:
# find . -name "*music*" -print
and then you could see the file size with:
# ls -lt /root/<path-to-music-file(s)>
That means that if the find command above finds a file that fits the name with music in it, then the -print part of the find command will tell you its location, so replace the <path-to-music-file(s)> with the path (directory path) to the music file(s) in the ls -lt command above.
-- Tom
__________________ The independence created by philosophical insight is - in my opinion - the mark of distinction
between a mere artisan or specialist and a real seeker after truth. - Einstein 1944
Imagination is more important than knowledge. - Einstein |