ALLO BOSS 2 PLAYER

no. I think boss2 uses RPI4. So it would be microhdmi. I have RPI4 and I use micro-hdmi here.
You're right, Boss 2 has the RPI4. Thank you for the clarification on the correct cable to be used. I'm fairly new to all of this streaming/network stuff coming from old-fashioned CDs/LPs :p
 
@rajivaryan1984 tagging you here since you have purcased a BOSS2. One of the things that you need is a hdmi to micro hdmi cable to connect your boss2 to a display. This is not normally needed, but is a very usefull thing to have in case something goes wrong.
 
I don't think a portable HDD is so fragile to get corrupted so easily. Doesn't it spin down completely once the light goes off. How would a SSD be superior. With corruption wouldn't the data be gone in a flash.
RPi just stops the power to the USB powered HDD once we initiate shutdown. So the HDD would just stop spinning abruptly which could cause the head to freeze. Once we again power the HDD the head takes the command and resume.

RPi has no solution or option to spin down the HDD before the Shutdown.

On other hand SDD works on memory cell, so doesnt have any mechanical interruption to create damage during the powerdown.

I am just sharing my experience, as once my HDD corrupted when i disconnected sometimes while disk was spinning ( connected to Laptop)
 
RPi just stops the power to the USB powered HDD once we initiate shutdown. So the HDD would just stop spinning abruptly which could cause the head to freeze. Once we again power the HDD the head takes the command and resume.
RPI4 has a bug where it doesn't shutdown the power to the USB3.0 ports when shutdown. So a disk connnected to USB3.0 will always remain on. If the disk is self powered than OK. But if it is being powered by RPI and you disconnect the power cable after shutdown, the hard disk may crash. This is a hardware design flaw in RPI4. What I have done is use a utility named uhubctl to get called during shutdown to switch off the power to the usb3.0. This causes my externally powered seagate disk to spin down and power off when it sees no power on the usb cable.

RPi has no solution or option to spin down the HDD before the Shutdown.

On other hand SDD works on memory cell, so doesnt have any mechanical interruption to create damage during the powerdown.
Yes. The only problem with SSD is capacity. In my case it would be prohibitively expensive to have 4Tb of SSD.

I am just sharing my experience, as once my HDD corrupted when i disconnected sometimes while disk was spinning ( connected to Laptop)
Yes. The this can happen especially when a write is happening and you remove power to the hard disk. The head will crash on the platter and cause definite damage, data corruption and in worse case, the hard disk will become unusable.
 
This is what I do for ensuring the hard disk spins down after power off of raspberry pi

1) Download and compile uhubctl
$ mkdir /home/pi/src; cd /home/pi/src
$ git clone https://github.com/mvp/uhubctl.git
$ cd uhubctl
$ make
cc -g -O0 -Wall -Wextra -std=c99 -pedantic -DPROGRAM_VERSION=\"2.2.0-2-ge1718135\" uhubctl.c -o uhubctl -Wl,-zrelro,-znow -lusb-1.0
$ sudo cp uhubctl /usr/bin

2. Create the following systemd usb-shutdown service in /usr/lib/systemd/system/usb-shutdown.service
[Unit]
Description=Turns off usb3.0 ports on shutdown/reboot
DefaultDependencies=no
After=umount.target

[Service]
Type=oneshot
ExecStart=/home/pi/bin/usb_shutdown

[Install]
WantedBy=reboot.target halt.target poweroff.target

3. Enable usb-shutdown.service
$ systemctl enable usb-shutdown.service

4. Create the following script to shutdown usb port on shutdown in /home/pi/bin/usb_shutdown
#!/bin/sh

systemctl stop svscan mpd smbd nmbd nfs.service
sync
umount /home/pi/MDrive
(
/usr/sbin/uhubctl -l 2 -a 0
/usr/sbin/uhubctl -l 1 -p 1 -a 0
) >/dev/null
exit 0

5. Set the executable bit for /home/pi/bin/usb_shutdown
$ chmod +x /home/pi/bin/usb_shutdown
 
Does this utility spin-down the HDD? Before the RPi gets shoutdown? or Just a powerdown happens to the HDD
It just powers off the 5v from the usb port. Most disks power off after a period of inactivity when they no longer see power on the usb cable. If you don't use uhubctl on RPI4, the hard disk connected to usb3 port forever remains on.

EDIT
This problem will not be faced if you connect the hard disk to usb 2.0 port or RPI3 and below.
 
Does this utility spin-down the HDD? Before the RPi gets shoutdown? or Just a powerdown happens to the HDD
Someone is using almost the same method that I use for powering off the usb. He additionally uses hdparm to spin down the disk

 
Sharing my recent experience so that other Allo Boss 2 users do not make the same mistake...

Right from day one until last evening, I have been merrily connecting to / controlling the Boss from Android despite a wrong connection between my home router and Boss which I'll explain below. Murphy's law caught up yesterday. Android suddenly wouldn't connect to MoOde and neither would the desktop, both stubbornly showing the same error screen.
Screenshot_20211229-203303_Chrome.jpg So I turned off/on the router hoping that would help but to no avail. Desperate to have music last night as we were celebrating my aunt's 72nd birthday, I called w2h tech support. We started troubleshooting by pinging the IP address ( which was functional earlier) from desktop cmd prompt. Thankfully ping went through with no packet loss hence the bewilderment. We discovered the culprit - the comfast wifi dongle AND the LAN were both simultaneously connected to the Boss! I disconnected the wifi dongle and retained the LAN connection. Proceeding to check DHCP clients listing in the router homepage, MoOde now showed up as a distinct client with an assigned IP address besides the other client devices which are all on the same network. He explained that earlier, the router had assigned 2 different IP addresses i.e. one for the wifi dongle and the other for the LAN connection and hence this had caused a conflict thus resulting in a connection breakdown via android and desktop. This seems to make perfect sense as iirc when I had checked the DHCP client listing prior to last evening, MoOde did not show up distinctly as a client but under a garbled alphanumeric title with the assigned earlier functional IP address. Not that it rang any alarm bells back then. I now understand that the wifi dongle is to be used only in those situations where it is not possible to physically connect the router to the Boss via the LAN which obviously implies that the wifi connection between router/Boss becomes the only solution. If the router can be physically connected to the Boss via the LAN, then that is the only way the connection should be made. The wifi dongle should not be simultaneously connected. Anyways...we are back to Allo music land ! :cool:
 
Has anyone had success with Spotify connect on Moode? It works fine on my Boss 2 thru airplay but if I use Spotify connect I don't get any sound output. Have tried all the usual hacks - restart renderer, software update, etc.
 
Has anyone had success with Spotify connect on Moode? It works fine on my Boss 2 thru airplay but if I use Spotify connect I don't get any sound output. Have tried all the usual hacks - restart renderer, software update, etc.
Try increasing the volume from your mobile's volume rocker. The default volume is 0.
 
Sharing my recent experience so that other Allo Boss 2 users do not make the same mistake...

Right from day one until last evening, I have been merrily connecting to / controlling the Boss from Android despite a wrong connection between my home router and Boss which I'll explain below. Murphy's law caught up yesterday. Android suddenly wouldn't connect to MoOde and neither would the desktop, both stubbornly showing the same error screen.
View attachment 65718 I now understand that the wifi dongle is to be used only in those situations where it is not possible to physically connect the router to the Boss via the LAN which obviously implies that the wifi connection between router/Boss becomes the only solution. If the router can be physically connected to the Boss via the LAN, then that is the only way the connection should be made. The wifi dongle should not be simultaneously connected. Anyways...we are back to Allo music land ! :cool:
Yes connecting via Lan is the better way to hook any streamer in the chain. An additional step that you can do in your router is to Assign a Fixed IP to your streamer, so that in the future if for some reason the router or the streamer is restarted, it gets the same IP. It is easy to connect to your main components too. I have fixed IPs for my computer, Digione, and my mobile. Just makes life easy when I have to connect to any of them using the IP.

MaSh
 
It mostly because of the volume control in Spotify app only... by default it will be zero, though you can adjust it in the Moode Spotify renderer settings.
 
Yes connecting via Lan is the better way to hook any streamer in the chain. An additional step that you can do in your router is to Assign a Fixed IP to your streamer, so that in the future if for some reason the router or the streamer is restarted, it gets the same IP. It is easy to connect to your main components too. I have fixed IPs for my computer, Digione, and my mobile. Just makes life easy when I have to connect to any of them using the IP.

MaSh
Thanks @MaSh Expectedly, the router assigned a new IP address and the earlier one obviously wouldn't work. IMO this isn't a big deal as instead of remembering IP addresses everytime
to start MoOde, the easy workaround is to simply enter http://moode.local and that opens the MoOde home screen.
 
Thanks @MaSh Expectedly, the router assigned a new IP address and the earlier one obviously wouldn't work. IMO this isn't a big deal as instead of remembering IP addresses everytime
to start MoOde, the easy workaround is to simply enter http://moode.local and that opens the MoOde home screen.
Oh yes, if you have the hostname working, then you are sorted. But there will be times when you would want to connect to the device to make some changes to a file or something, then you don't want to be hunting for the IP. Same goes for a NAS device too, a fixed IP helps.

MaSh
 
Try increasing the volume from your mobile's volume rocker. The default volume is 0.
It mostly because of the volume control in Spotify app only... by default it will be zero, though you can adjust it in the Moode Spotify renderer settings.
The MoOde spotify android volume slider is set to min by default. I had to slide it to the right to begin playing an album.

Screenshot_20220110-203734_Spotify.jpg
 
The Marantz PM7000N offers big, spacious and insightful sound, class-leading clarity and a solid streaming platform in a award winning package.
Back
Top