23

When trying to connect my bluetooth headphones to my computer using blueman I get the following error. Connection Failed: blueman.bluez.errors.DBusFailedError: Resource temporarily unavailable

I am using the Kubuntu flavor of ubuntu. (On a originally Xubuntu system)

Prvt_Yadav
  • 444
  • 8
  • 17
  • Have you search for blue man with sudo apt-cache search blueman or seen if you could run apt-get build-dep blueman, if you were to run service blueman status, what is the error message –  Jul 28 '18 at 10:19

8 Answers8

35

I had to unpair/pair my device again. Restarting bluetooth service didn't help.

Elder Geek
  • 36,023
  • 25
  • 98
  • 183
Jesse
  • 451
7

run this to reset its configuration. turn off and on bluetooth and connect bluetooth headphone again. i had same issue on ubuntu 16.10 and it solve it! in this case you don't need blueman. run this and in Sound setting select your headphone

rm -r ~/.config/pulse; pulseaudio -k
5

I often have this issue:

blueman.bluez.errors.DBusFailedError: Resource temporarily unavailable

with blueman on Ubuntu Mate 18.04 when waking the machine up from suspension.

Simply restarting the bluetooth service with:

sudo systemctl restart bluetooth

and rescanning usually resolves the issue quite easily.

5

I used the following command and it solved my problem:

sudo apt-get install pulseaudio-module-bluetooth
pactl load-module module-bluetooth-discover

Then try to reconnect your bluetooth headset.

ReXa
  • 51
  • 1
    Thank you! Arch users install the following aur: "pulseaudio-modules-bt" and restart bluetooth "sudo systemctl restart bluetooth". No need to reconnect anything. Just works as it should. Awesome! – Julian Pieles Jul 23 '20 at 17:29
  • My god... I almost gave up on a 250€ headset... this worked on Ubuntu 20.04 and had tried dozens of things... – Computer's Guy Sep 08 '22 at 21:03
2

Try restarting Pulse Audio, as also mentioned above. These commands worked for me.

pulseaudio --kill
pulseaudio -vvv --start
UrviG
  • 121
1

I received this error as the headset was already connected to another device (my phone). Check that the device you are wanting to connect to your Ubuntu instance is not already connected to another device, such as a mobile telephone, and then try to connect again.

1

One very easy thing you have to try before anything else, is check that there isn't any other device that is already connected to the device via bluetooth. For me it was my phone, which was connecting to a bluetooth speaker automatically. Once I disconnected it and restarted bluetooth adapter on my machine it worked out.

0

I'm using Plugalbe USB Bluetooth adaptor and ran into a similar problem. As their website site explains; "issue stems from a lack of support for these profiles on the Broadcom BCM20702 chipset found inside our device". The site provided a BCM20702 firmware update file with installation instructions which worked for me. Here's a link to that site. I hope this helps. https://plugable.com/2014/06/23/plugable-usb-bluetooth-adapter-solving-hfphsp-profile-issues-on-linux/

Jim
  • 1