Pulseaudio: how to rescan audio devices?

32,763

Solution 1

Actually, yes, there is a way to do so without restarting Pulseaudio:

pacmd unload-module module-udev-detect && pacmd load-module module-udev-detect

I use it everytime I plug in my external-soundcard or after waking up my laptop. Pulseaudio cleans up his room and bring back my Spotify music on my external soundcard automatically (as it is my default soundcard).

You will need pacmd to do so; it is included in the pulseaudio-utils package on Ubuntu.

Solution 2

Running

pulseaudio -k && pactl load-module module-detect

worked for me. This will restart pulseaudio and therefore forget existing devices. Afterwards it will rescan for devices. The difference here is not to use udev, maybe there is an issue with the setup that prevents udev support.

This was necessary for me, as I'm using external devices at my laptop, but sometimes internal speakers.

For some reason you might need to add a sleep between both commands.

Solution 3

You're not restarting PulseAudio correctly. The correct way to restart PulseAudio in Ubuntu 20 is with this command:

systemctl --user restart pulseaudio

Restarting PulseAudio will detect new audio devices.

Share:
32,763

Related videos on Youtube

kagali-san
Author by

kagali-san

Updated on September 18, 2022

Comments

  • kagali-san
    kagali-san almost 2 years

    When adding a USB device to my system (I deliberately run no modern stack for device detection), Pulseaudio can't pickup it without restart (pulseaudio -k; pulseaudio --start).

    Is there an option for, say, pactl, which will make pulseaudio to "detect" and start using newly plugged in devices?

    • user1686
      user1686 over 9 years
      I'm confused how udev, which has been around since 2005, is too modern, and yet pulseaudio is fine... And given that udev doesn't even do device detection (the kernel does), "no modern stack for device detection" would kinda imply a kernel with no USB support.
    • Richard Gomes
      Richard Gomes about 6 years
      I'm not sure if I understood your question properly. The matter involving auto detection of audio devices (and possibly selecting the correct profile) seems to be solved once for all in Debian Buster: you simply say what is the default input/output devices you prefer and once connected Pulseaudio switches to those devices. If you are using something a bit older, you can try gist.github.com/pylover/d68be364adac5f946887b85e6ed6e7ae
    • Richard Gomes
      Richard Gomes about 6 years
      You may (or may not) find this useful: superuser.com/questions/1324152/…
    • richardpringle
      richardpringle over 3 years
      I know this is a couple years old, but I'm running into similar issues. Does the device show up in /proc/asound?
  • Stéphane Gourichon
    Stéphane Gourichon about 7 years
    Sometimes works sometimes not. I guess it's a fully correct answer anyway.
  • Quolonel Questions
    Quolonel Questions over 4 years
    My Ubuntu 18.04 system on a Dell Latitude E5470 rarely loses the audio device after wake-up from suspend, but when it does, this command fixes it.
  • Oliver
    Oliver about 4 years
    This has been the only thing that has worked after loosing output devices after suspend, without rebooting.
  • Ronny D'Hoore
    Ronny D'Hoore about 4 years
    Also works beautifully on Linux Mint that usually loses my HDMI audio output device upon suspend nowadays, since I added an HDMI switch between my monitor and pc. Anyhow, the command does instantly add it back to the list of devices in "Sound Settings". I saved it in /etc/pm/sleep.d to be executed automatically upon resume, it seems to be working (unless I didn't suspend long enough, will see tomorrow).
  • DARKGuy
    DARKGuy almost 4 years
    Interesting. Seems to be working and still valid in 2020 with KDE Neon. I have a question though, is it possible to run this as a command on USB plug/unplug? I have a Corsair VOID Pro Elite headset which goes nuts when I dualboot, so sometimes I have audio, sometimes I don't, but when I ran this command it worked beautifully. I even tried to replug the dongle and it didn't work until I ran this command.
  • kas
    kas over 3 years
    The list returned by "pacmd list-sinks" grows larger and larger each time I run the command in your answer. Is it possible to scan for audio devices without adding new sinks to the list?
  • kas
    kas over 3 years
    I provided an answer to this question because I found out how to restart PulseAudio in Ubuntu 20.
  • Coder Guy
    Coder Guy about 3 years
    This works, and it now seems to be necessary since upgrading to 20.04. For some reason PulseAudio intermittently fails to re-initialize the HDMI audio device for my TV after turning it off/on and I get a "Dummy Output" device instead. This answer allows me to write a short script and bind it to SSH Button on my tablet ("Zap HDMI audio")
  • Silver Moon
    Silver Moon about 3 years
    my kubuntu system was not detecting the analog audio output on motherboard. this command made it work.