Created
December 3, 2010 09:14
-
-
Save jriano/726752 to your computer and use it in GitHub Desktop.
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 | |
lsof | grep pcm | |
# Now let's kill those processes | |
kill -9 id1 id2 id3 | |
# Now let's kill pulseaudio | |
pulseaudio -k | |
# Let's check that pulseaudio is gone | |
pulseaudio --check |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment