Sound is generally working, but not in the Phoniebox #2267
-
Hello and thanks a lot for this great application, this is my first contribution in the forum, so hopefully I do everything correct ... I work with a Raspberry 3B without a sound card. My install is without spotify. I downloaded the legacy release mentioned on the page and the imager and installed it on the Micro-SD.
After a reboot I didn't hear the startup sound, which I was used to from my previous installs. Neither did I hear a second beep from the Phoniebox. If I play the same file outside the phoniebox I can hear it. Mainly two things were different this time:
The problem is similar to Issue 561, but the solution mentioned there didn't work for me. By now I tried it several times with various settings and on two different Raspis, I cannot solve the problem. Could you possibly help me out? |
Beta Was this translation helpful? Give feedback.
Replies: 13 comments 24 replies
-
The first text was incomplete. I forgot
|
Beta Was this translation helpful? Give feedback.
-
Please check, if the name is „Headphones“ (attention to the plural S!) in |
Beta Was this translation helpful? Give feedback.
-
I read about this plural earlier and changed it in mpd.conf, but only in one file. Now I changed all three - but nothing changed. |
Beta Was this translation helpful? Give feedback.
-
Can you post the output of |
Beta Was this translation helpful? Give feedback.
-
This is mine: Simple mixer control 'Master',0 |
Beta Was this translation helpful? Give feedback.
-
I just got this: tail: cannot open '/var/log/syslog' for reading: No such file or directory |
Beta Was this translation helpful? Give feedback.
-
these are the files I have in /var/log alternatives.log cups lastlog samba |
Beta Was this translation helpful? Give feedback.
-
Yes, mine is identical. Everything is commented out except
|
Beta Was this translation helpful? Give feedback.
-
I'm I right that you are using the "desktop" version of Raspberry Pi OS? |
Beta Was this translation helpful? Give feedback.
-
I've just done a fresh install on bullseye lite 32, and it is working perfectly. Many thanks for your help in this. |
Beta Was this translation helpful? Give feedback.
-
Uh. After an install of the lite version I finally get the startup sound, so it seems to be working. But apart from that everything else seems to become way more complicated. Apart from the fact that I must have done something wrong during the installation process, because I can't connect via VNC or Filezilla, the registering of the rfid-cards sounds wild. I hope I can learn it within the next few days, but a working desktop install would be highly appreciated. I admit I'm rather a desktop person. :-) But anyway, thanks a lot so far for figuring out what the problem is. ;-) What a great and helpful community. |
Beta Was this translation helpful? Give feedback.
-
I've also been struggling without vnc because there's nothing on the Pi to
connect to, but I found winscp is a good sftp client.
…On Mon, 19 Feb 2024, 21:56 mag-1sm, ***@***.***> wrote:
Uh. After an install of the lite version I finally get the startup sound,
so it seems to be working. But apart from that everything else seems to
become way more complicated. Apart from the fact that I must have done
something wrong during the installation process, because I can't connect
via VNC or Filezilla, the registering of the rfid-cards sounds wild.
I hope I can learn it within the next few days, but a working desktop
install would be highly appreciated. I admit I'm rather a desktop person.
:-)
But anyway, thanks a lot so far for figuring out what the problem is. ;-)
What a great and helpful community.
—
Reply to this email directly, view it on GitHub
<#2267 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AKVCV3ZQPYTQNGHKUGHEL5DYUPDAFAVCNFSM6AAAAABDOLTDOGVHI2DSMVQWIX3LMV43SRDJONRXK43TNFXW4Q3PNVWWK3TUHM4DKMRSGQ3TG>
.
You are receiving this because you commented.Message ID:
***@***.***
com>
|
Beta Was this translation helpful? Give feedback.
-
I'm not at all familiar with using a terminal window, so I tried the simplest thing first.
with:
And much to my surprise, that's all it took. Working with sound now and still have desktop environment. |
Beta Was this translation helpful? Give feedback.
I took a closer look into this:
It seems that since bookworm the audio device order has changed for the "desktop" version (maybe caused by "Pipewire"?). This causes the error for the playback (before "bcm*" was id 0, now its id 1).
To fix this the default audio device can be changed using the "/etc/asound.conf" file, like described here.
sudo nano /etc/asound.conf
Also there is a bug in the interface selection during the setup. For the "desktop" version the result differs for
amixer scontrols
andsudo amixer scontrols
. As the mpd service is run as root the output ofsudo amixer scontrols
has to be used to fun…