9

How can I see what ALSA version is installed on my machine?

I tried:

$ alsa --version
Usage: /sbin/alsa {unload|reload|force-unload|force-reload|suspend|resume}

2 Answers2

9

To find out the version of alsa you are using, just press Ctrl+Alt+T on your keyboard to open Terminal. When it opens, run the command(s) below:

cat /proc/asound/version
Mitch
  • 107,631
5

The version of the kernel drivers is shown in /proc/asound/version, but this depends only on your kernel version (and the latest version shows nothing but the kernel version number).

To get the version number of the user-space tools, execute aplay --version.

CL.
  • 1,745
  • aplay is part of the alsa-utils package. But the other user-space packages are typically updated in parallel. – CL. Dec 27 '15 at 20:53