Skip to content

Instantly share code, notes, and snippets.

@jriano
Created December 3, 2010 09:14
Show Gist options
  • Save jriano/726752 to your computer and use it in GitHub Desktop.
Save jriano/726752 to your computer and use it in GitHub Desktop.
# 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