4

Ubuntu 12.04 LTS is using BlueZ ver4.98 which is not the latest version. I would like to upgrade to the latest BlueZ version. How can this be done?

2 Answers2

8

Get the latest version from here.

E.G.:

wget http://www.kernel.org/pub/linux/bluetooth/bluez-5.30.tar.xz

Extract

tar xf bluez-5.30.tar.xz

Build

cd bluez-5.30
./configure
make

Then install with

sudo make install

or with checkinstall for a .deb package:

sudo apt-get install checkinstall
sudo checkinstall
A.B.
  • 92,125
5

For successful build as per @A.B's post, your system should meet following dependencies. I've Ubuntu 14.04.1 / Kernel 3.16.0

apt-get install libglib2.0-dev libdbus-1-dev libudev-dev libical-dev libreadline6 libreadline6-dev

./configure
make
make install

If you get an error while ./configure saying configure: error: systemd system unit directory, try following solution by a user:mrd [original post].

./configure --prefix=/usr --mandir=/usr/share/man --sysconfdir=/etc --localstatedir=/var --with-systemdsystemunitdir=/lib/systemd/system --with-systemduserunitdir=/usr/lib/systemd
Ocramius
  • 105
Samir
  • 168