Skip to main content

You are not logged in. Your edit will be placed in a queue until it is peer reviewed.

We welcome edits that make the post easier to understand and more valuable for readers. Because community members review edits, please try to make the post substantially better than how you found it, for example, by fixing grammar or adding additional resources and hyperlinks.

4
  • 1
    @Cadoiz pacmd was (at 2018) the name of Pulse Audio deamon. I have not checked recently if the deamon name has been changed. Search about Pulse Audio. Commented Nov 7, 2022 at 12:23
  • Thanks for the answer. Pulse Audio can be installed with one of apt-get install pulseaudio-utils, brew install pulseaudio, brew install pulumi or nix-env -iA nixpkgs.pulseaudio among others. I tried to extend your command for listing the output profiles as follows: pacmd list |grep -E 'Default |module\(s\)|sink\(s\)|source\(s\)|client\(s\)|card\(s\)|sink input|index:|output:' | grep -B2 'output:' - that way, you will easily see the index of each profile and to what it belongs. Commented Nov 7, 2022 at 15:25
  • Unfortunately my result was the same as with other methods: The output seems to change according to console, but not according to the gui util and real sound. Note that there could be more than one active sound profile - and you can omit the second grep to also see the "dead" indices. Commented Nov 7, 2022 at 15:26
  • 1
    This askubuntu answer showed me pacmd list-sinks. Analogously, you could use an easier command: pacmd list-cards |grep -E 'index:|name:|output:' Commented Nov 7, 2022 at 15:34