SqueezePlay for Joggler (Native, Ubuntu & SQPOS)
Re: SqueezePlay for Joggler (Native, Ubuntu & sqpOS)
...I've also stumbled across a post from hamphh in a different thread here that looks promising:
http://www.jogglerwiki.com/forum/viewto ... 600#p14864
"I increased the USB output level with alsamixer from 80 to 100 and now the volume is ok"
Dunno how to do that but it must be on here somewhere. If I'm lucky the type of boost described in that post might be just right to bring the Joggler up to match the rest of the stereo.
All this is highly educational!
http://www.jogglerwiki.com/forum/viewto ... 600#p14864
"I increased the USB output level with alsamixer from 80 to 100 and now the volume is ok"
Dunno how to do that but it must be on here somewhere. If I'm lucky the type of boost described in that post might be just right to bring the Joggler up to match the rest of the stereo.
All this is highly educational!
-
- Posts: 711
- Joined: Sun May 13, 2012 4:42 pm
Re: SqueezePlay for Joggler (Native, Ubuntu & sqpOS)
So what, then, does 'master output limiter' (in interface configuration; audio settings) do. I'm assuming it doesn't remove the sound limit in the same way as alsa mixer otherwise people wouldn't be looking for other fixes? Although the warning that disabling it comes with suggests it might...
...unless i've misunderstood
...unless i've misunderstood
Last edited by ilovemyjoggler on Thu Jan 31, 2013 1:07 am, edited 2 times in total.
Re: SqueezePlay for Joggler (Native, Ubuntu & sqpOS)
I have this working - it's set as local storage, I have the path '/mnt/NAS/Pictures'johnnygal wrote:Can anyone help please?
Is anyone using the image viewer to view images on a network drive?
and it just works - sorry I can't help much more than that.
Re: SqueezePlay for Joggler (Native, Ubuntu & sqpOS)
Thanks for that. I'm sure I had it working at some point in the past. I just couldn't remember whether I had it set to URL or local storage.multiplex wrote:I have this working - it's set as local storage, I have the path '/mnt/NAS/Pictures'johnnygal wrote:Can anyone help please?
Is anyone using the image viewer to view images on a network drive?
and it just works - sorry I can't help much more than that.
I can now set it to local storage and go from there.
Thanks very much. At least I know it still should work.
John
Re: SqueezePlay for Joggler (Native, Ubuntu & sqpOS)
I don't know if there's any demand for this, or how easy it is to achieve, but the Logitech Controllers which are also based on SqueezePlay have an option to enable or disable playback ability on them so they can appear in the list of available players or not, in which case they are simply there to act as a control device.
Since I only use my Jogglers to control Squeezebox hardware and I have quite a few players already, it would be a nice thing (for me) to be able to de-register them as players in order to limit the list of players available to the players that I actually have set up as such. It would cause less confusion around the house!
Since I only use my Jogglers to control Squeezebox hardware and I have quite a few players already, it would be a nice thing (for me) to be able to de-register them as players in order to limit the list of players available to the players that I actually have set up as such. It would cause less confusion around the house!
Re: SqueezePlay for Joggler (Native, Ubuntu & sqpOS)
@plm
You are not the first to ask, and I think I might have achieved it at one point to some degree - as you say it is easy to pull the files from from the controller and compare to the generic version - there is a simple function that you can tweak to stop it showing up on other devices, but I think stopping it seeing itself was a bit more complex.
The problem is that you have to make the changes for every update - and I lost interest
If there are folk with an interest I may have another go - One of my Jogglers is a controller for a receiver (still haven't done the TOS output mod!) and if I'm successful I can try to do a patch. There aer a few calls on my spare time at the moment but if there's a quiet period before the weather draws me outside I'll take a look.
You are not the first to ask, and I think I might have achieved it at one point to some degree - as you say it is easy to pull the files from from the controller and compare to the generic version - there is a simple function that you can tweak to stop it showing up on other devices, but I think stopping it seeing itself was a bit more complex.
The problem is that you have to make the changes for every update - and I lost interest

If there are folk with an interest I may have another go - One of my Jogglers is a controller for a receiver (still haven't done the TOS output mod!) and if I'm successful I can try to do a patch. There aer a few calls on my spare time at the moment but if there's a quiet period before the weather draws me outside I'll take a look.
Re: SqueezePlay for Joggler (Native, Ubuntu & sqpOS)
I'd have thought there'd actually be very few updates now that Logitech has discontinued all of the products based on SqueezePlay with the possible exception of the new Ultimate Ears Radio.
If that makes the code base less fluid then a diff patch might work well, even when Roobarb and others are adding enhancements.
But it's still got to be worth the effort for somebody to do in the first place!
If that makes the code base less fluid then a diff patch might work well, even when Roobarb and others are adding enhancements.
But it's still got to be worth the effort for somebody to do in the first place!
Re: SqueezePlay for Joggler (Native, Ubuntu & sqpOS)
hi I had the same issue and I found the problem is the "x" parameter of udhcpc.offbeatdave wrote: Incidentally, I found that when I updated the busybox on the OpenPeak-ed OS, it broke networking DHCP functionality so anyone fiddling with this needs to be careful (i.e. back up your old busybox first)
The new busybox doesn't have it so the quick (and very dirty way) to fix it is:
wget busybox new version, untar, copy on /bin, (be sure making a backup of the bb1.10), install 1.16 with links and re-install old links to 1.10
so:
Code: Select all
cd /tmp
wget http://www.jogglerwiki.com/mediawiki/images/c/cb/Busybox-1.6.tar.gz
tar zxvpf Busybox-1.6.tar.gz
mv busybox-1.16 /bin
cd /bin
cp busybox busybox-1.10 (just for a safe backup)
/bin/busybox-1.16 --install /bin (sometimes the binary busybox wants the full path. this command creates all the symbolic links of the applets included in binary, and, obviusly, it overwrites the existent link, included the udhcpc)
/bin/busybox-1.10 --install /bin (this is used to restore the old applets included in this version)
for detail we can do:
Code: Select all
ls -al|grep busybox
Code: Select all
lrwxrwxrwx 1 root root 7 Oct 1 2011 ash -> busybox
-rwxr-xr-x 1 root root 348152 Feb 19 23:06 busybox
-rwxr-xr-x 1 root root 348152 Feb 19 23:03 busybox-1.10.4
-rwxr-xr-x 276 root root 711984 Apr 30 2010 busybox-1.6
lrwxrwxrwx 1 root root 7 Oct 1 2011 cat -> busybox
lrwxrwxrwx 1 root root 7 Oct 1 2011 chgrp -> busybox
lrwxrwxrwx 1 root root 7 Oct 1 2011 chmod -> busybox
lrwxrwxrwx 1 root root 7 Oct 1 2011 chown -> busybox
lrwxrwxrwx 1 root root 7 Oct 1 2011 cp -> busybox
lrwxrwxrwx 1 root root 7 Oct 1 2011 date -> busybox
lrwxrwxrwx 1 root root 7 Oct 1 2011 dd -> busybox
lrwxrwxrwx 1 root root 7 Oct 1 2011 df -> busybox
lrwxrwxrwx 1 root root 7 Oct 1 2011 dmesg -> busybox
lrwxrwxrwx 1 root root 7 Oct 1 2011 echo -> busybox
lrwxrwxrwx 1 root root 7 Oct 1 2011 ed -> busybox
lrwxrwxrwx 1 root root 7 Oct 1 2011 egrep -> busybox
lrwxrwxrwx 1 root root 7 Oct 1 2011 false -> busybox
lrwxrwxrwx 1 root root 7 Oct 1 2011 fgrep -> busybox
lrwxrwxrwx 1 root root 7 Oct 1 2011 grep -> busybox
lrwxrwxrwx 1 root root 7 Oct 1 2011 gunzip -> busybox
lrwxrwxrwx 1 root root 7 Oct 1 2011 gzip -> busybox
lrwxrwxrwx 1 root root 7 Oct 1 2011 hostname -> busybox
lrwxrwxrwx 1 root root 7 Oct 1 2011 kill -> busybox
lrwxrwxrwx 1 root root 7 Oct 1 2011 ln -> busybox
lrwxrwxrwx 1 root root 7 Oct 1 2011 login -> busybox
lrwxrwxrwx 1 root root 7 Oct 1 2011 ls -> busybox
lrwxrwxrwx 1 root root 7 Oct 1 2011 mkdir -> busybox
lrwxrwxrwx 1 root root 7 Oct 1 2011 mknod -> busybox
lrwxrwxrwx 1 root root 7 Oct 1 2011 more -> busybox
lrwxrwxrwx 1 root root 7 Oct 1 2011 mount -> busybox
lrwxrwxrwx 1 root root 7 Oct 1 2011 mv -> busybox
lrwxrwxrwx 1 root root 7 Oct 1 2011 pidof -> busybox
lrwxrwxrwx 1 root root 7 Oct 1 2011 ping -> busybox
lrwxrwxrwx 1 root root 7 Oct 1 2011 ps -> busybox
lrwxrwxrwx 1 root root 7 Oct 1 2011 pwd -> busybox
lrwxrwxrwx 1 root root 7 Oct 1 2011 rm -> busybox
lrwxrwxrwx 1 root root 7 Oct 1 2011 rmdir -> busybox
lrwxrwxrwx 1 root root 7 Oct 1 2011 sed -> busybox
lrwxrwxrwx 1 root root 7 Oct 1 2011 sh -> busybox
lrwxrwxrwx 1 root root 7 Oct 1 2011 sleep -> busybox
lrwxrwxrwx 1 root root 7 Oct 1 2011 stty -> busybox
lrwxrwxrwx 1 root root 7 Oct 1 2011 sync -> busybox
lrwxrwxrwx 1 root root 7 Oct 1 2011 tar -> busybox
lrwxrwxrwx 1 root root 7 Oct 1 2011 touch -> busybox
lrwxrwxrwx 1 root root 7 Oct 1 2011 true -> busybox
lrwxrwxrwx 1 root root 7 Oct 1 2011 umount -> busybox
lrwxrwxrwx 1 root root 7 Oct 1 2011 uname -> busybox
lrwxrwxrwx 1 root root 7 Oct 1 2011 usleep -> busybox
lrwxrwxrwx 1 root root 7 Oct 1 2011 vi -> busybox
lrwxrwxrwx 1 root root 7 Oct 1 2011 watch -> busybox
lrwxrwxrwx 1 root root 7 Oct 1 2011 zcat -> busybox
with:
Code: Select all
ls -la|grep -v busybox
Code: Select all
-rwxr-xr-x 276 root root 711984 Apr 30 2010 [
-rwxr-xr-x 276 root root 711984 Apr 30 2010 [[
-rwxr-xr-x 276 root root 711984 Apr 30 2010 acpid
-rwxr-xr-x 276 root root 711984 Apr 30 2010 addgroup
-rwxr-xr-x 276 root root 711984 Apr 30 2010 adduser
-rwxr-xr-x 276 root root 711984 Apr 30 2010 adjtimex
-rwxr-xr-x 276 root root 711984 Apr 30 2010 ar
-rwxr-xr-x 276 root root 711984 Apr 30 2010 arp
-rwxr-xr-x 276 root root 711984 Apr 30 2010 arping
-rwxr-xr-x 276 root root 711984 Apr 30 2010 awk
-rwxr-xr-x 276 root root 711984 Apr 30 2010 basename
-rwxr-xr-x 276 root root 711984 Apr 30 2010 beep
-rwxr-xr-x 276 root root 711984 Apr 30 2010 blkid
-rwxr-xr-x 276 root root 711984 Apr 30 2010 brctl
-rwxr-xr-x 276 root root 711984 Apr 30 2010 bunzip2
-rwxr-xr-x 276 root root 711984 Apr 30 2010 bzcat
-rwxr-xr-x 276 root root 711984 Apr 30 2010 bzip2
-rwxr-xr-x 276 root root 711984 Apr 30 2010 cal
-rwxr-xr-x 276 root root 711984 Apr 30 2010 catv
-rwxr-xr-x 276 root root 711984 Apr 30 2010 chat
-rwxr-xr-x 276 root root 711984 Apr 30 2010 chattr
-rwxr-xr-x 276 root root 711984 Apr 30 2010 chpasswd
-rwxr-xr-x 276 root root 711984 Apr 30 2010 chpst
-rwxr-xr-x 276 root root 711984 Apr 30 2010 chroot
-rwxr-xr-x 276 root root 711984 Apr 30 2010 chrt
-rwxr-xr-x 276 root root 711984 Apr 30 2010 chvt
-rwxr-xr-x 276 root root 711984 Apr 30 2010 cksum
-rwxr-xr-x 276 root root 711984 Apr 30 2010 clear
-rwxr-xr-x 276 root root 711984 Apr 30 2010 cmp
-rwxr-xr-x 276 root root 711984 Apr 30 2010 comm
-rwxr-xr-x 276 root root 711984 Apr 30 2010 cpio
-rwxr-xr-x 276 root root 711984 Apr 30 2010 crond
-rwxr-xr-x 276 root root 711984 Apr 30 2010 crontab
-rwxr-xr-x 276 root root 711984 Apr 30 2010 cryptpw
-rwxr-xr-x 276 root root 711984 Apr 30 2010 cttyhack
-rwxr-xr-x 276 root root 711984 Apr 30 2010 cut
-rwxr-xr-x 276 root root 711984 Apr 30 2010 dc
-rwxr-xr-x 276 root root 711984 Apr 30 2010 deallocvt
-rwxr-xr-x 276 root root 711984 Apr 30 2010 delgroup
-rwxr-xr-x 276 root root 711984 Apr 30 2010 deluser
-rwxr-xr-x 276 root root 711984 Apr 30 2010 depmod
-rwxr-xr-x 276 root root 711984 Apr 30 2010 devmem
-rwxr-xr-x 276 root root 711984 Apr 30 2010 dhcprelay
-rwxr-xr-x 276 root root 711984 Apr 30 2010 diff
-rwxr-xr-x 276 root root 711984 Apr 30 2010 dirname
-rwxr-xr-x 276 root root 711984 Apr 30 2010 dnsd
-rwxr-xr-x 276 root root 711984 Apr 30 2010 dnsdomainname
-rwxr-xr-x 276 root root 711984 Apr 30 2010 dos2unix
-rwxr-xr-x 276 root root 711984 Apr 30 2010 du
-rwxr-xr-x 276 root root 711984 Apr 30 2010 dumpkmap
-rwxr-xr-x 276 root root 711984 Apr 30 2010 dumpleases
-rwxr-xr-x 276 root root 711984 Apr 30 2010 eject
-rwxr-xr-x 276 root root 711984 Apr 30 2010 env
-rwxr-xr-x 276 root root 711984 Apr 30 2010 envdir
-rwxr-xr-x 276 root root 711984 Apr 30 2010 envuidgid
-rwxr-xr-x 276 root root 711984 Apr 30 2010 ether-wake
-rwxr-xr-x 276 root root 711984 Apr 30 2010 expand
-rwxr-xr-x 276 root root 711984 Apr 30 2010 expr
-rwxr-xr-x 276 root root 711984 Apr 30 2010 fakeidentd
-rwxr-xr-x 276 root root 711984 Apr 30 2010 fbset
-rwxr-xr-x 276 root root 711984 Apr 30 2010 fbsplash
-rwxr-xr-x 276 root root 711984 Apr 30 2010 fdflush
-rwxr-xr-x 276 root root 711984 Apr 30 2010 fdformat
-rwxr-xr-x 276 root root 711984 Apr 30 2010 fdisk
-rwxr-xr-x 276 root root 711984 Apr 30 2010 find
-rwxr-xr-x 276 root root 711984 Apr 30 2010 findfs
-rwxr-xr-x 276 root root 711984 Apr 30 2010 fold
-rwxr-xr-x 276 root root 711984 Apr 30 2010 free
-rwxr-xr-x 276 root root 711984 Apr 30 2010 freeramdisk
-rwxr-xr-x 276 root root 711984 Apr 30 2010 fsck
-rwxr-xr-x 276 root root 711984 Apr 30 2010 fsck.minix
-rwxr-xr-x 276 root root 711984 Apr 30 2010 fsync
-rwxr-xr-x 276 root root 711984 Apr 30 2010 ftpd
-rwxr-xr-x 276 root root 711984 Apr 30 2010 ftpget
-rwxr-xr-x 276 root root 711984 Apr 30 2010 ftpput
-rwxr-xr-x 276 root root 711984 Apr 30 2010 fuser
-rwxr-xr-x 276 root root 711984 Apr 30 2010 getopt
-rwxr-xr-x 276 root root 711984 Apr 30 2010 getty
-rwxr-xr-x 276 root root 711984 Apr 30 2010 halt
-rwxr-xr-x 276 root root 711984 Apr 30 2010 hd
-rwxr-xr-x 276 root root 711984 Apr 30 2010 hdparm
-rwxr-xr-x 276 root root 711984 Apr 30 2010 head
-rwxr-xr-x 276 root root 711984 Apr 30 2010 hexdump
-rwxr-xr-x 276 root root 711984 Apr 30 2010 hostid
-rwxr-xr-x 276 root root 711984 Apr 30 2010 httpd
-rwxr-xr-x 276 root root 711984 Apr 30 2010 hush
-rwxr-xr-x 276 root root 711984 Apr 30 2010 hwclock
-rwxr-xr-x 276 root root 711984 Apr 30 2010 id
-rwxr-xr-x 276 root root 711984 Apr 30 2010 ifconfig
-rwxr-xr-x 276 root root 711984 Apr 30 2010 ifdown
-rwxr-xr-x 276 root root 711984 Apr 30 2010 ifenslave
-rwxr-xr-x 276 root root 711984 Apr 30 2010 ifplugd
-rwxr-xr-x 276 root root 711984 Apr 30 2010 ifup
-rwxr-xr-x 276 root root 711984 Apr 30 2010 inetd
-rwxr-xr-x 276 root root 711984 Apr 30 2010 init
-rwxr-xr-x 276 root root 711984 Apr 30 2010 inotifyd
-rwxr-xr-x 276 root root 711984 Apr 30 2010 insmod
-rwxr-xr-x 276 root root 711984 Apr 30 2010 install
-rwxr-xr-x 276 root root 711984 Apr 30 2010 ionice
-rwxr-xr-x 276 root root 711984 Apr 30 2010 ip
-rwxr-xr-x 276 root root 711984 Apr 30 2010 ipaddr
-rwxr-xr-x 276 root root 711984 Apr 30 2010 ipcalc
-rwxr-xr-x 276 root root 711984 Apr 30 2010 ipcrm
-rwxr-xr-x 276 root root 711984 Apr 30 2010 ipcs
-rwxr-xr-x 276 root root 711984 Apr 30 2010 iplink
-rwxr-xr-x 276 root root 711984 Apr 30 2010 iproute
-rwxr-xr-x 276 root root 711984 Apr 30 2010 iprule
-rwxr-xr-x 276 root root 711984 Apr 30 2010 iptunnel
-rwxr-xr-x 276 root root 711984 Apr 30 2010 kbd_mode
-rwxr-xr-x 276 root root 711984 Apr 30 2010 killall
-rwxr-xr-x 276 root root 711984 Apr 30 2010 killall5
-rwxr-xr-x 276 root root 711984 Apr 30 2010 klogd
-rwxr-xr-x 276 root root 711984 Apr 30 2010 last
-rwxr-xr-x 276 root root 711984 Apr 30 2010 length
-rwxr-xr-x 276 root root 711984 Apr 30 2010 less
-rwxr-xr-x 276 root root 711984 Apr 30 2010 linux32
-rwxr-xr-x 276 root root 711984 Apr 30 2010 linux64
-rwxr-xr-x 276 root root 711984 Apr 30 2010 linuxrc
-rwxr-xr-x 276 root root 711984 Apr 30 2010 loadfont
-rwxr-xr-x 276 root root 711984 Apr 30 2010 loadkmap
-rwxr-xr-x 276 root root 711984 Apr 30 2010 logger
-rwxr-xr-x 276 root root 711984 Apr 30 2010 logname
-rwxr-xr-x 276 root root 711984 Apr 30 2010 logread
-rwxr-xr-x 276 root root 711984 Apr 30 2010 losetup
-rwxr-xr-x 276 root root 711984 Apr 30 2010 lpd
-rwxr-xr-x 276 root root 711984 Apr 30 2010 lpq
-rwxr-xr-x 276 root root 711984 Apr 30 2010 lpr
-rwxr-xr-x 276 root root 711984 Apr 30 2010 lsattr
-rwxr-xr-x 276 root root 711984 Apr 30 2010 lsmod
-rwxr-xr-x 276 root root 711984 Apr 30 2010 lspci
-rwxr-xr-x 276 root root 711984 Apr 30 2010 lsusb
-rwxr-xr-x 276 root root 711984 Apr 30 2010 lzmacat
-rwxr-xr-x 276 root root 711984 Apr 30 2010 lzop
-rwxr-xr-x 276 root root 711984 Apr 30 2010 lzopcat
-rwxr-xr-x 276 root root 711984 Apr 30 2010 makedevs
-rwxr-xr-x 276 root root 711984 Apr 30 2010 makemime
-rwxr-xr-x 276 root root 711984 Apr 30 2010 man
-rwxr-xr-x 276 root root 711984 Apr 30 2010 md5sum
-rwxr-xr-x 276 root root 711984 Apr 30 2010 mdev
-rwxr-xr-x 276 root root 711984 Apr 30 2010 mesg
-rwxr-xr-x 276 root root 711984 Apr 30 2010 microcom
-rwxr-xr-x 276 root root 711984 Apr 30 2010 mkdosfs
-rwxr-xr-x 276 root root 711984 Apr 30 2010 mke2fs
-rwxr-xr-x 276 root root 711984 Apr 30 2010 mkfifo
-rwxr-xr-x 276 root root 711984 Apr 30 2010 mkfs.ext2
-rwxr-xr-x 276 root root 711984 Apr 30 2010 mkfs.minix
-rwxr-xr-x 276 root root 711984 Apr 30 2010 mkfs.vfat
-rwxr-xr-x 276 root root 711984 Apr 30 2010 mkpasswd
-rwxr-xr-x 276 root root 711984 Apr 30 2010 mkswap
-rwxr-xr-x 276 root root 711984 Apr 30 2010 mktemp
-rwxr-xr-x 276 root root 711984 Apr 30 2010 modprobe
-rwxr-xr-x 276 root root 711984 Apr 30 2010 mountpoint
-rwxr-xr-x 276 root root 711984 Apr 30 2010 msh
-rwxr-xr-x 276 root root 711984 Apr 30 2010 mt
-rwxr-xr-x 276 root root 711984 Apr 30 2010 nameif
-rwxr-xr-x 276 root root 711984 Apr 30 2010 nc
-rwxr-xr-x 276 root root 711984 Apr 30 2010 netstat
-rwxr-xr-x 276 root root 711984 Apr 30 2010 nice
-rwxr-xr-x 276 root root 711984 Apr 30 2010 nmeter
-rwxr-xr-x 276 root root 711984 Apr 30 2010 nohup
-rwxr-xr-x 276 root root 711984 Apr 30 2010 nslookup
-rwxr-xr-x 276 root root 711984 Apr 30 2010 ntpd
-rwxr-xr-x 276 root root 711984 Apr 30 2010 od
-rwxr-xr-x 276 root root 711984 Apr 30 2010 openvt
-rwxr-xr-x 276 root root 711984 Apr 30 2010 passwd
-rwxr-xr-x 276 root root 711984 Apr 30 2010 patch
-rwxr-xr-x 276 root root 711984 Apr 30 2010 pgrep
-rwxr-xr-x 276 root root 711984 Apr 30 2010 ping6
-rwxr-xr-x 276 root root 711984 Apr 30 2010 pipe_progress
-rwxr-xr-x 276 root root 711984 Apr 30 2010 pivot_root
-rwxr-xr-x 276 root root 711984 Apr 30 2010 pkill
-rwxr-xr-x 276 root root 711984 Apr 30 2010 popmaildir
-rwxr-xr-x 276 root root 711984 Apr 30 2010 poweroff
-rwxr-xr-x 276 root root 711984 Apr 30 2010 printenv
-rwxr-xr-x 276 root root 711984 Apr 30 2010 printf
-rwxr-xr-x 276 root root 711984 Apr 30 2010 pscan
-rwxr-xr-x 276 root root 711984 Apr 30 2010 raidautorun
-rwxr-xr-x 276 root root 711984 Apr 30 2010 rdate
-rwxr-xr-x 276 root root 711984 Apr 30 2010 rdev
-rwxr-xr-x 276 root root 711984 Apr 30 2010 readahead
-rwxr-xr-x 276 root root 711984 Apr 30 2010 readlink
-rwxr-xr-x 276 root root 711984 Apr 30 2010 readprofile
-rwxr-xr-x 276 root root 711984 Apr 30 2010 realpath
-rwxr-xr-x 276 root root 711984 Apr 30 2010 reboot
-rwxr-xr-x 276 root root 711984 Apr 30 2010 reformime
-rwxr-xr-x 276 root root 711984 Apr 30 2010 renice
-rwxr-xr-x 276 root root 711984 Apr 30 2010 reset
-rwxr-xr-x 276 root root 711984 Apr 30 2010 resize
-rwxr-xr-x 276 root root 711984 Apr 30 2010 rmmod
-rwxr-xr-x 276 root root 711984 Apr 30 2010 route
-rwxr-xr-x 276 root root 711984 Apr 30 2010 rpm
-rwxr-xr-x 276 root root 711984 Apr 30 2010 rpm2cpio
-rwxr-xr-x 276 root root 711984 Apr 30 2010 rtcwake
-rwxr-xr-x 276 root root 711984 Apr 30 2010 run-parts
-rwxr-xr-x 276 root root 711984 Apr 30 2010 runlevel
-rwxr-xr-x 276 root root 711984 Apr 30 2010 runsv
-rwxr-xr-x 276 root root 711984 Apr 30 2010 runsvdir
-rwxr-xr-x 276 root root 711984 Apr 30 2010 rx
-rwxr-xr-x 276 root root 711984 Apr 30 2010 script
-rwxr-xr-x 276 root root 711984 Apr 30 2010 scriptreplay
-rwxr-xr-x 276 root root 711984 Apr 30 2010 sendmail
-rwxr-xr-x 276 root root 711984 Apr 30 2010 seq
-rwxr-xr-x 276 root root 711984 Apr 30 2010 setarch
-rwxr-xr-x 276 root root 711984 Apr 30 2010 setconsole
-rwxr-xr-x 276 root root 711984 Apr 30 2010 setfont
-rwxr-xr-x 276 root root 711984 Apr 30 2010 setkeycodes
-rwxr-xr-x 276 root root 711984 Apr 30 2010 setlogcons
-rwxr-xr-x 276 root root 711984 Apr 30 2010 setsid
-rwxr-xr-x 276 root root 711984 Apr 30 2010 setuidgid
-rwxr-xr-x 276 root root 711984 Apr 30 2010 sha1sum
-rwxr-xr-x 276 root root 711984 Apr 30 2010 sha256sum
-rwxr-xr-x 276 root root 711984 Apr 30 2010 sha512sum
-rwxr-xr-x 276 root root 711984 Apr 30 2010 showkey
-rwxr-xr-x 276 root root 711984 Apr 30 2010 slattach
-rwxr-xr-x 276 root root 711984 Apr 30 2010 softlimit
-rwxr-xr-x 276 root root 711984 Apr 30 2010 sort
-rwxr-xr-x 276 root root 711984 Apr 30 2010 split
-rwxr-xr-x 276 root root 711984 Apr 30 2010 start-stop-daemon
-rwxr-xr-x 276 root root 711984 Apr 30 2010 stat
-rwxr-xr-x 276 root root 711984 Apr 30 2010 strings
-rwxr-xr-x 276 root root 711984 Apr 30 2010 su
-rwxr-xr-x 276 root root 711984 Apr 30 2010 sulogin
-rwxr-xr-x 276 root root 711984 Apr 30 2010 sum
-rwxr-xr-x 276 root root 711984 Apr 30 2010 sv
-rwxr-xr-x 276 root root 711984 Apr 30 2010 svlogd
-rwxr-xr-x 276 root root 711984 Apr 30 2010 swapoff
-rwxr-xr-x 276 root root 711984 Apr 30 2010 swapon
-rwxr-xr-x 276 root root 711984 Apr 30 2010 switch_root
-rwxr-xr-x 276 root root 711984 Apr 30 2010 sysctl
-rwxr-xr-x 276 root root 711984 Apr 30 2010 syslogd
-rwxr-xr-x 276 root root 711984 Apr 30 2010 tac
-rwxr-xr-x 276 root root 711984 Apr 30 2010 tail
-rwxr-xr-x 276 root root 711984 Apr 30 2010 taskset
-rwxr-xr-x 276 root root 711984 Apr 30 2010 tcpsvd
-rwxr-xr-x 276 root root 711984 Apr 30 2010 tee
-rwxr-xr-x 276 root root 711984 Apr 30 2010 telnet
-rwxr-xr-x 276 root root 711984 Apr 30 2010 telnetd
-rwxr-xr-x 276 root root 711984 Apr 30 2010 test
-rwxr-xr-x 276 root root 711984 Apr 30 2010 tftp
-rwxr-xr-x 276 root root 711984 Apr 30 2010 tftpd
-rwxr-xr-x 276 root root 711984 Apr 30 2010 time
-rwxr-xr-x 276 root root 711984 Apr 30 2010 timeout
-rwxr-xr-x 276 root root 711984 Apr 30 2010 top
-rwxr-xr-x 276 root root 711984 Apr 30 2010 tr
-rwxr-xr-x 276 root root 711984 Apr 30 2010 traceroute
-rwxr-xr-x 276 root root 711984 Apr 30 2010 traceroute6
-rwxr-xr-x 276 root root 711984 Apr 30 2010 tty
-rwxr-xr-x 276 root root 711984 Apr 30 2010 ttysize
-rwxr-xr-x 276 root root 711984 Apr 30 2010 tunctl
-rwxr-xr-x 276 root root 711984 Apr 30 2010 tune2fs
-rwxr-xr-x 276 root root 711984 Apr 30 2010 udhcpd
-rwxr-xr-x 276 root root 711984 Apr 30 2010 udpsvd
-rwxr-xr-x 276 root root 711984 Apr 30 2010 uncompress
-rwxr-xr-x 276 root root 711984 Apr 30 2010 unexpand
-rwxr-xr-x 276 root root 711984 Apr 30 2010 uniq
-rwxr-xr-x 276 root root 711984 Apr 30 2010 unix2dos
-rwxr-xr-x 276 root root 711984 Apr 30 2010 unlzma
-rwxr-xr-x 276 root root 711984 Apr 30 2010 unlzop
-rwxr-xr-x 276 root root 711984 Apr 30 2010 unzip
-rwxr-xr-x 276 root root 711984 Apr 30 2010 uptime
-rwxr-xr-x 276 root root 711984 Apr 30 2010 uudecode
-rwxr-xr-x 276 root root 711984 Apr 30 2010 uuencode
-rwxr-xr-x 276 root root 711984 Apr 30 2010 vconfig
-rwxr-xr-x 276 root root 711984 Apr 30 2010 vlock
-rwxr-xr-x 276 root root 711984 Apr 30 2010 volname
-rwxr-xr-x 276 root root 711984 Apr 30 2010 wall
-rwxr-xr-x 276 root root 711984 Apr 30 2010 watchdog
-rwxr-xr-x 276 root root 711984 Apr 30 2010 wc
-rwxr-xr-x 276 root root 711984 Apr 30 2010 wget
-rwxr-xr-x 276 root root 711984 Apr 30 2010 which
-rwxr-xr-x 276 root root 711984 Apr 30 2010 who
-rwxr-xr-x 276 root root 711984 Apr 30 2010 whoami
-rwxr-xr-x 276 root root 711984 Apr 30 2010 xargs
-rwxr-xr-x 276 root root 711984 Apr 30 2010 yes
-rwxr-xr-x 276 root root 711984 Apr 30 2010 zcip
sorry for long post, hope to help!
Re: SqueezePlay for Joggler (Native, Ubuntu & sqpOS)
Having issues with connecting to the local library or mysqueezebox.com when I run either your version or another version of squeezeplayer under Ubuntu Raring x64. Any ideas what is happening here?
0130304 01:09:40.405 INFO squeezeplay.applets - AppletManager.lua:708 store settings: SetupLanguage
20130304 01:09:47.186 ERROR squeezeplay.applets - AppletManager.lua:749 SetupWelcome:free() returned nil
stack traceback:
/opt/squeezeplay/share/jive/jive/AppletManager.lua:749: in function '_freeApplet'
/opt/squeezeplay/share/jive/jive/Applet.lua:81: in function 'callback'
/opt/squeezeplay/share/jive/jive/ui/Widget.lua:656: in function '_event'
/opt/squeezeplay/share/jive/jive/ui/Window.lua:1890: in function </opt/squeezeplay/share/jive/jive/ui/Window.lua:1859>
[C 0x805f220]: in function 'dispatchEvent'
/opt/squeezeplay/share/jive/jive/ui/Widget.lu
20130304 01:09:53.478 INFO applet.SetupLanguage - SetupLanguageApplet.lua:195 Locale choice set to EN
20130304 01:09:53.695 INFO squeezeplay.applets - AppletManager.lua:708 store settings: SetupLanguage
20130304 01:09:55.603 INFO applet.SlimDiscovery - SlimDiscoveryApplet.lua:632 selected SqueezePlay
20130304 01:09:55.604 INFO applet.AlarmSnooze - AlarmSnoozeApplet.lua:306 notify_playerCurrent(LocalPlayer {SqueezePlay})
20130304 01:09:55.604 INFO applet.SlimMenus - SlimMenusApplet.lua:1162 SlimMenusApplet:notify_playerCurrent(LocalPlayer {SqueezePlay})
20130304 01:09:55.604 INFO applet.SlimMenus - SlimMenusApplet.lua:1194 player changed from:false to LocalPlayer {SqueezePlay} but server not yet present
20130304 01:09:55.604 INFO applet.SlimMenus - SlimMenusApplet.lua:1323 not registered or not yet connected with SN, so not fetching SN menus. connected:true
20130304 01:09:55.604 INFO applet.SelectPlayer - SelectPlayerApplet.lua:487 selectMusicSource
20130304 01:10:02.624 INFO applet.ChooseMusicSource - ChooseMusicSourceApplet.lua:648 connectPlayerToServer() LocalPlayer {SqueezePlay} SlimServer {mysqueezebox.com}
20130304 01:10:02.692 WARN net.comet - Comet.lua:888 Comet {mysqueezebox.com}: _response, /1X22b1099b27577b4c40aae16c62983ab7Xf0def16ed6e9X0X1362359372X645e7edc/slim/request id=2 failed: This player is already linked to another SqueezeNetwork account.
20130304 01:10:32.113 WARN net.thread - NetworkThread.lua:146 network thread timeout for Task(SocketHttp {squeezebox_Request}(R))
20130304 01:10:34.408 WARN applet.ChooseMusicSource - ChooseMusicSourceApplet.lua:634 Connection failure or Timeout, current count: 21
20130304 01:10:52.454 INFO applet.ChooseMusicSource - ChooseMusicSourceApplet.lua:648 connectPlayerToServer() LocalPlayer {SqueezePlay} SlimServer {squeezebox}
20130304 01:10:52.458 INFO squeezebox.server - SlimServer.lua:628 wakeOnLan(): Sending WOL to 52:54:00:4b:b0:22
20130304 01:10:52.459 INFO squeezebox.player - LocalPlayer.lua:203 connectToServer(): connecting localPlayer to serverSlimServer {squeezebox} via internal call
20130304 01:10:52.459 INFO net.slimproto - SlimProto.lua:592 connect to 192.168.0.231 (192.168.0.231)
20130304 01:10:52.461 WARN audio.decode - Playback.lua:143 Cannot find active network interface
20130304 01:10:52.462 INFO net.slimproto - SlimProto.lua:152 Send HELO: reconnect-bit=0 bytesReceived(H,L)=nil,nil
*EDIT* Looks like these tools aren't being maintained for use under desktop Linux OS, hunting for alternatives....
0130304 01:09:40.405 INFO squeezeplay.applets - AppletManager.lua:708 store settings: SetupLanguage
20130304 01:09:47.186 ERROR squeezeplay.applets - AppletManager.lua:749 SetupWelcome:free() returned nil
stack traceback:
/opt/squeezeplay/share/jive/jive/AppletManager.lua:749: in function '_freeApplet'
/opt/squeezeplay/share/jive/jive/Applet.lua:81: in function 'callback'
/opt/squeezeplay/share/jive/jive/ui/Widget.lua:656: in function '_event'
/opt/squeezeplay/share/jive/jive/ui/Window.lua:1890: in function </opt/squeezeplay/share/jive/jive/ui/Window.lua:1859>
[C 0x805f220]: in function 'dispatchEvent'
/opt/squeezeplay/share/jive/jive/ui/Widget.lu
20130304 01:09:53.478 INFO applet.SetupLanguage - SetupLanguageApplet.lua:195 Locale choice set to EN
20130304 01:09:53.695 INFO squeezeplay.applets - AppletManager.lua:708 store settings: SetupLanguage
20130304 01:09:55.603 INFO applet.SlimDiscovery - SlimDiscoveryApplet.lua:632 selected SqueezePlay
20130304 01:09:55.604 INFO applet.AlarmSnooze - AlarmSnoozeApplet.lua:306 notify_playerCurrent(LocalPlayer {SqueezePlay})
20130304 01:09:55.604 INFO applet.SlimMenus - SlimMenusApplet.lua:1162 SlimMenusApplet:notify_playerCurrent(LocalPlayer {SqueezePlay})
20130304 01:09:55.604 INFO applet.SlimMenus - SlimMenusApplet.lua:1194 player changed from:false to LocalPlayer {SqueezePlay} but server not yet present
20130304 01:09:55.604 INFO applet.SlimMenus - SlimMenusApplet.lua:1323 not registered or not yet connected with SN, so not fetching SN menus. connected:true
20130304 01:09:55.604 INFO applet.SelectPlayer - SelectPlayerApplet.lua:487 selectMusicSource
20130304 01:10:02.624 INFO applet.ChooseMusicSource - ChooseMusicSourceApplet.lua:648 connectPlayerToServer() LocalPlayer {SqueezePlay} SlimServer {mysqueezebox.com}
20130304 01:10:02.692 WARN net.comet - Comet.lua:888 Comet {mysqueezebox.com}: _response, /1X22b1099b27577b4c40aae16c62983ab7Xf0def16ed6e9X0X1362359372X645e7edc/slim/request id=2 failed: This player is already linked to another SqueezeNetwork account.
20130304 01:10:32.113 WARN net.thread - NetworkThread.lua:146 network thread timeout for Task(SocketHttp {squeezebox_Request}(R))
20130304 01:10:34.408 WARN applet.ChooseMusicSource - ChooseMusicSourceApplet.lua:634 Connection failure or Timeout, current count: 21
20130304 01:10:52.454 INFO applet.ChooseMusicSource - ChooseMusicSourceApplet.lua:648 connectPlayerToServer() LocalPlayer {SqueezePlay} SlimServer {squeezebox}
20130304 01:10:52.458 INFO squeezebox.server - SlimServer.lua:628 wakeOnLan(): Sending WOL to 52:54:00:4b:b0:22
20130304 01:10:52.459 INFO squeezebox.player - LocalPlayer.lua:203 connectToServer(): connecting localPlayer to serverSlimServer {squeezebox} via internal call
20130304 01:10:52.459 INFO net.slimproto - SlimProto.lua:592 connect to 192.168.0.231 (192.168.0.231)
20130304 01:10:52.461 WARN audio.decode - Playback.lua:143 Cannot find active network interface
20130304 01:10:52.462 INFO net.slimproto - SlimProto.lua:152 Send HELO: reconnect-bit=0 bytesReceived(H,L)=nil,nil
*EDIT* Looks like these tools aren't being maintained for use under desktop Linux OS, hunting for alternatives....
Last edited by belrik on Wed Apr 10, 2013 8:17 pm, edited 1 time in total.
Re: SqueezePlay for Joggler (Native, Ubuntu & sqpOS)
Roobabrb, just installed SqueezePlay distro and... IT'S GREAT!!! One of my J will have it, really a good job, congrats!!!
I have a little question, if someone have idea: we have two kind of installation, the usual image for USB drive and the image to be installed on the Joggler's flash, is there some benefit installing it on the Joggler? (I don't consider only the "free" external USB port, I'd like to know if we have benefits, better performance or whatever). Thanks, Leo
I have a little question, if someone have idea: we have two kind of installation, the usual image for USB drive and the image to be installed on the Joggler's flash, is there some benefit installing it on the Joggler? (I don't consider only the "free" external USB port, I'd like to know if we have benefits, better performance or whatever). Thanks, Leo
Re: SqueezePlay for Joggler (Native, Ubuntu & sqpOS)
Read about Squeezeplay OS at http://birdslikewires.co.uk/articles/squeezeplay-os - the bit under the headline "Instructions" gives a little idea of the benefits of internal versus USB installation.Leonardo wrote:Roobabrb, just installed SqueezePlay distro and... IT'S GREAT!!! One of my J will have it, really a good job, congrats!!!
I have a little question, if someone have idea: we have two kind of installation, the usual image for USB drive and the image to be installed on the Joggler's flash, is there some benefit installing it on the Joggler? (I don't consider only the "free" external USB port, I'd like to know if we have benefits, better performance or whatever). Thanks, Leo
Re: SqueezePlay for Joggler (Native, Ubuntu & sqpOS)
Thanks Gegs, I really missed this article!!! Good job!
- JimbobVFR400
- Posts: 264
- Joined: Fri Jul 20, 2012 8:39 pm
Re: SqueezePlay for Joggler (Native, Ubuntu & sqpOS)
If you want the free port but don't use the wifi you could always use the internal port that the wifi card normally uses. I run my main joggler using SqPOS like this.
Re: SqueezePlay for Joggler (Native, Ubuntu & sqpOS)
I know Jimbob, there are a lot of ways, "Hacking" it we can also add a USB port soldering four cables is not a problem, my thoughts were about a "virgin" Joggler, never opened!
Re: SqueezePlay for Joggler (Native, Ubuntu & sqpOS)
Hello everybody, I added to the rc.local the script I created to autoset brightness, doing this the SpeezePlayOS automatically sets the brightness, AFAIS this feature was not present on the image isn't it? Anyway you only have to add the "rls" binary (obtained compiling the readlightsensor.c with command: gcc -o rls readlightsensor.c) and put it with the autobright.sh wherever you like (just fix the path on the shell script). The module i2c_dev was automatically loaded!
-
- Posts: 711
- Joined: Sun May 13, 2012 4:42 pm
Re: SqueezePlay for Joggler (Native, Ubuntu & sqpOS)
Autobrightness on squeezeplay pnp and squeezeplay os is already there. It's in settings, screen, backlight. Unless you're talking about a different kind of autobright in which case, please ignore me.Leonardo wrote:Hello everybody, I added to the rc.local the script I created to autoset brightness, doing this the SpeezePlayOS automatically sets the brightness, AFAIS this feature was not present on the image isn't it? Anyway you only have to add the "rls" binary (obtained compiling the readlightsensor.c with command: gcc -o rls readlightsensor.c) and put it with the autobright.sh wherever you like (just fix the path on the shell script). The module i2c_dev was automatically loaded!
Re: SqueezePlay for Joggler (Native, Ubuntu & sqpOS)
Nono I mean autobright depending on the light sensor, I went around menus but I didn't see this feature, so I put mine on it! There are so many tools on this Distribution that I'm getting lost just to play some internet radio!!! Thank ILMJ!
-
- Posts: 711
- Joined: Sun May 13, 2012 4:42 pm
Re: SqueezePlay for Joggler (Native, Ubuntu & sqpOS)
Yes, that's what that setting does. Screen goes darker/brighter depending on the light in the room. Took me a while to figure that one out too.Leonardo wrote:Nono I mean autobright depending on the light sensor
Edit: or have I misundertood again?
- offbeatdave
- Posts: 1047
- Joined: Wed Mar 09, 2011 10:43 pm
Re: SqueezePlay for Joggler (Native, Ubuntu & sqpOS)
Settings->Screen->Backlight->Automaticilovemyjoggler wrote:Yes, that's what that setting does. Screen goes darker/brighter depending on the light in the room. Took me a while to figure that one out too.Leonardo wrote:Nono I mean autobright depending on the light sensor
Edit: or have I misundertood again?
"EVERY DAY I'M JOGGLERING!"
Jogglering since Dec '09;
Tinkering with Jogglers since Feb '10 thanks to PMJ, Jogtools, PnP & sqpOS;
Gave something back Feb '12 to Apr '14 with PnP Mk II & PnP III;
Finally 'completed' PnP III Apr '15!
Jogglering since Dec '09;
Tinkering with Jogglers since Feb '10 thanks to PMJ, Jogtools, PnP & sqpOS;
Gave something back Feb '12 to Apr '14 with PnP Mk II & PnP III;
Finally 'completed' PnP III Apr '15!
Re: SqueezePlay for Joggler (Native, Ubuntu & sqpOS)
Yes it's exactly what I meant: I was too goofy to find it and the your tip does exactly what I need 
I didn't browse all the menus so I missed this, now I changed the screen timeout, the background, the autobright and it's ok!
Sorry again!

I didn't browse all the menus so I missed this, now I changed the screen timeout, the background, the autobright and it's ok!
Sorry again!