Sounds like a permissions issue.  Fix it using this:

http://forums.slimdevices.com/showpost.php?p=237360&postcount=7

then

http://forums.slimdevices.com/showpost.php?p=237132&postcount=3

So in summary, copy and paste this at the command prompt:


Code:
--------------------
    sudo chown -R scott:scott /home/scott/Music
--------------------


Then:


Code:
--------------------
    cd /home/scott/Music
--------------------


Then:


Code:
--------------------
    find . -type d -exec chmod 755 {} \;
  find . -type f -exec chmod 644 {} \;
--------------------


Background: it didn't work because the SlimServer scanner was running
as user "slimserver" and user "slimserver" may not have had permission
to view the files.  What this does is it transfers ownership of the
directory and files to you, then it allows all others read-only access.
This means SlimServer won't be able to accidentally overwrite or delete
files (if it ever developed that capability, that is) and no one else
will be able to either, except you.


-- 
Mark Lanctot

'Sean Adams' Response-O-Matic checklist, patent pending!'
(http://forums.slimdevices.com/showpost.php?p=200910&postcount=2)
------------------------------------------------------------------------
Mark Lanctot's Profile: http://forums.slimdevices.com/member.php?userid=2071
View this thread: http://forums.slimdevices.com/showthread.php?t=39632

_______________________________________________
unix mailing list
[email protected]
http://lists.slimdevices.com/lists/listinfo/unix

Reply via email to