===== Logitech Media Server =====
==== Install Logitech Media Server Server from SlimDevices repository ====
**The debian repository has been taken offline**\\
see [[http://wiki.slimdevices.com/index.php/Debian_Package|bye, bye Debian and yum repos]]\\
you now need to install the debian package manually.
Modify /etc/apt/sources.list:
deb http://debian.slimdevices.com stable main
Install Squeezebox Server:
apt-get update
apt-get install logitechmediaserver
Manual:
sudo service logitechmediaserver stop
// download the package, link see below
dpkg -i
sudo service logitechmediaserver start
download [[http://downloads.slimdevices.com/nightly/index.php|Debian Package]]
for instructions, see [[http://wiki.slimdevices.com/index.php/Debian_Package|Debian Package]]
==== Config ====
* reboot server
* upgrade your clients firmware
* join user squeezeboxserver to group of music files
adduser squeezeboxserver # or
usermod -a -G
* modify access rights for squeezeboxserver user (do this on the server where the music files physically reside)
chown -R : /music # or
chgrp -R /music # faster
==== Remarks ====
- If you want to access the music directory and contents from different machines or VMs, choose //users (gid=100)// as , then add user //squeezeboxserver// to users. This is also the group you can access the music directories from [[dsm43:dsminst|Media Server Installation - Synology DSM 4.3 (Oberon)]]
- New music files from a Windows client will be written to the server with 755 directory and 644 file permissions
- To make the music directory accessible for the client, either leave the 644 file permissions or change group to and change 750 directory and 640 file permissions
- You can use the following commands to do this throughout the music tree:
find /path/to/music/dir -type d -exec chmod 750 {} + # directories
find /path/to/music/dir -type f -exec chmod 644 {} + # files