Linux – How to find out Bluez version from command line

bluetoothbluezlinux

I am using some custom Linux distribution without any UI. I would like to find out the Bluez version through the command-line. How can this be done?

Best Answer

If you have a rough idea (or are fine with covering the last 10 years), bluez provides tools in bluez-uils to request the version. Unfortunately, these tools changed between version 4 and 5, so you may have to check if one of both is installed.

For BlueZ 4.0:

bluetoothd --version

Since BlueZ 5.0, there is a new command-line tool bluetoothctl:

bluetoothctl --version
Related Question