Bluetooth
This article describes the configuration and usage of Bluetooth controllers and devices.
Contents
Prerequisites
This article assumes that udev and USB have been previously configured.
Installation
Kernel
In most cases enabling RFCOMM, HIDP, HCI USB and/or HCI UART should be sufficient. The User-space I/O driver for HID input devices should be enabled for Bluetooth keyboards and mice.
[*] Networking support ---> <M> Bluetooth subsystem support ---> [*] Bluetooth Classic (BR/EDR) features <*> RFCOMM protocol support [ ] RFCOMM TTY support < > BNEP protocol support [ ] Multicast filter support [ ] Protocol filter support <*> HIDP protocol support [*] Bluetooth High Speed (HS) features [*] Bluetooth Low Energy (LE) features Bluetooth device drivers ---> <M> HCI USB driver <M> HCI UART driver <*> RF switch subsystem support ---> Device Drivers ---> HID support ---> <*> User-space I/O driver support for HID subsystem
USE flags
BlueZ is an implementation of the Bluetooth protocol stack for Linux, and it is provided by the net-wireless/bluez package.
Bluetooth support can be enabled system-wide by setting the USE variable to bluetooth:
/etc/portage/make.confUSE="bluetooth"
Emerge
The system needs to be updated if the USE variable was set to bluetooth:
root #emerge --ask --changed-use --deep @worldInstall BlueZ:
root #emerge --ask --noreplace net-wireless/bluezConfiguration
Permissions
Permissions for Bluetooth devices will be handled automatically if the USE variable is set to acl, and ConsoleKit or systemd is being used.
Alternatively, adding a user to the plugdev group will allow that user to access Bluetooth devices:
root #gpasswd -a <user> plugdevServices
OpenRC
Start bluetooth:
root #rc-service bluetooth startStart bluetooth at boot:
root #rc-update add bluetooth defaultsystemd
Start bluetooth:
root #systemctl start bluetoothStart bluetooth at boot:
root #systemctl enable bluetoothUsage
Controller setup
Display controller information:
hciconfig and other utilities are only available if net-wireless/bluez is installed with the
deprecated USE flag enabled.root #hciconfig -a
hci0: Type: BR/EDR Bus: USB
BD Address: 00:02:72:2F:A9:33 ACL MTU: 1021:8 SCO MTU: 64:1
UP RUNNING PSCAN
RX bytes:1166 acl:0 sco:0 events:43 errors:0
TX bytes:960 acl:0 sco:0 commands:43 errors:0
Features: 0xbf 0xfe 0xcf 0xfe 0xdb 0xff 0x7b 0x87
Packet type: DM1 DM3 DM5 DH1 DH3 DH5 HV1 HV2 HV3
Link policy: RSWITCH SNIFF
Link mode: SLAVE ACCEPT
Name: 'BlueZ 5.21'
Class: 0x000104
Service Classes: Unspecified
Device Class: Computer, Desktop workstation
HCI Version: 4.0 (0x6) Revision: 0x1000
LMP Version: 4.0 (0x6) Subversion: 0x220e
Manufacturer: Broadcom Corporation (15)
Where hci0 is the name of the controller, and UP (3rd line) indicates that the controller is enabled.
Enable the controller if hciconfig indicates (with DOWN) (3rd line) that the controller is disabled:
root #hciconfig hci0 upWhen attempting to enable the controller, the following message may be displayed: Can't init device hci0: Operation not possible due to RF-kill
In this case, query the state of the Bluetooth radio transmitter with rfkill:
root #rfkill list bluetooth
0: hci0: Bluetooth
Soft blocked: no
Hard blocked: no
rfkill can be installed with the net-wireless/rfkill package, or the >=sys-apps/util-linux-2.31 package.
If Bluetooth is blocked or disabled in the BIOS/UEFI, rfkill may incorrectly list the controller as
Hard blocked: no.Unblock the controller if rfkill indicates (with Soft blocked: yes) that the controller is blocked:
root #rfkill unblock bluetoothIf rfkill indicates (with Hard blocked: yes) that the controller is blocked, unblock the controller by physical switch or keyboard function key.
Bluetooth controllers can be enabled automatically by setting AutoEnable=true in /etc/bluetooth/main.conf:
/etc/bluetooth/main.conf[Policy] AutoEnable=true
In some instances Bluetooth controllers may have been soft-blocked by power management tools in udev. Make sure state is set to 1 in the corresponding rule file, or remove the following line entirely:
/etc/udev/rules.d/10-local-powersave.rulesSUBSYSTEM=="rfkill", ATTR{type}=="bluetooth", ATTR{state}="1"
Device pairing
Bluetooth devices need to be paired with a Bluetooth controller before they can be used. This is done by entering a PIN (or other code) on both devices via an interaction agent. Certain devices such as headsets do not allow entering an arbitrary PIN. These devices use a static PIN, which is usually 0000, 1111, 1234 or 9999. There are also devices (e.g. Sony BD Remote Control) that do not require PIN entry, and attempting to enter a PIN when prompted will result in failure. Paring can be skipped with such devices.
This article only covers device pairing with bluetoothctl, which is a command-line interaction agent provided by the net-wireless/bluez package. If a graphical desktop environment is being used, device paring can be done with a graphical interaction agent. For KDE use kde-plasma/bluedevil, for GNOME use net-wireless/gnome-bluetooth, and for GTK+ use net-wireless/blueman.
Previously paired devices will need to be paired again when upgrading from BlueZ 4.
Start bluetoothctl:
user $bluetoothctlList the available controllers:
[bluetooth]#listDisplay information about a controller:
[bluetooth]#show controller_mac_addressSet the default controller:
[bluetooth]#select controller_mac_addressPower on the controller:
[bluetooth]#power onEnable the agent and set it as default:
[bluetooth]#agent on
[bluetooth]#default-agent
Set the controller as discoverable (temporarily for 3 minutes) and pairable:
[bluetooth]#discoverable on
[bluetooth]#pairable on
Scan for devices:
[bluetooth]#scan onPut the device into pairing mode. This generally involves pressing a button or a combinations of buttons, usually for several seconds.
Discover the device MAC address:
[bluetooth]#devicesPair with the device:
[bluetooth]#pair device_mac_addressEnter the PIN if prompted:
[agent]PIN code: ####Allow the service authorization if requested:
[agent]Authorize service service_uuid (yes/no): yesTrust the device:
[bluetooth]#trust device_mac_addressConnect to the device:
[bluetooth]#connect device_mac_addressDisplay information about the device:
[bluetooth]#info device_mac_addressThe device is now paired:
[bluetooth]#quit