08-10-2024, 03:50 PM
They need to make one change to the docs, for sure. The installation binaries all got moved from roonlabs.com to roonlabs.net. That's no problem for folks downloading via their web browser 'cuz they handle redirection without complaint. It's a big problem for Roon's command line instructions
This fails because curl -O doesn't handle redirection automatically. What is downloaded is a short HTML file declaring that the target has been moved permanently.
Simple fix for their editor: either give the new URL or change curl -O to curl -LO so redirection can occur automatically.
Apart from that, their Easy Installer seems to work without further adjustment. I don't know why my first attempt failed but Ive been unable to repeat it. I expect I did my usual imitation of Charlie Chaplin stepping on a banana peel.
Regards.
Kent
Code:
$ curl -O http://download.roonlabs.com/builds/roonbridge-installer-linuxarmv8.sh
$ chmod +x roonbridge-installer-linuxarmv8.sh
$ sudo ./roonbridge-installer-linuxarmv8.sh
This fails because curl -O doesn't handle redirection automatically. What is downloaded is a short HTML file declaring that the target has been moved permanently.
Simple fix for their editor: either give the new URL or change curl -O to curl -LO so redirection can occur automatically.
Apart from that, their Easy Installer seems to work without further adjustment. I don't know why my first attempt failed but Ive been unable to repeat it. I expect I did my usual imitation of Charlie Chaplin stepping on a banana peel.
Regards.
Kent