commit 65eb909220d21ce4f74965446c048f233b8868ed parent e3abf9b755c7590065f0eefa367022cc2ccfaddc Author: pyratebeard <root@pyratebeard.net> Date: Thu, 10 Oct 2019 22:22:04 +0100 alsa page and link alsa modprobe conf to switch sound cards Diffstat:
A | technology/linux/audio_visual/alsa.md | | | 12 | ++++++++++++ |
M | technology/linux/audio_visual/index.md | | | 1 | + |
2 files changed, 13 insertions(+), 0 deletions(-)
diff --git a/technology/linux/audio_visual/alsa.md b/technology/linux/audio_visual/alsa.md @@ -0,0 +1,12 @@ +# alsa + +## change card order +- on a fresh archlinux install on a thinkpad the sound cards were in the 'wrong' order. +- in alsamixer the first card was hdmi, the second was pch +- to change the order add the following to '/etc/modprobe.d/50-alsa.conf' and reboot +``` +options snd_hda_intel enable=1 index=0 +options snd_hda_intel index=1 +``` + +- source: https://bbs.archlinux.org/viewtopic.php?pid=1453619#p1453619 diff --git a/technology/linux/audio_visual/index.md b/technology/linux/audio_visual/index.md @@ -1,5 +1,6 @@ # audio_visual +- [alsa](alsa) - [ffmpeg](ffmpeg) - [mpd](mpd) - [mpv](mpv)