1. On the Radio, choose "Home > Settings > Advanced > Remote Login > Enable SSH". You should see a message telling you the root password. If you don't see the message, restart your Radio and try again.
2. From your PC, SSH into the IP address of the Radio with root as the user. (Windows users can use PuTTY to SSH.) For example:
$> ssh 192.168.0.2 -l root
3. Enter the password (the default is "1234").
You can change the password using passwd after login. If you forget the password, you need to reset the Radio to factory settings.
Thanks to the various users in this forum thread.
Showing posts with label Logitech Squeezebox. Show all posts
Showing posts with label Logitech Squeezebox. Show all posts
28 November 2009
27 November 2009
Increase granularity of Squeezebox Server volume control
By default, Squeezebox Server only lets you change the volume of a device in increments of 10 (from 0 to 100). After the change below, you can change the volume in increments of 1, using the Softer and Louder buttons. (If you hover your cursor over the volume bar, it will tell you the exact volume level currently being used.)
1. Stop or pause the playback of your device.
2. Open Base.js for editing. For OS X, it's in "/Library/PreferencePanes/Squeezebox.prefPane/Contents/server/HTML/EN/html/SqueezeJS/". For Windows, it's in "\Program Files\Squeezebox\server\HTML\EN\html\SqueezeJS\".
3. Look for the SetVolume function on line 430. (The line number might change with newer Squeezebox Server versions.) Make it look like this:
If an increment of 1 is too small, you can increase it by changing the second line of the function. For example, to increment by 2, change the line to "amount = d + (amount * 2);".
Thanks to Sean Echevarria.
1. Stop or pause the playback of your device.
2. Open Base.js for editing. For OS X, it's in "/Library/PreferencePanes/Squeezebox.prefPane/Contents/server/HTML/EN/html/SqueezeJS/". For Windows, it's in "\Program Files\Squeezebox\server\HTML\EN\html\SqueezeJS\".
3. Look for the SetVolume function on line 430. (The line number might change with newer Squeezebox Server versions.) Make it look like this:
4. Save the file and refresh the Squeezebox Server page. Test the buttons to ensure the volume indicator changes correctly before you actually play any sound (the wrong code can easily cause the volume to jump to its maximum.)setVolume : function(amount, d){
if (d)
amount = d + amount;
else
amount *= 10;
this.playerControl(['mixer', 'volume', amount]);
},
If an increment of 1 is too small, you can increase it by changing the second line of the function. For example, to increment by 2, change the line to "amount = d + (amount * 2);".
Thanks to Sean Echevarria.
Subscribe to:
Posts (Atom)