juggy;651976 Wrote: 
> Hi,
> 
> i have my music on a second drive
> 
> the second drive is perminantly mounted in media as "data"
> i have access to the media files via samba on other pc
> but squeezecenter can only see the /media not anything under it
> 
> /media/data/mutimedia/_music
> /media/data/multimedia/_music/_playlists
> 
> i need to modify permissions for the squeezecenter server user
> 
> how do i do this safely in ubuntu 11.04 and maintain my read / wirte
> permissions on the samba users?

Open a terminal window and do the following:
Firstly, ensure you've ownership of the folders and its children
Code:
--------------------
    sudo chown -R yourusername:yourusername /media/data/
--------------------


Secondly, ensure folder and file directories are such that you've
read/write access and others have read access:
Code:
--------------------
    cd /media/data && sudo find . -type d -execdir sudo chmod 775 {} \; && sudo 
find . -name "*" -type f -exec chmod 644 {} \;
--------------------


Now stop and restart SBS and then run a rescan from the web ui...


-- 
audiomuze

*'Linux finally gets a great audio tagger'
(http://www.ubuntugeek.com/linux-finally-gets-a-great-audio-tagger.html):
'puddletag' (http://puddletag.sourceforge.net/)*
------------------------------------------------------------------------
audiomuze's Profile: http://forums.slimdevices.com/member.php?userid=33613
View this thread: http://forums.slimdevices.com/showthread.php?t=89807

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

Reply via email to