Skip to content

Instantly share code, notes, and snippets.

@aidos-dev
Last active December 29, 2024 04:56
Show Gist options
  • Save aidos-dev/b49078c1d8c6bb1621e4ac199d18213b to your computer and use it in GitHub Desktop.
Save aidos-dev/b49078c1d8c6bb1621e4ac199d18213b to your computer and use it in GitHub Desktop.
How to connect Apple AirPods to Linux (Debian/Ubuntu/Mint)

How to connect Apple AirPods to Linux (Debian/Ubuntu/Mint)

Step 1.

Open your terminal.

In the root directory run the command:

sudo nano /etc/bluetooth/main.conf

The terminal will ask you to input your password. Please type it :)

Step 2.

After that a file with configurations will be opened in a terminal window.

Find the next line:

#ControllerMode = dual

Step 3.

Change "dual" to "bredr". The final code must be:

ControllerMode = bredr

Step 4.

To save changes and exit nano editor do the following:

  1. On your keyboard press:
Ctrl + x
  1. On the bottom of nano editor you will see a qustion:

"Save modified buffer?"

  1. Press on your keyboard: y
  2. Press on your keyboard: Enter

After these steps you will come back to regular terminal window on the same directory as before.

Step 5.

Run the next command in a terminal:

sudo /etc/init.d/bluetooth restart

After that you will see the message:

"Restarting bluetooth (via systemctl): bluetooth.service."

Step 6.

Go to your computer settings and enable Bluetooth so it starts to look for bluetooth connections

Step 7.

The next actions should be performed exactly as described:

  1. Put your airpods (both) inside the case

  2. Keep the cover opened

  3. With cover opened and airpods inside the case press and hold the button on the back of the airpods case.

  4. Hold the button until you see the light blinking on the front side of the case, it can also make a sound signaling that it is in pairing mode

Step 8.

Finaly, after all these steps you should find your AirPods on Bluetooth settings section and connect it ;)

@Bashiri1990
Copy link

worked for me on ubuntu 22.04. thanks

@Loumier
Copy link

Loumier commented Nov 22, 2024

Thanks that has worked for me on Ubuntu 22.04.5 LTS. However, I also had a Mx Master 3 and this mode made the undiscoverable. So I had to revert the configuration, but after pairing the Airpods kept working.

@shlyaiger
Copy link

Thanks it's worked for me on Ubuntu 24.04.1 LTS with AirPods Pro

@jjjllxx
Copy link

jjjllxx commented Nov 28, 2024

This is really clear and useful! Thanks a lot!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment