AI Laptop Lenovo Legion Pro 7 16IAX10H
This laptop has the RTX 5080 with 16GB of VRam which make it an attractive option for AI usage. The gaming style hardware also mean that the visual and audio experience is state of the art. Lenevo official marketing info for the "AI-Powered Gaming PC": https://psref.lenovo.com/Product/Legion/Legion_Pro_7_16IAX10H
The very first thing that happened to this machine was the obliteration of Windows 11 which happened right after it wanted my mum to verify I was over 18. This seemingly simple operation was complicated by the requirement to generate signing keys and an understanding of Machine Owner Key (MOK) utilities to satisfy the secure boot functionality which is built in. Essentially it is actually non-trivial to blow away the operating system and replace it, as I found out.
Once the OS, being the Kubuntu version Ubuntu with KDE, was installed the incredible sound output this unit is capable of refused to work. This is a known issue and is discussed here ( https://forums.lenovo.com/t5/Ubuntu/Legion-Pro-7-16IAX10H-Ubuntu-ALC3306-sound/m-p/5376602?page=1#6595554). At the time of writing the issue has been identified but the fix isn't in the kernel yet. The cause, to cut a long story short, is that the sound chip, a Realtek ALC3306 codec, is recognised as an ALC287 and, according to dmesg, uses a generic fallback fixup instead of a device-specific one. What that means is you get sound but crappy sound. This seems to be confirmed at the command line with the following:
phillb@Laptop-5080~$ aplay -l
**** List of PLAYBACK Hardware Devices ****
card 0: NVidia [HDA NVidia], device 3: HDMI 0 [HDMI 0]
Subdevices: 1/1
Subdevice #0: subdevice #0
card 0: NVidia [HDA NVidia], device 7: HDMI 1 [HDMI 1]
Subdevices: 1/1
Subdevice #0: subdevice #0
card 1: PCH [HDA Intel PCH], device 0: ALC287 Analog [ALC287 Analog]
Subdevices: 1/1
Subdevice #0: subdevice #0
card 1: PCH [HDA Intel PCH], device 3: HDMI 0 [HDMI 0]
Subdevices: 1/1
Subdevice #0: subdevice #0
card 1: PCH [HDA Intel PCH], device 7: HDMI 1 [HDMI 1]
Subdevices: 1/1
Subdevice #0: subdevice #0
card 1: PCH [HDA Intel PCH], device 8: HDMI 2 [HDMI 2]
Subdevices: 1/1
Subdevice #0: subdevice #0
card 1: PCH [HDA Intel PCH], device 9: HDMI 3 [HDMI 3]
Subdevices: 1/1
Subdevice #0: subdevice #0
phillb@Laptop-5080~$
root@Laptop-5080:/var/log# cat dmesg | grep snd
[ 3.779472] kernel: snd_hda_intel 0000:02:00.1: enabling device (0000 -> 0002)
[ 3.779568] kernel: snd_hda_intel 0000:02:00.1: Disabling MSI
[ 3.779572] kernel: snd_hda_intel 0000:02:00.1: Handle vga_switcheroo audio client
[ 5.223619] kernel: snd_hda_intel 0000:80:1f.3: bound 0000:00:02.0 (ops i915_audio_component_bind_ops [i915])
[ 5.259029] kernel: snd_hda_codec_realtek hdaudioC1D0: autoconfig for ALC287: line_outs=2 (0x14/0x17/0x0/0x0/0x0) type:speaker
[ 5.259033] kernel: snd_hda_codec_realtek hdaudioC1D0: speaker_outs=0 (0x0/0x0/0x0/0x0/0x0)
[ 5.259034] kernel: snd_hda_codec_realtek hdaudioC1D0: hp_outs=1 (0x21/0x0/0x0/0x0/0x0)
[ 5.259035] kernel: snd_hda_codec_realtek hdaudioC1D0: mono: mono_out=0x0
[ 5.259036] kernel: snd_hda_codec_realtek hdaudioC1D0: inputs:
[ 5.259036] kernel: snd_hda_codec_realtek hdaudioC1D0: Internal Mic=0x12
[ 5.259037] kernel: snd_hda_codec_realtek hdaudioC1D0: Mic=0x19
root@Laptop-5080:/var/log#