Announcement

Collapse
No announcement yet.

Is there a way to revert linux kernel version?

Collapse
This topic is closed.
X
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    [DESKTOP] Is there a way to revert linux kernel version?

    Hello,

    Earlier this month my motherboard died. My computer build at the time was almost 10 years old so decided to buy new parts; I now have i7 10700k on a MSI MAG z790 Tomahawk. I also bought a 1TB m.2 drive for my linux install

    The problem is that after installing Kubuntu, the speakers stopped working. I see a "Dummy Device". I found a sticky on this forum where someone mentioned that a kernel update broke a lot of sound devices. Running the version of Kubuntu live from USB doesn't break the audio device. The kernel version on that is 5.4.0-26-generic. My current kernel version is 5.11.0-27-generic. I think that during installation it downloaded the recent update of the kernel.

    My knowledge of kernel isn't that advanced yet. Wondering if it's possible to revert the kernel version back or is there an easier fix?

    Thanks

    Last edited by Skava; Aug 21, 2021, 10:40 AM.

    #2
    You *should* have the option to boot to the original 5.4 kernel in your grub menu, so testing the original kernel should be quite simple.


    Code:
    $ apt search linux-image | grep installed
    
    WARNING: apt does not have a stable CLI interface. Use with caution in scripts.
    
    linux-image-5.11.0-25-generic/focal-security,focal-updates,now 5.11.0-25.27~20.04.1 amd64 [installed,automatic]
    linux-image-5.11.0-27-generic/focal-security,focal-updates,now 5.11.0-27.29~20.04.1 amd64 [installed,automatic]
    linux-image-5.4.0-81-generic/focal-security,focal-updates,now 5.4.0-81.91 amd64 [installed,automatic]
    linux-image-generic/focal-security,focal-updates,now 5.4.0.81.85 amd64 [installed,automatic]
    linux-image-generic-hwe-20.04/focal-security,focal-updates,now 5.11.0.27.29~20.04.11 amd64 [installed,automatic]

    If you don't have a 5.4 here, just install the linux-image-generic package, which will pull in the 5.4 kernel and modules, etc.

    sudo apt install --install-recommends linux-generic
    If you are happy, and do wan to get rid of the 5.11 kernels altogether
    Code:
    sudo apt remove --purge linux-generic-hwe-20.04 linux-oem-20.04 linux-hwe-* linux-oem-* linux-modules-5.1* linux-modules-5.8.0-* linux-modules-5.6.0-* 
    sudo apt autoremove
    I don't recommend this, as it is a good idea to keep the current kernel in case the problem is not the HWE kernel at all, and to have a good fallback

    Updating normally will keep both the 5.4 and the 5.11 with all the security updates and fixes. Down the road, the 5.11 will be upgraded to 5.13, however. The 5.4 will stay put.





    source: https://wiki.ubuntu.com/Kernel/LTSEn...tStack#Desktop

    Comment


      #3
      The thing is my speaker doesn't get detected at all unless I use 5.4. Is there a way to boot into 5.4 automatically instead of 5.11 without deleting any of the kernels?

      I still don't know why my speakers don't work in 5.11.0.27-generic, what should I look into fix this?

      Comment


        #4
        Originally posted by Skava View Post
        The thing is my speaker doesn't get detected at all unless I use 5.4. Is there a way to boot into 5.4 automatically instead of 5.11 without deleting any of the kernels?

        I still don't know why my speakers don't work in 5.11.0.27-generic, what should I look into fix this?
        When you say "speaker" are you actually referring to your audio chip? You can plug different kinds of speakers into the audio out jack on the side of your computer.

        You can determine IF your audio chip is being recognizes by looking for the "multimeida" section in the "sudo lshw" output. Mine shows:
        Code:
        [FONT=monospace][COLOR=#000000]  *-multimedia [/COLOR]
                     description: Audio device 
                     product: 7 Series/C216 Chipset Family High Definition Audio Controller 
                     vendor: Intel Corporation 
                     physical id: 1b 
                     bus info: pci@0000:00:1b.0 
                     version: 04 
                     width: 64 bits 
                     clock: 33MHz 
                     capabilities: pm msi pciexpress bus_master cap_list 
                     configuration: driver=[B][COLOR=#ff0000]snd_hda_intel[/COLOR][/B] latency=0 
                     resources: irq:34 memory:d3610000-d3613fff
        [/FONT]

        and shows my audio driver to be snd_hda_intel. Yours may be different. If you cannot find an audio section in your lshw listing then you can assume that your audio chip wasn't recognized and hence neither will any speakers plugged into your audio out jack work.

        Using lsmod I can show my audio chip driver, and drivers dependent on it, are installed and working:
        $ lsmod | grep snd
        Code:
        [COLOR=#ff5454][B]snd[/B][/COLOR][COLOR=#000000]_hda_codec_hdmi     61440  1 [/COLOR]
        [COLOR=#ff5454][B]snd[/B][/COLOR][COLOR=#000000]_hda_codec_realtek   131072  1 [/COLOR]
        [COLOR=#ff5454][B]snd[/B][/COLOR][COLOR=#000000]_hda_codec_generic    81920  1 [/COLOR][COLOR=#ff5454][B]snd[/B][/COLOR][COLOR=#000000]_hda_codec_realtek [/COLOR]ledtrig_audio          16384  2 [COLOR=#ff5454][B]snd[/B][/COLOR][COLOR=#000000]_hda_codec_generic,[/COLOR][COLOR=#ff5454][B]snd[/B][/COLOR][COLOR=#000000]_hda_codec_realtek [/COLOR]
        [B][COLOR=#ff0000]snd_hda_intel[/COLOR] [/B][COLOR=#000000]         53248  2 [/COLOR]
        [COLOR=#ff5454][B]snd[/B][/COLOR][COLOR=#000000]_intel_dspcfg       28672  1[/COLOR][COLOR=#000000]snd_hda_intel [/COLOR]
        [COLOR=#ff5454][B]snd[/B][/COLOR][COLOR=#000000]_hda_codec         135168  4 [/COLOR][COLOR=#ff5454][B]snd[/B][/COLOR][COLOR=#000000]_hda_codec_generic,[/COLOR][COLOR=#ff5454][B]snd[/B][/COLOR][COLOR=#000000]_hda_codec_hdmi,[/COLOR][COLOR=#ff5454][B]snd[/B][/COLOR][COLOR=#000000]_hda_intel,[/COLOR][COLOR=#ff5454][B]snd[/B][/COLOR][COLOR=#000000]_hda_codec_realtek [/COLOR]
        [COLOR=#ff5454][B]snd[/B][/COLOR][COLOR=#000000]_hda_core           90112  5 [/COLOR][COLOR=#ff5454][B]snd[/B][/COLOR][COLOR=#000000]_hda_codec_generic,[/COLOR][COLOR=#ff5454][B]snd[/B][/COLOR][COLOR=#000000]_hda_codec_hdmi,[/COLOR][COLOR=#ff5454][B]snd[/B][/COLOR][COLOR=#000000]_hda_intel,[/COLOR][COLOR=#ff5454][B]snd[/B][/COLOR][COLOR=#000000]_hda_codec,[/COLOR][COLOR=#ff5454][B]snd[/B][/COLOR][COLOR=#000000]_hda_[/COLOR]codec_realtek 
        [COLOR=#ff5454][B]snd[/B][/COLOR][COLOR=#000000]_hwdep              20480  1 [/COLOR][COLOR=#ff5454][B]snd[/B][/COLOR][COLOR=#000000]_hda_codec [/COLOR]
        [COLOR=#ff5454][B]snd[/B][/COLOR][COLOR=#000000]_pcm               106496  4 [/COLOR][COLOR=#ff5454][B]snd[/B][/COLOR][COLOR=#000000]_hda_codec_hdmi,[/COLOR][COLOR=#ff5454][B]snd[/B][/COLOR][COLOR=#000000]_hda_intel,[/COLOR][COLOR=#ff5454][B]snd[/B][/COLOR][COLOR=#000000]_hda_codec,[/COLOR][COLOR=#ff5454][B]snd[/B][/COLOR][COLOR=#000000]_hda_core [/COLOR]
        [COLOR=#ff5454][B]snd[/B][/COLOR][COLOR=#000000]_seq_midi           20480  0 [/COLOR]
        [COLOR=#ff5454][B]snd[/B][/COLOR][COLOR=#000000]_seq_midi_event     16384  1 [/COLOR][COLOR=#ff5454][B]snd[/B][/COLOR][COLOR=#000000]_seq_midi [/COLOR]
        [COLOR=#ff5454][B]snd[/B][/COLOR][COLOR=#000000]_rawmidi            36864  1 [/COLOR][COLOR=#ff5454][B]snd[/B][/COLOR][COLOR=#000000]_seq_midi [/COLOR]
        [COLOR=#ff5454][B]snd[/B][/COLOR][COLOR=#000000]_seq                69632  2 [/COLOR][COLOR=#ff5454][B]snd[/B][/COLOR][COLOR=#000000]_seq_midi,[/COLOR][COLOR=#ff5454][B]snd[/B][/COLOR][COLOR=#000000]_seq_midi_event [/COLOR]
        [COLOR=#ff5454][B]snd[/B][/COLOR][COLOR=#000000]_seq_device         16384  3 [/COLOR][COLOR=#ff5454][B]snd[/B][/COLOR][COLOR=#000000]_seq,[/COLOR][COLOR=#ff5454][B]snd[/B][/COLOR][COLOR=#000000]_seq_midi,[/COLOR][COLOR=#ff5454][B]snd[/B][/COLOR][COLOR=#000000]_rawmidi [/COLOR]
        [COLOR=#ff5454][B]snd[/B][/COLOR][COLOR=#000000]_timer              36864  2 [/COLOR][COLOR=#ff5454][B]snd[/B][/COLOR][COLOR=#000000]_seq,[/COLOR][COLOR=#ff5454][B]snd[/B][/COLOR][COLOR=#000000]_pcm [/COLOR][COLOR=#ff5454][B]snd[/B][/COLOR][COLOR=#000000]                    90112  15 [/COLOR][COLOR=#ff5454][B]snd[/B][/COLOR][COLOR=#000000]_hda_codec_generic,[/COLOR][COLOR=#ff5454][B]snd[/B][/COLOR][COLOR=#000000]_seq,[/COLOR][COLOR=#ff5454][B]snd[/B][/COLOR][COLOR=#000000]_seq_device,[/COLOR][COLOR=#ff5454][B]snd[/B][/COLOR][COLOR=#000000]_hda_codec_hdmi,[/COLOR][COLOR=#ff5454][B]snd[/B][/COLOR][COLOR=#000000]_hwdep,[/COLOR][COLOR=#ff5454][B]sn[/B][/COLOR][B][COLOR=#ff5454]d[/COLOR][/B][COLOR=#000000]_hda_intel,[/COLOR][COLOR=#ff5454][B]snd[/B][/COLOR][COLOR=#000000]_hda_codec,[/COLOR][COLOR=#ff5454][B]snd[/B][/COLOR][COLOR=#000000]_hda_codec_realtek,[/COLOR][COLOR=#ff5454][B]snd[/B][/COLOR][COLOR=#000000]_timer,[/COLOR][COLOR=#ff5454][B]snd[/B][/COLOR][COLOR=#000000]_pcm,[/COLOR][COLOR=#ff5454][B]snd[/B][/COLOR][COLOR=#000000]_rawmidi[/COLOR]soundcore163841 [COLOR=#ff5454][B]snd[/B][/COLOR]


        If I use the modinfo command I can list the snd_hda_intell driver and the params (parameters). It also lists the snd driver.

        I can add or edit the snd_hda_intel.conf and snd.conf files residing in /etc/modules.d directory to control how the kernel reacts to the modules when they are loaded. These conf files are where you make adjustments to the "param" settings listed in the modinfo output.

        $ modinfo snd_hda_intel
        Code:
        filename:       /lib/modules/5.4.0-81-generic/kernel/sound/pci/hda/snd-hda-intel.ko 
        description:    Intel HDA driver 
        license:        GPL 
        srcversion:     2F60277DAE563209FA7BA4A 
        alias:          pci:v00001D17d00003288sv*sd*bc*sc*i* 
        alias:          pci:v00001022d*sv*sd*bc04sc03i00* 
        alias:          pci:v00001002d*sv*sd*bc04sc03i00* 
        alias:          pci:v000015ADd00001977sv*sd*bc*sc*i* 
        alias:          pci:v000017F3d00003010sv*sd*bc*sc*i* 
        alias:          pci:v000013F6d00005011sv*sd*bc*sc*i* 
        alias:          pci:v00001102d00000009sv*sd*bc*sc*i* 
        alias:          pci:v00001102d00000012sv*sd*bc*sc*i* 
        alias:          pci:v00001102d00000010sv*sd*bc*sc*i* 
        alias:          pci:v00006549d00002200sv*sd*bc*sc*i* 
        alias:          pci:v00006549d00001200sv*sd*bc*sc*i* 
        alias:          pci:v000010DEd*sv*sd*bc04sc03i00* 
        alias:          pci:v000010B9d00005461sv*sd*bc*sc*i* 
        alias:          pci:v00001039d00007502sv*sd*bc*sc*i* 
        alias:          pci:v00001106d00009140sv*sd*bc*sc*i* 
        alias:          pci:v00001106d00009170sv*sd*bc*sc*i* 
        alias:          pci:v00001106d00003288sv*sd*bc*sc*i* 
        alias:          pci:v00001002d0000AAF0sv*sd*bc*sc*i* 
        alias:          pci:v00001002d0000AAE0sv*sd*bc*sc*i* 
        alias:          pci:v00001002d0000AAE8sv*sd*bc*sc*i* 
        alias:          pci:v00001002d0000AAD8sv*sd*bc*sc*i* 
        alias:          pci:v00001002d0000AAC8sv*sd*bc*sc*i* 
        alias:          pci:v00001002d0000AAC0sv*sd*bc*sc*i* 
        alias:          pci:v00001002d0000AAB0sv*sd*bc*sc*i* 
        alias:          pci:v00001002d0000AAA8sv*sd*bc*sc*i* 
        alias:          pci:v00001002d0000AAA0sv*sd*bc*sc*i* 
        alias:          pci:v00001002d00009902sv*sd*bc*sc*i* 
        alias:          pci:v00001002d0000AA98sv*sd*bc*sc*i* 
        alias:          pci:v00001002d0000AA90sv*sd*bc*sc*i* 
        alias:          pci:v00001002d0000AA88sv*sd*bc*sc*i* 
        alias:          pci:v00001002d0000AA80sv*sd*bc*sc*i* 
        alias:          pci:v00001002d0000AA68sv*sd*bc*sc*i* 
        alias:          pci:v00001002d0000AA60sv*sd*bc*sc*i* 
        alias:          pci:v00001002d0000AA58sv*sd*bc*sc*i* 
        alias:          pci:v00001002d0000AA50sv*sd*bc*sc*i* 
        alias:          pci:v00001002d0000AA48sv*sd*bc*sc*i* 
        alias:          pci:v00001002d0000AA40sv*sd*bc*sc*i* 
        alias:          pci:v00001002d0000AA38sv*sd*bc*sc*i* 
        alias:          pci:v00001002d0000AA30sv*sd*bc*sc*i* 
        alias:          pci:v00001002d0000AA28sv*sd*bc*sc*i* 
        alias:          pci:v00001002d0000AA20sv*sd*bc*sc*i* 
        alias:          pci:v00001002d0000AA18sv*sd*bc*sc*i* 
        alias:          pci:v00001002d0000AA10sv*sd*bc*sc*i* 
        alias:          pci:v00001002d0000AA08sv*sd*bc*sc*i* 
        alias:          pci:v00001002d0000AA00sv*sd*bc*sc*i* 
        alias:          pci:v00001002d00009840sv*sd*bc*sc*i* 
        alias:          pci:v00001002d0000970Fsv*sd*bc*sc*i* 
        alias:          pci:v00001002d0000960Fsv*sd*bc*sc*i* 
        alias:          pci:v00001002d00007919sv*sd*bc*sc*i* 
        alias:          pci:v00001002d0000793Bsv*sd*bc*sc*i* 
        alias:          pci:v00001002d000015B3sv*sd*bc*sc*i* 
        alias:          pci:v00001002d0000157Asv*sd*bc*sc*i* 
        alias:          pci:v00001002d00001308sv*sd*bc*sc*i* 
        alias:          pci:v00001002d00000002sv*sd*bc*sc*i* 
        alias:          pci:v00001022d000015E3sv*sd*bc*sc*i* 
        alias:          pci:v00001022d0000157Asv*sd*bc*sc*i* 
        alias:          pci:v00001022d00001487sv*sd*bc*sc*i* 
        alias:          pci:v00001022d00001457sv*sd*bc*sc*i* 
        alias:          pci:v00001022d0000780Dsv*sd*bc*sc*i* 
        alias:          pci:v00001002d00004383sv*sd*bc*sc*i* 
        alias:          pci:v00001002d0000437Bsv*sd*bc*sc*i* 
        alias:          pci:v00008086d*sv*sd*bc04sc03i00* 
        alias:          pci:v00008086d00003A6Esv*sd*bc*sc*i* 
        alias:          pci:v00008086d00003A3Esv*sd*bc*sc*i* 
        alias:          pci:v00008086d0000293Fsv*sd*bc*sc*i* 
        alias:          pci:v00008086d0000293Esv*sd*bc*sc*i* 
        alias:          pci:v00008086d0000284Bsv*sd*bc*sc*i* 
        alias:          pci:v00008086d0000269Asv*sd*bc*sc*i* 
        alias:          pci:v00008086d000027D8sv*sd*bc*sc*i* 
        alias:          pci:v00008086d00002668sv*sd*bc*sc*i* 
        alias:          pci:v00008086d00002284sv*sd*bc*sc*i* 
        alias:          pci:v00008086d00000F04sv*sd*bc*sc*i* 
        alias:          pci:v00008086d0000080Asv*sd*bc*sc*i* 
        alias:          pci:v00008086d0000811Bsv*sd*bc*sc*i* 
        alias:          pci:v00008086d00003B56sv*sd*bc*sc*i* 
        alias:          pci:v00008086d0000160Csv*sd*bc*sc*i* 
        alias:          pci:v00008086d00000D0Csv*sd*bc*sc*i* 
        alias:          pci:v00008086d00000C0Csv*sd*bc*sc*i* 
        alias:          pci:v00008086d00000A0Csv*sd*bc*sc*i* 
        alias:          pci:v00008086d00003198sv*sd*bc*sc*i* 
        alias:          pci:v00008086d00001A98sv*sd*bc*sc*i* 
        alias:          pci:v00008086d00005A98sv*sd*bc*sc*i* 
        alias:          pci:v00008086d00004B58sv*sd*bc*sc*i* 
        alias:          pci:v00008086d00004B55sv*sd*bc*sc*i* 
        alias:          pci:v00008086d000043C8sv*sd*bc*sc*i* 
        alias:          pci:v00008086d0000A0C8sv*sd*bc*sc*i* 
        alias:          pci:v00008086d00004DC8sv*sd*bc*sc*i* 
        alias:          pci:v00008086d000038C8sv*sd*bc*sc*i* 
        alias:          pci:v00008086d00003DC8sv*sd*bc*sc*i* 
        alias:          pci:v00008086d000034C8sv*sd*bc*sc*i* 
        alias:          pci:v00008086d0000F0C8sv*sd*bc*sc*i* 
        alias:          pci:v00008086d0000A3F0sv*sd*bc*sc*i* 
        alias:          pci:v00008086d0000F1C8sv*sd*bc*sc*i* 
        alias:          pci:v00008086d000006C8sv*sd*bc*sc*i* 
        alias:          pci:v00008086d000002C8sv*sd*bc*sc*i* 
        alias:          pci:v00008086d00009DC8sv*sd*bc*sc*i* 
        alias:          pci:v00008086d0000A348sv*sd*bc*sc*i* 
        alias:          pci:v00008086d0000A2F0sv*sd*bc*sc*i* 
        alias:          pci:v00008086d00009D71sv*sd*bc*sc*i* 
        alias:          pci:v00008086d0000A171sv*sd*bc*sc*i* 
        alias:          pci:v00008086d00009D70sv*sd*bc*sc*i* 
        alias:          pci:v00008086d0000A170sv*sd*bc*sc*i* 
        alias:          pci:v00008086d00009CA0sv*sd*bc*sc*i* 
        alias:          pci:v00008086d00009C21sv*sd*bc*sc*i* 
        alias:          pci:v00008086d00009C20sv*sd*bc*sc*i* 
        alias:          pci:v00008086d0000A270sv*sd*bc*sc*i* 
        alias:          pci:v00008086d0000A1F0sv*sd*bc*sc*i* 
        alias:          pci:v00008086d00008D21sv*sd*bc*sc*i* 
        alias:          pci:v00008086d00008D20sv*sd*bc*sc*i* 
        alias:          pci:v00008086d00008CA0sv*sd*bc*sc*i* 
        alias:          pci:v00008086d00008C20sv*sd*bc*sc*i* 
        alias:          pci:v00008086d00001E20sv*sd*bc*sc*i* 
        alias:          pci:v00008086d00001D20sv*sd*bc*sc*i* 
        alias:          pci:v00008086d00001C20sv*sd*bc*sc*i* 
        depends:        snd-hda-core,snd-hda-codec,snd-pcm,snd,snd-intel-dspcfg 
        retpoline:      Y 
        intree:         Y 
        name:           snd_hda_intel 
        vermagic:       5.4.0-81-generic SMP mod_unload modversions  
        sig_id:         PKCS#7 
        signer:         Build time autogenerated kernel key 
        sig_key:        4B:30:29:95:31:21:45:7B:57:53:EF:8E:6F:4B:C1:47:8A:67:E1:5B 
        sig_hashalgo:   sha512 
        signature:      AC:A6:63:9C:8E:12:B5:74:F9:E9:CA:FC:6D:0F:D8:4D:0D:D0:63:4E: 
                        BE:A8:8E:9A:EA:36:55:AB:5B:67:EB:20:F6:91:63:CE:F4:84:57:9B: 
                        C1:7F:B3:6E:9F:E8:DB:4F:77:E1:0F:DF:C2:8C:DC:00:EF:00:49:9E: 
                        11:70:DA:EC:95:C3:8D:54:DE:28:24:60:29:12:5E:DC:6F:DC:64:2C: 
                        FA:95:28:41:4D:E8:94:93:5D:06:DB:8B:67:55:78:69:41:F7:0D:0C: 
                        A2:AF:76:B2:61:11:2F:68:53:33:49:85:13:79:1A:26:FF:E5:F3:3B: 
                        B2:5F:C9:EC:33:27:9E:E9:B7:A2:CE:F9:F2:25:83:24:EB:7B:F8:7D: 
                        AD:FA:C6:6C:80:66:0F:3C:A0:97:FF:78:7E:36:44:56:D4:DF:65:DA: 
                        2A:22:94:5F:B9:9A:C3:F3:61:95:BE:AD:3D:07:E9:DD:AA:FB:8D:45: 
                        5D:6C:1D:6C:42:7B:5A:59:66:F7:31:F4:77:BD:CD:AB:4C:9B:B9:73: 
                        5A:78:80:88:B5:92:23:48:D0:E1:10:44:0D:22:66:3A:4D:67:D4:6B: 
                        D7:43:A7:67:59:15:13:5C:18:E0:D4:F6:DA:16:02:F8:B7:1B:C4:13: 
                        C2:7F:68:EF:AF:74:05:F6:02:83:CB:AA:49:25:92:44:F7:65:99:12: 
                        2E:33:4C:A6:E0:09:4D:2C:2C:19:5F:A7:DD:D5:CB:D6:CF:97:AD:7D: 
                        DC:B6:CB:E3:71:30:25:02:3A:5B:22:82:DC:CE:37:12:4B:E4:B8:BE: 
                        C1:34:C8:78:41:DA:33:4D:28:D8:CC:0E:A1:3B:5C:5A:5C:5F:C1:49: 
                        51:E3:0E:60:8D:73:C4:EE:18:0C:3E:1B:24:1A:4B:7F:07:20:BA:96: 
                        B5:78:8F:2C:06:D4:29:F3:04:6A:2D:7F:D8:BA:AE:C5:7A:A1:A7:7B: 
                        4B:17:00:14:49:DE:42:9D:AC:DD:CD:F7:AB:AE:18:89:76:3D:CF:89: 
                        A3:4C:C3:ED:D1:FD:46:55:E1:FA:6C:CD:F8:44:82:6B:1B:A3:B4:AC: 
                        A3:D8:62:30:B1:34:4B:4E:D4:92:86:90:27:65:19:98:42:BA:2D:FB: 
                        06:85:38:95:CE:8F:A7:73:79:BA:8F:E2:BC:F8:FA:44:A8:2C:72:D8: 
                        ED:41:6F:79:B4:D8:D3:11:63:EA:F9:F6:8D:5B:70:B9:58:D1:26:9E: 
                        2C:49:74:B9:68:79:86:C2:DA:5D:5A:B5:26:A5:7C:95:25:2A:E0:66: 
                        6F:16:90:77:2D:55:23:D0:40:1A:99:33:6D:24:A9:48:6A:0C:96:2E: 
                        51:9E:54:74:AA:1F:F2:AF:50:81:BB:6B 
        parm:           index:Index value for Intel HD audio interface. (array of int) 
        parm:           id:ID string for Intel HD audio interface. (array of charp) 
        parm:           enable:Enable Intel HD audio interface. (array of bool) 
        parm:           model:Use the given board model. (array of charp) 
        parm:           position_fix:DMA pointer read method.(-1 = system default, 0 = auto, 1 = LPIB, 2 = POSBUF, 
                                                                                        3= VIACOMBO, 4 = COMBO, 5 = SKL+, 6 = FIFO). (array of int) 
        parm:           bdl_pos_adj:BDL position adjustment offset. (array of int) 
        parm:           probe_mask:Bitmask to probe codecs (default = -1). (array of int) 
        parm:           probe_only:Only probing and no codec initialization. (array of int) 
        parm:           jackpoll_ms:Ms between polling for jack events (default = 0, using unsol events only) (array of int) 
        parm:           single_cmd:Use single command to communicate with codecs (for debugging only). (bint) 
        parm:           enable_msi:Enable Message Signaled Interrupt (MSI) (bint) 
        parm:           patch:Patch file for Intel HD audio interface. (array of charp) 
        parm:           beep_mode:Select HDA Beep registration mode (0=off, 1=on) (default=1). (array of bool) 
        parm:           dmic_detect:Allow DSP driver selection (bypass this driver) (0=off, 1=on) (default=1); deprec
        ated, use snd-intel-dspcfg.dsp_driver option instead (bool) 
        parm:           power_save:Automatic power-saving timeout (in second, 0 = disable). (xint) 
        parm:           pm_blacklist:Enable power-management blacklist (bool) 
        parm:           power_save_controller:Reset controller in power save mode. (bool) 
        parm:           align_buffer_size:Force buffer and period sizes to be multiple of 128 bytes. (bint) 
        parm:           snoop:Enable/disable snooping (bint)
        You can use "modinfo" to show params for what ever driver is listed for your audio chip in the lshw listing.

        To the best of my knowledge all audio chips require the snd module.

        $ modinfo snd
        Code:
        filename:       /lib/modules/5.4.0-81-generic/kernel/sound/core/snd.ko 
        alias:          char-major-116-* 
        license:        GPL 
        description:    Advanced Linux Sound Architecture driver for soundcards. 
        author:         Jaroslav Kysela <perex@perex.cz> 
        srcversion:     21062ADF1B417F2EC894E2A 
        depends:        soundcore 
        retpoline:      Y 
        intree:         Y 
        name:           snd 
        vermagic:       5.4.0-81-generic SMP mod_unload modversions  
        sig_id:         PKCS#7 
        signer:         Build time autogenerated kernel key 
        sig_key:        4B:30:29:95:31:21:45:7B:57:53:EF:8E:6F:4B:C1:47:8A:67:E1:5B 
        sig_hashalgo:   sha512 
        signature:      D6:CD:6C:1B:22:C5:98:97:4E:B7:83:B0:1F:7A:24:5F:0C:CB:23:D1: 
                        51:7C:7F:B9:41:0F:E0:A5:59:D5:0E:8E:11:DC:32:F5:76:80:E1:29: 
                        2D:2E:CB:6A:6D:82:2D:8B:36:2D:C7:93:ED:E3:D3:9D:0E:04:FF:00: 
                        D9:02:83:4F:4B:73:D4:60:4A:2A:50:1C:BE:3F:3E:29:CA:68:12:D0: 
                        68:64:01:26:7B:61:4B:4D:71:5F:92:25:2D:3E:7A:12:98:F7:5C:EE: 
                        30:12:BF:D8:A8:52:63:02:D3:82:8B:C7:F7:89:E0:5B:12:9C:59:BF: 
                        47:12:32:FF:9B:51:9C:A1:EB:BC:25:E5:54:73:92:54:09:F3:32:20: 
                        FB:4F:6B:70:EC:64:35:BD:D6:4C:E2:21:2A:DD:C8:64:0D:93:28:73: 
                        E9:D6:AF:22:AA:6C:4C:C4:57:13:A4:B7:75:FD:02:F5:60:73:79:19: 
                        FA:BF:9D:54:39:12:6B:3E:7F:8C:C1:35:47:D4:85:A4:72:FA:D2:A7: 
                        66:0A:54:21:14:46:FB:0F:43:C7:62:A7:32:99:CA:75:3B:2C:AF:92: 
                        C1:C9:6C:4D:DB:12:F5:7C:4C:06:99:C5:03:6D:AF:62:05:68:C5:B5: 
                        F8:A4:90:EA:44:FE:22:99:7F:43:68:9B:3C:29:0A:7F:63:4E:F2:D7: 
                        B8:16:2B:44:D9:3B:C1:AD:B7:4E:F4:0A:0B:79:D5:DB:E2:AB:29:74: 
                        6B:45:7E:3F:84:4B:15:E9:4E:18:A9:B5:8C:69:00:DF:DC:F0:8B:0F: 
                        F3:49:FA:74:66:3B:01:42:80:EA:BB:06:BF:44:DD:95:7F:50:CB:3F: 
                        04:7F:88:FE:A8:79:64:18:38:CB:D8:53:B8:56:8B:EA:10:36:F6:EF: 
                        4A:F7:9A:27:48:0A:21:0A:AF:88:F3:05:92:5D:E8:2C:6F:2A:4A:29: 
                        1B:0A:89:D7:1D:6D:1D:F0:8B:A4:62:CF:FB:A3:EA:55:3A:CF:A3:52: 
                        2C:0A:8F:94:66:02:AB:51:FD:7D:A0:05:63:60:90:21:86:BA:F2:63: 
                        1E:95:9D:30:FD:C0:0F:28:B0:BD:E5:23:43:EF:A9:17:C2:62:08:AC: 
                        0F:F2:87:03:40:24:FE:ED:15:F9:3B:F7:F6:62:E8:63:35:BA:9A:5B: 
                        A4:98:1F:34:1F:82:54:3D:EE:91:CA:3D:B6:A4:34:C4:D8:B6:A6:B3: 
                        F2:67:8C:0B:5C:8D:88:9B:76:08:F5:16:B3:69:31:CA:54:CE:DB:0D: 
                        E1:A0:76:91:6A:1D:FC:6E:7F:0B:6D:B7:E5:37:6B:DE:8A:05:64:0E: 
                        12:2E:CC:34:52:DB:3B:68:D0:32:9F:D2 
        parm:           slots:Module names assigned to the slots. (array of charp) 
        parm:           major:Major # for sound driver. (int) 
        parm:           cards_limit:Count of auto-loadable soundcards. (int)

        Last edited by GreyGeek; Aug 21, 2021, 03:49 PM.
        "A nation that is afraid to let its people judge the truth and falsehood in an open market is a nation that is afraid of its people.”
        – John F. Kennedy, February 26, 1962.

        Comment


          #5
          Originally posted by Skava View Post
          The thing is my speaker doesn't get detected at all unless I use 5.4. Is there a way to boot into 5.4 automatically instead of 5.11 without deleting any of the kernels?

          I still don't know why my speakers don't work in 5.11.0.27-generic, what should I look into fix this?
          You can install and use Grub Customizer.

          Comment


            #6
            Thanks GreyGeek, I guess I meant to say audio chip instead of speakers as the speakers themselves work fine. They worked before the upgrade, and they worked fine when I run kubuntu from a live session. Which leads me to encountering to another problem; I said earlier that I was able to get audio when kernel version 5.4.0-26-generic is used. This however isn't the case and it seems like I may have a completely different issue instead, since loading kubuntu to use that kernel version from grub doesn't fix my audio issue at all.

            These are the devices I'm seeing in Audio Volume Settings:
            Click image for larger version

Name:	Screenshot_20210822_183153.jpg
Views:	1
Size:	50.7 KB
ID:	645195
            The DisplayPort 2 is just a monitor that's connected to my graphics card and doesn't have any speakers. Whenever I play video I notice the Digital Output bar animating indicating that sound is being played but I can't hear it; my speakers are turned on and the volume dial is up. As another test, I tried running kubuntu from USB and everything worked fine, I can play hear audio through my speakers.


            I did run the lshw command and found two devices with the snd_hda_intel:
            Code:
            *-multimedia
                        description: Audio device
                        product: GP104 High Definition Audio Controller
                        vendor: NVIDIA Corporation
                        physical id: 0.1
                        bus info: pci@0000:01:00.1
                        version: a1
                        width: 32 bits
                        clock: 33MHz
                        capabilities: pm msi pciexpress bus_master cap_list
                        configuration: driver=snd_hda_intel latency=0
                        resources: irq:17 memory:a1080000-a1083fff
            
            *-multimedia
                         description: Audio device
                         product: Comet Lake PCH cAVS
                         vendor: Intel Corporation
                         physical id: 1f.3
                         bus info: pci@0000:00:1f.3
                         version: 00
                         width: 64 bits
                         clock: 33MHz
                         capabilities: pm msi bus_master cap_list
                         configuration: driver=snd_hda_intel latency=32
                         resources: iomemory:400-3ff iomemory:400-3ff irq:145 memory:4012110000-4012113fff memory:4012000000-40120fffff
            and running lsmod | grep snd gives me the following:
            Code:
            [FONT=monospace][COLOR=#ff5454][B]snd[/B][/COLOR][COLOR=#000000]_hda_codec_hdmi     61440  1 [/COLOR]
            [COLOR=#ff5454][B]snd[/B][/COLOR][COLOR=#000000]_sof_pci            20480  0 [/COLOR]
            [COLOR=#ff5454][B]snd[/B][/COLOR][COLOR=#000000]_sof_intel_hda_common    69632  1 [/COLOR][COLOR=#ff5454][B]snd[/B][/COLOR][COLOR=#000000]_sof_pci [/COLOR]
            [COLOR=#ff5454][B]snd[/B][/COLOR][COLOR=#000000]_soc_hdac_hda       24576  1 [/COLOR][COLOR=#ff5454][B]snd[/B][/COLOR][COLOR=#000000]_sof_intel_hda_common [/COLOR]
            [COLOR=#ff5454][B]snd[/B][/COLOR][COLOR=#000000]_sof_intel_hda      20480  1 [/COLOR][COLOR=#ff5454][B]snd[/B][/COLOR][COLOR=#000000]_sof_intel_hda_common [/COLOR]
            [COLOR=#ff5454][B]snd[/B][/COLOR][COLOR=#000000]_sof_intel_byt      20480  1 [/COLOR][COLOR=#ff5454][B]snd[/B][/COLOR][COLOR=#000000]_sof_pci [/COLOR]
            [COLOR=#ff5454][B]snd[/B][/COLOR][COLOR=#000000]_sof_intel_ipc      20480  1 [/COLOR][COLOR=#ff5454][B]snd[/B][/COLOR][COLOR=#000000]_sof_intel_byt [/COLOR]
            [COLOR=#ff5454][B]snd[/B][/COLOR][COLOR=#000000]_sof               106496  4 [/COLOR][COLOR=#ff5454][B]snd[/B][/COLOR][COLOR=#000000]_sof_pci,[/COLOR][COLOR=#ff5454][B]snd[/B][/COLOR][COLOR=#000000]_sof_intel_hda_common,[/COLOR][COLOR=#ff5454][B]snd[/B][/COLOR][COLOR=#000000]_sof_intel_byt,[/COLOR][COLOR=#ff5454][B]snd[/B][/COLOR][COLOR=#000000]_sof_intel_ipc [/COLOR]
            [COLOR=#ff5454][B]snd[/B][/COLOR][COLOR=#000000]_sof_xtensa_dsp     16384  1 [/COLOR][COLOR=#ff5454][B]snd[/B][/COLOR][COLOR=#000000]_sof_pci [/COLOR]
            [COLOR=#ff5454][B]snd[/B][/COLOR][COLOR=#000000]_hda_codec_realtek   118784  1 [/COLOR]
            [COLOR=#ff5454][B]snd[/B][/COLOR][COLOR=#000000]_hda_ext_core       28672  3 [/COLOR][COLOR=#ff5454][B]snd[/B][/COLOR][COLOR=#000000]_sof_intel_hda_common,[/COLOR][COLOR=#ff5454][B]snd[/B][/COLOR][COLOR=#000000]_soc_hdac_hda,[/COLOR][COLOR=#ff5454][B]snd[/B][/COLOR][COLOR=#000000]_sof_intel_hda [/COLOR]
            [COLOR=#ff5454][B]snd[/B][/COLOR][COLOR=#000000]_soc_acpi_intel_match    32768  2 [/COLOR][COLOR=#ff5454][B]snd[/B][/COLOR][COLOR=#000000]_sof_pci,[/COLOR][COLOR=#ff5454][B]snd[/B][/COLOR][COLOR=#000000]_sof_intel_hda_common [/COLOR]
            [COLOR=#ff5454][B]snd[/B][/COLOR][COLOR=#000000]_hda_codec_generic    81920  1 [/COLOR][COLOR=#ff5454][B]snd[/B][/COLOR][COLOR=#000000]_hda_codec_realtek [/COLOR]
            [COLOR=#ff5454][B]snd[/B][/COLOR][COLOR=#000000]_soc_acpi           16384  2 [/COLOR][COLOR=#ff5454][B]snd[/B][/COLOR][COLOR=#000000]_sof_pci,[/COLOR][COLOR=#ff5454][B]snd[/B][/COLOR][COLOR=#000000]_soc_acpi_intel_match [/COLOR]
            ledtrig_audio          16384  3 [COLOR=#ff5454][B]snd[/B][/COLOR][COLOR=#000000]_hda_codec_generic,[/COLOR][COLOR=#ff5454][B]snd[/B][/COLOR][COLOR=#000000]_hda_codec_realtek,[/COLOR][COLOR=#ff5454][B]snd[/B][/COLOR][COLOR=#000000]_sof [/COLOR]
            [COLOR=#ff5454][B]snd[/B][/COLOR][COLOR=#000000]_soc_core          245760  3 [/COLOR][COLOR=#ff5454][B]snd[/B][/COLOR][COLOR=#000000]_sof,[/COLOR][COLOR=#ff5454][B]snd[/B][/COLOR][COLOR=#000000]_sof_intel_hda_common,[/COLOR][COLOR=#ff5454][B]snd[/B][/COLOR][COLOR=#000000]_soc_hdac_hda [/COLOR]
            [COLOR=#ff5454][B]snd[/B][/COLOR][COLOR=#000000]_compress           24576  1 [/COLOR][COLOR=#ff5454][B]snd[/B][/COLOR][COLOR=#000000]_soc_core [/COLOR]
            ac97_bus               16384  1 [COLOR=#ff5454][B]snd[/B][/COLOR][COLOR=#000000]_soc_core [/COLOR]
            [COLOR=#ff5454][B]snd[/B][/COLOR][COLOR=#000000]_pcm_dmaengine      16384  1 [/COLOR][COLOR=#ff5454][B]snd[/B][/COLOR][COLOR=#000000]_soc_core [/COLOR]
            [COLOR=#ff5454][B]snd[/B][/COLOR][COLOR=#000000]_hda_intel          53248  4 [/COLOR]
            [COLOR=#ff5454][B]snd[/B][/COLOR][COLOR=#000000]_intel_dspcfg       24576  3 [/COLOR][COLOR=#ff5454][B]snd[/B][/COLOR][COLOR=#000000]_hda_intel,[/COLOR][COLOR=#ff5454][B]snd[/B][/COLOR][COLOR=#000000]_sof_pci,[/COLOR][COLOR=#ff5454][B]snd[/B][/COLOR][COLOR=#000000]_sof_intel_hda_common [/COLOR]
            [COLOR=#ff5454][B]snd[/B][/COLOR][COLOR=#000000]_hda_codec         131072  5 [/COLOR][COLOR=#ff5454][B]snd[/B][/COLOR][COLOR=#000000]_hda_codec_generic,[/COLOR][COLOR=#ff5454][B]snd[/B][/COLOR][COLOR=#000000]_hda_codec_hdmi,[/COLOR][COLOR=#ff5454][B]snd[/B][/COLOR][COLOR=#000000]_hda_intel,[/COLOR][COLOR=#ff5454][B]snd[/B][/COLOR][COLOR=#000000]_hda_codec_realtek,[/COLOR][COLOR=#ff5454][B]snd[/B][/COLOR][COLOR=#000000]_soc_hdac_hda [/COLOR]
            [COLOR=#ff5454][B]snd[/B][/COLOR][COLOR=#000000]_usb_audio         258048  1 [/COLOR]
            [COLOR=#ff5454][B]snd[/B][/COLOR][COLOR=#000000]_hda_core           90112  9 [/COLOR][COLOR=#ff5454][B]snd[/B][/COLOR][COLOR=#000000]_hda_codec_generic,[/COLOR][COLOR=#ff5454][B]snd[/B][/COLOR][COLOR=#000000]_hda_codec_hdmi,[/COLOR][COLOR=#ff5454][B]snd[/B][/COLOR][COLOR=#000000]_hda_intel,[/COLOR][COLOR=#ff5454][B]snd[/B][/COLOR][COLOR=#000000]_hda_ext_core,[/COLOR][COLOR=#ff5454][B]snd[/B][/COLOR][COLOR=#000000]_hda_codec,[/COLOR][COLOR=#ff5454][B]snd[/B][/COLOR][COLOR=#000000]_hda_codec_realtek,[/COLOR][COLOR=#ff5454][B]snd[/B][/COLOR][COLOR=#000000]_sof_intel_hda_common,[/COLOR][COLOR=#ff5454][B]snd[/B][/COLOR][COLOR=#000000]_soc_hdac_hda,[/COLOR][COLOR=#ff5454][B]snd[/B][/COLOR][COLOR=#000000]_sof_intel_hda [/COLOR]
            [COLOR=#ff5454][B]snd[/B][/COLOR][COLOR=#000000]_usbmidi_lib        36864  1 [/COLOR][COLOR=#ff5454][B]snd[/B][/COLOR][COLOR=#000000]_usb_audio [/COLOR]
            [COLOR=#ff5454][B]snd[/B][/COLOR][COLOR=#000000]_seq_midi           20480  0 [/COLOR]
            [COLOR=#ff5454][B]snd[/B][/COLOR][COLOR=#000000]_seq_midi_event     16384  1 [/COLOR][COLOR=#ff5454][B]snd[/B][/COLOR][COLOR=#000000]_seq_midi [/COLOR]
            [COLOR=#ff5454][B]snd[/B][/COLOR][COLOR=#000000]_hwdep              20480  2 [/COLOR][COLOR=#ff5454][B]snd[/B][/COLOR][COLOR=#000000]_usb_audio,[/COLOR][COLOR=#ff5454][B]snd[/B][/COLOR][COLOR=#000000]_hda_codec [/COLOR]
            mc                     53248  1 [COLOR=#ff5454][B]snd[/B][/COLOR][COLOR=#000000]_usb_audio [/COLOR]
            [COLOR=#ff5454][B]snd[/B][/COLOR][COLOR=#000000]_rawmidi            36864  2 [/COLOR][COLOR=#ff5454][B]snd[/B][/COLOR][COLOR=#000000]_seq_midi,[/COLOR][COLOR=#ff5454][B]snd[/B][/COLOR][COLOR=#000000]_usbmidi_lib [/COLOR]
            [COLOR=#ff5454][B]snd[/B][/COLOR][COLOR=#000000]_pcm               106496  9 [/COLOR][COLOR=#ff5454][B]snd[/B][/COLOR][COLOR=#000000]_hda_codec_hdmi,[/COLOR][COLOR=#ff5454][B]snd[/B][/COLOR][COLOR=#000000]_hda_intel,[/COLOR][COLOR=#ff5454][B]snd[/B][/COLOR][COLOR=#000000]_usb_audio,[/COLOR][COLOR=#ff5454][B]snd[/B][/COLOR][COLOR=#000000]_hda_codec,[/COLOR][COLOR=#ff5454][B]snd[/B][/COLOR][COLOR=#000000]_sof,[/COLOR][COLOR=#ff5454][B]snd[/B][/COLOR][COLOR=#000000]_sof_intel_hda_common,[/COLOR][COLOR=#ff5454][B]snd[/B][/COLOR][COLOR=#000000]_soc_core,[/COLOR][COLOR=#ff5454][B]snd[/B][/COLOR][COLOR=#000000]_hda_core,[/COLOR][COLOR=#ff5454][B]snd[/B][/COLOR][COLOR=#000000]_pcm_dmaengine [/COLOR]
            [COLOR=#ff5454][B]snd[/B][/COLOR][COLOR=#000000]_seq                69632  2 [/COLOR][COLOR=#ff5454][B]snd[/B][/COLOR][COLOR=#000000]_seq_midi,[/COLOR][COLOR=#ff5454][B]snd[/B][/COLOR][COLOR=#000000]_seq_midi_event [/COLOR]
            [COLOR=#ff5454][B]snd[/B][/COLOR][COLOR=#000000]_seq_device         16384  3 [/COLOR][COLOR=#ff5454][B]snd[/B][/COLOR][COLOR=#000000]_seq,[/COLOR][COLOR=#ff5454][B]snd[/B][/COLOR][COLOR=#000000]_seq_midi,[/COLOR][COLOR=#ff5454][B]snd[/B][/COLOR][COLOR=#000000]_rawmidi [/COLOR]
            [COLOR=#ff5454][B]snd[/B][/COLOR][COLOR=#000000]_timer              36864  2 [/COLOR][COLOR=#ff5454][B]snd[/B][/COLOR][COLOR=#000000]_seq,[/COLOR][COLOR=#ff5454][B]snd[/B][/COLOR][COLOR=#000000]_pcm [/COLOR]
            [COLOR=#ff5454][B]snd[/B][/COLOR][COLOR=#000000]                    90112  25 [/COLOR][COLOR=#ff5454][B]snd[/B][/COLOR][COLOR=#000000]_hda_codec_generic,[/COLOR][COLOR=#ff5454][B]snd[/B][/COLOR][COLOR=#000000]_seq,[/COLOR][COLOR=#ff5454][B]snd[/B][/COLOR][COLOR=#000000]_seq_device,[/COLOR][COLOR=#ff5454][B]snd[/B][/COLOR][COLOR=#000000]_hda_codec_hdmi,[/COLOR][COLOR=#ff5454][B]snd[/B][/COLOR][COLOR=#000000]_hwdep,[/COLOR][COLOR=#ff5454][B]snd[/B][/COLOR][COLOR=#000000]_hda_intel,[/COLOR][COLOR=#ff5454][B]snd[/B][/COLOR][COLOR=#000000]_usb_audio,[/COLOR][COLOR=#ff5454][B]snd[/B][/COLOR][COLOR=#000000]_usbmidi_lib,[/COLOR][COLOR=#ff5454][B]snd[/B][/COLOR][COLOR=#000000]_hda_codec,[/COLOR][COLOR=#ff5454][B]snd[/B][/COLOR][COLOR=#000000]_hda_codec_realtek,[/COLOR][COLOR=#ff5454][B]snd[/B][/COLOR][COLOR=#000000]_timer,[/COLOR][COLOR=#ff5454][B]snd[/B][/COLOR][COLOR=#000000]_compress,[/COLOR]
            [COLOR=#ff5454][B]snd[/B][/COLOR][COLOR=#000000]_soc_core,[/COLOR][COLOR=#ff5454][B]snd[/B][/COLOR][COLOR=#000000]_pcm,[/COLOR][COLOR=#ff5454][B]snd[/B][/COLOR][COLOR=#000000]_rawmidi [/COLOR]
            soundcore              16384  1 [COLOR=#ff5454][B]snd[/B][/COLOR]
            [/FONT]
            I haven't tried tweaking the conf file as I'm not sure what to tweak or what's causing this problem, so left it at that to avoid breaking anything else. However, given all that is said, everything should be working given that my audio chip drivers are being listed, right?

            Edit: So I loaded Kubuntu from live USB again and noticed that the audio output was named differently. It was called "line out". After installtion I don't see this "line out" option anywhere and it's instead replaced with what's currently called Digital Output. I've found some solutions online that suggested to edit the alda-base.conf files and to remove timidity daemon and neither solutions have worked so far
            Last edited by Skava; Aug 23, 2021, 04:27 AM.

            Comment


              #7
              Decided to try and plug the speaker cable to the headphone jack at the front of my PC. I can now hear audio again! PulseAudio detected it as headphones being plugged in. Ideally I would prefer to have the connection be at the back motherboard ports so that the cable is out of the way. However this will have to suffice for now until I can find a fix. I'm guessing that there's some incompatibility somewhere with regards to my motherboard's audio input connections.

              Comment


                #8
                Instead of using digital stereo, try switching to analog stereo (configuration). I remember having that problem once and that's how I fixed it.

                Comment


                  #9
                  Tried that but it says unplugged and unavailable

                  Comment

                  Working...
                  X