Skip to content

Instantly share code, notes, and snippets.

@boulund
Last active October 26, 2015 22:20
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save boulund/bb232133192eb06d9d17 to your computer and use it in GitHub Desktop.
Save boulund/bb232133192eb06d9d17 to your computer and use it in GitHub Desktop.
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