1

I am new on Linux, running Ubuntu 20.04.4 LTS without other OS. I found out that my output audio is dummy and no analog sound card had found. I'm not sure what is the cause. These are command output :

$ alsamixer

enter image description here

$ pavucontrol

enter image description here

$ lspci -v | grep -A7 -i "audio"
00:0e.0 Multimedia audio controller: Intel Corporation Device 3198 (rev 06)
    DeviceName: Onboard - Sound
    Subsystem: Intel Corporation Device 3198
    Flags: bus master, fast devsel, latency 0, IRQ 127
    Memory at a1110000 (64-bit, non-prefetchable) [size=16K]
    Memory at a1000000 (64-bit, non-prefetchable) [size=1M]
    Capabilities: <access denied>
    Kernel driver in use: snd_hda_intel
$ aplay -l
**** List of PLAYBACK Hardware Devices ****
card 0: PCH [HDA Intel PCH], device 3: HDMI 0 [HDMI 0]
  Subdevices: 1/1
  Subdevice #0: subdevice #0
card 0: PCH [HDA Intel PCH], device 7: HDMI 1 [HDMI 1]
  Subdevices: 1/1
  Subdevice #0: subdevice #0
card 0: PCH [HDA Intel PCH], device 8: HDMI 2 [HDMI 2]
  Subdevices: 1/1
  Subdevice #0: subdevice #0
card 0: PCH [HDA Intel PCH], device 9: HDMI 3 [HDMI 3]
  Subdevices: 1/1
  Subdevice #0: subdevice #0
card 0: PCH [HDA Intel PCH], device 10: HDMI 4 [HDMI 4]
  Subdevices: 1/1
  Subdevice #0: subdevice #0
$ uname -r
5.13.0-30-generic
$ sudo lshw
        *-multimedia
             description: Multimedia audio controller
             product: Intel Corporation
             vendor: Intel Corporation
             physical id: e
             bus info: pci@0000:00:0e.0
             version: 06
             width: 64 bits
             clock: 33MHz
             capabilities: pm msi pciexpress bus_master cap_list
             configuration: driver=snd_hda_intel latency=0
             resources: irq:127 memory:a1110000-a1113fff memory:a1000000-a10fffff
$ sudo lshw  -class  audio
  *-multimedia              
       description: Multimedia audio controller
       product: Intel Corporation
       vendor: Intel Corporation
       physical id: e
       bus info: pci@0000:00:0e.0
       version: 06
       width: 64 bits
       clock: 33MHz
       capabilities: pm msi pciexpress bus_master cap_list
       configuration: driver=snd_hda_intel latency=0
       resources: irq:127 memory:a1110000-a1113fff memory:a1000000-a10fffff
  *-usb:1
       description: Video
       product: USB Camera
       vendor: Generic
       physical id: 5
       bus info: usb@1:5
       version: 0.01
       serial: 200901010001
       capabilities: usb-2.01
       configuration: driver=uvcvideo maxpower=500mA speed=480Mbit/s

I have tried :

...and other suggestions that I had found and I even couldn't remember the links, but still not works.

Also I couldn't access Advanced Tab on BIOS to see if my sound card had been disable accidentally since manufacture hide/ disable it.

Please kindly help me.

Your answer would be highly appreciated.

mahindo
  • 11

1 Answers1

0

Same issue with Xubuntu 23.04 on my Minis Forum GK41. I've try a lot of solution for a day and finally resolved wit this link: https://www.linuxuprising.com/2018/06/fix-no-sound-dummy-output-issue-in.html

Basically you need to edit two files like explained in the second part of the guide.

  1. Edit /etc/modprobe.d/alsa-base.conf as root and add options snd-hda-intel dmic_detect=0 at the end of this file.

  2. Edit /etc/modprobe.d/blacklist.conf as root and add blacklist snd_soc_skl at the end of the file.

  3. After making these changes, reboot your system.

To be precise now the Audio Output works with HDMI, still can't use my audio jack, but hey... that was what I need!

Regards