It's a fresh install and pulseaudio can't find my sound card. Looks like my Realtek chip is set to Intel HD Audio driver and kernel module, which I think is incorrect.
Hardware:
+ AMD Ryzen 5 5600G
+ MSI B450 Mortar Max
+ Realtek® ALC892/ALC897 Codec
Code: Select all
$ uname -a
Linux orion 5.10.76-gentoo-r1 #1 SMP Mon Dec 13 04:02:21 -00 2021 x86_64 AMD Ryzen 5 5600G with Radeon Graphics AuthenticAMD GNU/Linux
Code: Select all
$ lspci -nnk
30:00.1 Audio device [0403]: Advanced Micro Devices, Inc. [AMD/ATI] Renoir Radeon High Definition Audio Controller [1002:1637]
Subsystem: Micro-Star International Co., Ltd. [MSI] Renoir Radeon High Definition Audio Controller [1462:eb89]
Kernel driver in use: snd_hda_intel
Kernel modules: snd_hda_intel
Code: Select all
$ aplay -l
aplay: device_list:274: no soundcards found...
Code: Select all
$ cat /etc/portage/make.conf | grep USE
# Use flags
USE="savedconfig lzma logrotate zsh-completion udev X elogind xinerama pulseaudio jack -systemd -gnome -kde"
Code: Select all
ls -l /dev/snd
total 0
crw-rw----+ 1 root audio 116, 1 Dec 14 22:13 seq
crw-rw----+ 1 root audio 116, 33 Dec 14 22:13 timer
Code: Select all
$ cat /proc/asound/devices
1: : sequencer
33: : timer
Code: Select all
$ cat /usr/src/linux/.config | grep CONFIG_SND_HDA_CODEC_REALTEK
CONFIG_SND_HDA_CODEC_REALTEK=m
Steps to check:
+ Is your user in audio group?
Code: Select all
$ groups
//Should output audio
Code: Select all
# useradd -a -G audio my_username... codecs must either be all <M> or all <*> a mix of built in and modules fails by design

