How to Connect a Bluetooth Controller on Linux: Step-by-Step Guide

Learn how to easily connect a Bluetooth controller to your Linux system using bluetoothctl commands.

0 views

To connect a Bluetooth controller on Linux, first ensure the Bluetooth service is active with `sudo systemctl start bluetooth`. Then, set the device into pairing mode. Next, use `bluetoothctl` to open the Bluetooth control tool, type `scan on` to find devices, `pair [MAC address]` to pair, and finally `connect [MAC address]` to connect. Confirm with `trust [MAC address]` to auto-connect in the future.

FAQs & Answers

  1. How do I enable Bluetooth on Linux? You can enable Bluetooth on Linux by starting the Bluetooth service with the command: sudo systemctl start bluetooth.
  2. What is bluetoothctl and how is it used? bluetoothctl is a command-line tool to manage Bluetooth devices on Linux. It allows you to scan, pair, connect, and trust devices.
  3. How can I make my Linux system auto-connect to a Bluetooth controller? After pairing and connecting with bluetoothctl, use the command trust [MAC address] to enable auto-connection in the future.