Linux Mint

How do I connect Bluetooth headset on Linux Mint

Bluetooth is a short-range wireless technology that is meant to connect electronic devices to share data or connect for media-related purposes. The major application domain of Bluetooth technology is to use it for media-related tasks or sharing data. Bluetooth allows two devices to connect without requiring any modem, network, or any third medium. Therefore, it is the prior choice of users to share files/data (within a short-range). Users may connect the speakers with any computing device or smartphone to play music/movies, or to have a handset calling and texting access.

Following the importance of this technology, this guide provides a demonstration to connect Bluetooth headset to the Linux Mint system.

How do I connect Bluetooth headset on Linux Mint

This section contains the procedural guide to connect Bluetooth headset on Linux Mint using the Command Line Interface, and Graphical User Interface methods:

How to connect Bluetooth headset using the terminal in Linux Mint

To connect Bluetooth to your Linux Mint, you must follow the steps provided below.

Step 1 : Before getting into details, check the status of Bluetooth service with the help of the command written below:

$ sudo systemctl status bluetooth

Text Description automatically generated

If the service is disabled or not working; you may provide the following commands to start and enable the Bluetooth service.

$ sudo systemctl start bluetooth

$ sudo systemctl enable bluetooth

Step 2 : Ensure that your system’s Bluetooth is discoverable to all nearby devices. For this, use the discoverable option of bluetoothctl as shown in the below-mentioned command.

Note : The bluetoothctl is a Linux-based utility to manage Bluetooth devices on the system

$ bluetoothctl discoverable on

Text Description automatically generated

Now, scan for the devices by issuing the below-stated command.

$ bluetoothctl scan on

Text Description automatically generated

The above command lists down the available devices with their MAC (Media Access Control Address) addresses as well. As in our case, the device is “MINISO-V4“, so we have noted its MAC address.

Step 3 : Pair the specific device using the following syntax. For instance, the command provided below will pair the “MINISO-V4” headset using its MAC address.

$ bluetoothctl pair 19:9B:BA:AC:AE:5E

Text Description automatically generated

After pairing, it is recommended that you must trust the paired device with the help of the command written below.

$ bluetoothctl trust 19:9B:BA:AC:AE:5E

Text Description automatically generated

After pairing, check for the list of paired devices by using the command written below. And you will get your paired devices list in the output.

$ bluetoothctl paired-devices

Logo Description automatically generated with medium confidence

Step 4 : And after pairing, connect that Bluetooth headset device with the help of the command provided below. Upon successful connection, the “Connection successful” message is returned.

$ bluetoothctl connect 19:9B:BA:AC:AE:5E

Text Description automatically generated

Step 5 : Unpair or Disconnect

However, if you want to disconnect any device then you would execute the bluetoothctl command in the following way.

$ bluetoothctl disconnect 19:9B:BA:AC:AE:5E

Text Description automatically generated

You can unpair any device by using the remove keyword as shown in the command below.

$ bluetoothctl remove 19:9B:BA:AC:AE:5E

Text Description automatically generated

How to connect Bluetooth headset using Graphical Interface in Linux Mint

If your Bluetooth manager is working fine, then you will find the Bluetooth symbol on the desktop taskbar as seen in the image below.

A screenshot of a video game Description automatically generated with medium confidence

Upon clicking, all the devices will be displayed as can be seen in the image below and here the name of the headset device is “MINISO-V4”.

Graphical user interface, text, application Description automatically generated

After clicking on the Bluetooth headset name, the connection will be made instantaneously.

Graphical user interface, text, application, email, Teams Description automatically generated

And the status will be changed to “Connected” as displayed below.

Graphical user interface, application, Teams Description automatically generated

You can get further details by clicking on it and after doing so the interface obtained is displayed below.

Graphical user interface, application Description automatically generated

From the image shown above:

– You can disconnect your headset by clicking on the “Remove Device” button

– To get detailed sound settings, you can click “Sound Settings

Conclusion

Wireless technology has improved the accessibility of several devices in a network. Bluetooth is a short-range wireless technology being used to connect electronic devices, share data or play any music. This guide provides a detailed demonstration to use Bluetooth to connect your headset to the Linux Mint system. We have also provided the installation and configuration of the Bluetooth manager on Linux Mint; this configuration is required as in many cases users are not able to get the nearby devices.

About the author

Adnan Shabbir