The officially official Devuan Forum!

You are not logged in.

#26 2023-08-10 11:41:25

vrgovinda
Member
Registered: 2023-06-14
Posts: 26  

Re: [SOLVED] HDMI - no sound output; microphone - no sound input

delgado wrote:

Just curious: Does the sound work in devuan when using /etc/modprobe.d/alsa-base.conf from ubuntu?

Tried that too!

Doesn't work.

Offline

#27 2023-08-10 18:34:16

andyp67
Member
Registered: 2022-10-30
Posts: 228  

Re: [SOLVED] HDMI - no sound output; microphone - no sound input

Hello vrgovinda,
patience be with us!
the archlinux sound documents are very excellent, the main two documents.

I am actually trying to 'configure' my new mini-pc (with it's spurious codec,) at the moment, so my input here is actually in practice say.
I don't think I am going to get sound line-out AND HDMI, I think I may have to settle for one or the other, we will see.

The last twenty-five years alsamixer has been good to me, pulseaudio is new to me.
I have apt-get --no-install-recommends install pavucontrol pulseaudio which pulls in all the required packages.
In addition I have made a folder _pa and in that folder I have downloaded the two packages pavucontrol and pulseaudio.
When I want to certainly work on alsa I, dpkg -P pavucontrol pulseaudio.
And when I want to work on pulseaudio I, dpkg -i -R _pa.
So I can keep trying, and don't have to be online.
When I do use pulseaudio I'm always in user not root, and I always pulseaudio --start | --kill
I always run alsamixer as it changes when I install/uninstall pulseaudio.
The sound file I work with is FILE.WAV, aplay in alsa plays WAV file.
vrgovinda, please keep trying with all those too many settings in alsamixer.
All this quasi pain is worth it to advance learning howto configure sound. I think!
Andrew.

Offline

#28 2023-08-11 08:58:20

vrgovinda
Member
Registered: 2023-06-14
Posts: 26  

Re: [SOLVED] HDMI - no sound output; microphone - no sound input

andyp67 wrote:

Hello vrgovinda,
patience be with us!
the archlinux sound documents are very excellent, the main two documents.

Oh yes! I'm very patient. At the same time, excited too. No problem. I'm also loving this learning. Else, I would've settled with the pre-installed OEM Ubuntu.

With Linux, one has to be patient and that is “mode of goodness”, according to the Bhagavad-gita.
At least, I got the HDMI sound output. That's a good deal.

Thank you so much Andy. You are a good soul.

Marking this post as solved, albeit partially. [HDMI only]

Regards,

Last edited by vrgovinda (2023-08-11 13:35:15)

Offline

#29 2025-06-29 00:45:05

vrgovinda
Member
Registered: 2023-06-14
Posts: 26  

Re: [SOLVED] HDMI - no sound output; microphone - no sound input

Just wanted to update.

I had recently installed Devuan Daedalus on another partition. Instead of tweaking /etc/modprobe.d/alsa-base.conf, I just installed firmware-sof-signed. Everything is working perfectly. I get a neat click-and-choose options beneath the volume icon and I can just choose the input and output devices. That's super convenient.

I tried this in the other partition which had Daedalus and on which I was trying to play around. But microphone input still doesn't work. Maybe I have forgotten all that I have changed and don't know how to get back to the default configs.

So my mantra is : Next time I install Devuan on an Intel machine, I'll first install firmware-sof-signed and check if everthing is alright. If some issues exist, I'll try other options. Don't know what is the mantra for AMD machines.

Offline

#30 2025-06-29 11:27:17

igorzwx
Member
Registered: 2024-05-06
Posts: 174  

Re: [SOLVED] HDMI - no sound output; microphone - no sound input

Post the output of fuser and inxi:

fuser -av $(find /dev/snd -type c 2>/dev/null)
inxi -A

inxi: everything you need to know about your computer
_https://easylinuxtipsproject.blogspot.com/p/inxi.html

sudo apt install inxi

Offline

#31 2025-06-29 16:23:21

vrgovinda
Member
Registered: 2023-06-14
Posts: 26  

Re: [SOLVED] HDMI - no sound output; microphone - no sound input

Thanks for your time, igorzwx

#New installation - everything works flawlessly.

fuser -av $(find /dev/snd -type c 2>/dev/null)
                     USER        PID ACCESS COMMAND
/dev/snd/controlC0:  vrgovinda   2397 F.... pulseaudio
/dev/snd/hwC0D0:
/dev/snd/hwC0D2:
/dev/snd/pcmC0D5p:
/dev/snd/pcmC0D4p:
/dev/snd/pcmC0D3p:
/dev/snd/pcmC0D31p:
/dev/snd/pcmC0D0c:
/dev/snd/pcmC0D0p:   vrgovinda   2397 F...m pulseaudio
/dev/snd/pcmC0D7c:
/dev/snd/pcmC0D6c:
/dev/snd/seq:
/dev/snd/timer:
inxi -A
Audio:
  Device-1: Intel Tiger Lake-LP Smart Sound Audio
    driver: sof-audio-pci-intel-tgl
  API: ALSA v: k6.1.0-10-amd64 status: kernel-api
  Server-1: PulseAudio v: 16.1 status: active

 
# Old installation - no microphone input

fuser -av $(find /dev/snd -type c 2>/dev/null)
                     USER        PID ACCESS COMMAND
/dev/snd/controlC0:  vrgovinda   2761 F.... pulseaudio
/dev/snd/hwC0D0:
/dev/snd/hwC0D2:
/dev/snd/pcmC0D5p:
/dev/snd/pcmC0D4p:
/dev/snd/pcmC0D3p:
/dev/snd/pcmC0D31p:
/dev/snd/pcmC0D0c:   vrgovinda   2761 F...m pulseaudio
/dev/snd/pcmC0D0p:   vrgovinda   2761 F...m pulseaudio
/dev/snd/pcmC0D7c:
/dev/snd/pcmC0D6c:
/dev/snd/seq:
/dev/snd/timer:
inxi -A
Audio:
  Device-1: Intel Tiger Lake-LP Smart Sound Audio
    driver: sof-audio-pci-intel-tgl
  API: ALSA v: k6.1.0-10-amd64 status: kernel-api
  Server-1: PulseAudio v: 16.1 status: active

Offline

#32 2025-06-29 16:33:08

igorzwx
Member
Registered: 2024-05-06
Posts: 174  

Re: [SOLVED] HDMI - no sound output; microphone - no sound input

It seems that the problem was in pulseaudio.
It means that sound may disappear in any moment.

Offline

#33 2025-06-29 16:36:20

golinux
Administrator
Registered: 2016-11-25
Posts: 3,453  

Re: [SOLVED] HDMI - no sound output; microphone - no sound input

igorzwx wrote:

It seems that the problem was in pulseaudio.

Repeated for truth! It has always been so from day one!

Offline

#34 2025-06-29 17:52:28

greenjeans
Member
Registered: 2017-04-07
Posts: 975  
Website

Re: [SOLVED] HDMI - no sound output; microphone - no sound input

^^^For sure, it's been junk since the get-go.

Last time I installed Devuan and chose Mate in the software section, it automatically included pulseaudio. Really IMO no "sound server" should be included on install of any DE, but at the least Devuan ought to de-couple pulseaudio from the Mate metapackage and at least use pipewire instead.

Me I never run anything but pure alsa. Works just fine.

Last edited by greenjeans (2025-06-29 17:52:52)


https://sourceforge.net/projects/vuu-do/ New Vuu-do isos uploaded April 2025!
Vuu-do GNU/Linux, minimal Devuan-based Openbox and Mate systems to build on. Also a max version for OB.
Devuan 5 mate-mini iso, pure Devuan, 100% no-vuu-do. wink Devuan 6 version also available for testing.
Please donate to support Devuan and init freedom! https://devuan.org/os/donate

Offline

#35 2025-06-29 19:06:56

igorzwx
Member
Registered: 2024-05-06
Posts: 174  

Re: [SOLVED] HDMI - no sound output; microphone - no sound input

All problems with Mate (Gnome2) and ALSA were already solved in 2009 (Mate is a fork of Gnome2).
gnome-media (deb) was recompiled and patched by the OSS4 community.

Today, if you remove PulseAudio, Mate will install PipeWire (and other way round).
If you remove them both, Mate will automatically enable ALSA for mate-settings-daemon and mate-volume-control-status-icon (sound applet in the tray)

$ sudo apt-get purge pulseaudio pulseaudio-utils pavucontrol pulseaudio-module-bluetooth pipewire pipewire-bin pipewire-pulse

This will also remove "mate-desktop-environment". It is a meta-package which can be safely removed.
Then, you have to reboot, or kill pulseaudio and reload ALSA

$ sudo /etc/init.d/alsa-utils force-reload
Shutting down ALSA...done.
Setting up ALSA...done. 

On Linix Mint MATE, you should also remove pipewire-alsa, etc.

➤ fuser -av $(find /dev/snd -type c 2>/dev/null)
                     USER        PID ACCESS COMMAND
/dev/snd/controlC0:  igor       2245 F.... mate-settings-d
                     igor       2344 F.... mate-volume-con
/dev/snd/pcmC0D0c:
/dev/snd/pcmC0D0p:   igor       3166 F...m firefox-esr
/dev/snd/seq:
/dev/snd/timer:      igor       3166 f.... firefox-esr
➤ ps -A u | grep mate-volume-con
igor      2344  0.0  0.7 483040 59088 ?        Sl   16:27   0:10 mate-volume-control-status-icon
➤ ps -A u | grep mate-settings-d
igor      2245  0.1  0.6 968348 53544 ?        Sl   16:27   0:28 /usr/bin/mate-settings-daemon
➤ apt-file find /usr/bin/mate-volume-control-status-icon 
mate-media: /usr/bin/mate-volume-control-status-icon
➤ apt info mate-media
Package: mate-media
...
Description: MATE media utilities
 MATE media utilities are the audio mixer and the volume
 control applet.

See also:
_https://dev1galaxy.org/viewtopic.php?pid=49837#p49837

Last edited by igorzwx (2025-06-29 21:44:17)

Offline

Board footer