Created
December 3, 2010 09:30
-
-
Save jriano/726767 to your computer and use it in GitHub Desktop.
restart-ubuntu-10.10-sound
This file contains 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
# list processes that use sound and get their ids | |
lsof | grep pcm | |
# Now let's kill those processes | |
kill -9 id1 id2 id3 | |
# Now let's kill pulseaudio | |
pulseaudio --kill | |
# Pulseaudio restarts automatically, but | |
# to make sure lets send the start command | |
pulseaudio --start | |
# That's all, your sound's got a band-aid! |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment