audiomuze wrote: 
> Here's one for anyone struggling with Linux file permissions.  It is run
> from a terminal window in the main folder housing your music collection.
> Basically it does two things: 1) ensures all folders and files are
> owned by your user account; 2) makes all directories and files r/w to
> your account and read only to all others
> 
> > 
Code:
--------------------
  >   > sudo chown -R <yourusername>:<yourusername> * && find . -type d 
-execdir sudo chmod 775 {} \; && sudo find . -name "*" -type f -exec chmod 644 
{} \;
--------------------
> > 

apologies for necrobumping this thread :p

for me this did not work. read only to all others wasn't enough to have
the LMS scan my library, I had to set the execute bit to others also.


------------------------------------------------------------------------
lille's Profile: http://forums.slimdevices.com/member.php?userid=67758
View this thread: http://forums.slimdevices.com/showthread.php?t=92526

_______________________________________________
unix mailing list
unix@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/unix

Reply via email to