The correct output ought to be:
Code:
ldd /usr/bin/hcitool
linux-gate.so.1 => (0x00a48000)
libbluetooth.so.3 => /usr/lib/libbluetooth.so.3 (0x00be2000)
libc.so.6 => /lib/libc.so.6 (0x003bd000)
/lib/ld-linux.so.2 (0x00562000)
Note that /usr/lib/libbluetooth.so.3 is a link to /usr/lib/libbluetooth.so.3.2.0;
the library libbluetooth.so.3.2.0 and the link are installed with bluez-libs.
Probably something went wrong installing bluez-libs.
Check if you have /usr/lib/libbluetooth.so.3.2.0; if yes create the link
manually:
Code:
ln -s /usr/lib/libbluetooth.so.3.2.0 /usr/lib/libbluetooth.so.3
and retry ldd /usr/bin/hcitool