I had LMS 7.9.0 running fine on my Raspberry Pi2 with Raspbian Jessie. I did a fresh install of Raspbian Stretch but cannot get LMS to work.
First of all, I tried the method that worked with Raspbian Jessie:
That didn't work. I read that a Beta version, 7.9.1 ran OK so I tried:
Can anyone help?
Thanks
First of all, I tried the method that worked with Raspbian Jessie:
Code:
url="http://www.mysqueezebox.com/update/?version=7.9.0&revision=1&geturl=1&os=deb"
latest_lms=$(wget -q -O - "$url")
sudo mkdir -p /sources
cd /sources
sudo wget $latest_lms
lms_deb=${latest_lms##*/}
sudo dpkg -i $lms_deb
sudo service logitechmediaserver startCode:
sudo mkdir -p /sources
cd /sources
sudo wget http://downloads.slimdevices.com/nightly/7.9/sc/a519d5e/logitechmediaserver_7.9.1~1504317335_all.deb
sudo dpkg -i logitechmediaserver_7.9.1~1504317335_all.deb
sudo service logitechmediaserver startThanks