0

Every time I reboot my Ubuntu 16.04 I need to run manually this command sudo pactl load-module module-bluetooth-discover before I can connect to my bluetooth headphone or I get error "Connection Failed: blueman.bluez.errors.DBusFailedError: Protocol not available..."

What file should I add this to make sure this command is run during startup?

1 Answers1

0

You need to install the bluez package:

sudo apt-get install bluez

A startup-script called bluetooth gets created in your /etc/init.d folder. Also don't forget to enable bluetooth: Go to System Settings -> Bluetooth

DamBedEi
  • 303