Last active
October 26, 2015 22:20
-
-
Save boulund/bb232133192eb06d9d17 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
apt-get install alsa-base | |
apt-get install pulseaudio | |
apt-get install pulseaudio-module-blueooth | |
apt-get install pulseaudio-utils (this might be installed automatically) | |
alsa force-reload | |
reboot | |
Edit /etc/modprobe.d/alsa-base.conf and make the following modification: | |
Comment out the line preventing USB audio to be listed first, like this: | |
# Keep snd-usb-audio from beeing loaded as first soundcard | |
#options snd-usb-audio index=-2 | |
Replace with the following line: | |
# Allow snd-usb-audio to be loaded as first soundcard | |
options snd-usb-audio index=0 | |
If it for some reason stops working at a later date, purge the alsa-base and pulseaudio packages and try again. | |
apt-get remove --purge alsa-base | |
apt-get remove --purge pulseaudio | |
Some useful commands: | |
pactl list short | |
pactl load-module | |
pactl unload-module |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment