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
  • Access to the BIOS is a hardware issue and not related to Ubuntu or to any OS for that matter. See the manufactures documentation for your PC or contact their support. – David Feb 22 '22 at 18:04
  • Look at sudo lshw --class audio and find your sound in system startup logs sudo journalctl -b 0 – waltinator Feb 22 '22 at 18:10
  • @waltinator there's statement with red colour said : x86/cpu: SGX disabled by BIOS. Is it the problem? – mahindo Feb 22 '22 at 18:31
  • @David I have contact them to check sound card availabity but they say unfortunately couldn't unhide Advanced Tab on BIOS :( – mahindo Feb 22 '22 at 18:32
  • Therefore its not a problem but the way it works. – David Feb 22 '22 at 18:36
  • @David So what should I do to fix this issue please? – mahindo Feb 22 '22 at 18:42
  • 1
    Please [edit] your post to add new information, properly formatted. Information added via comments is hard for you to format, hard for us to read and ignored by future readers (who have better answers). Please click [edit] and add that vital information to your question so all the facts we need are in the question. Please don't use Add Comment, since that's our way to help you improve your question. All facts about your system and problem should go in the Question with [edit]. You may click on any of these [edit] links to [edit] your question. – waltinator Feb 22 '22 at 19:07
  • @waltinator Noted. So related to your code, what should I put attention and what should I do to fix it. Thanks. – mahindo Feb 22 '22 at 19:18
  • So, after not following any of my suggestions, you now want more suggestions? – waltinator Feb 22 '22 at 19:43
  • @waltinator I do following your suggestions. Result of cod $sudo lshw --class audio I had put on edited question and for $sudo journalctl - b 0 there're long logs that I couldn't understand, that's why later I'm asking you what kind of logs that I must put attention since I'm new on Linux. – mahindo Feb 22 '22 at 23:24
  • I should have suggested sudo lshw --class sound As for the log entries, they are to be read one-by-one. You can see how your system discovers the current system hardware, including your sound hardware. – waltinator Feb 23 '22 at 00:20
  • @waltinator thank you for your swift response, but I still don't know how to fix my issue – mahindo Feb 23 '22 at 02:14
  • Related: https://askubuntu.com/a/1235880/1004020 – Daniel T Feb 29 '24 at 13:39

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