Forrest logo
back to the pamixer tool

pamixer:tldr:32fd8

pamixer: List all sinks and sources with their corresponding IDs.
$ pamixer --list-sinks --list-sources
try on your machine

The command "pamixer --list-sinks --list-sources" is used to list the available sinks and sources in the PulseAudio sound server.

PulseAudio is a sound server that manages audio devices on Linux systems. It allows multiple applications to share audio devices and provides various controls and features for managing sound settings.

In this specific command:

  • "pamixer" is the command-line tool for controlling PulseAudio from the shell.
  • "--list-sinks" option is used to list all the available audio output devices, also known as "sinks". These sinks are the devices to which audio can be directed, such as speakers or headphones.
  • "--list-sources" option is used to list all the available audio input devices, also known as "sources". These sources are the devices from which audio can be captured, such as microphones or line-in ports.

By running this command, you will get a list of sinks and sources that are recognized and managed by PulseAudio on your system. This can be useful when you need to troubleshoot audio issues or configure specific audio devices or sources for applications.

This explanation was created by an AI. In most cases those are correct. But please always be careful and never run a command you are not sure if it is safe.
back to the pamixer tool