Ubuntu 15.04 Dell XPS-13
I can connect my audio devices via Bluetooth, but I can not use them as they don't show up in sounds settings as an output option (or input option).
How do I fix this?
Ubuntu 15.04 Dell XPS-13
I can connect my audio devices via Bluetooth, but I can not use them as they don't show up in sounds settings as an output option (or input option).
How do I fix this?
I tried to load the module first but I got a Failure: Module initialization failed
so you have to unload the module first:
pactl unload-module module-bluetooth-discover
and then load it again:
pactl load-module module-bluetooth-discover
After that I was able to see the audio device in audio settings.
I had the same issue here with Ubuntu Gnome 15.10 and 16.04. What helped me was adding read permissions for the gdm user on the pulseaudio bin.
sudo setfacl -m u:gdm:r /usr/bin/pulseaudio
after that restart pulseaudio (or restart your system)
pulseaudio -k
your bluetooth device should now be listed in the audio device list.
sudo setfacl -m u:1000:r-x /usr/bin/pulseaudio
where 1000 is your user id. Type id
in a terminal to view your id. Keep in mind to use r and x else all output devices are gone!
– Thorsten Niehues
Jul 21 '17 at 10:33
Blueman has a bug that will unload module-bluetooth-discover
if it is loaded during boot so that you will likely need to unpair the audio device and then
pactl load-module module-bluetooth-discover
Then pair your device and see if it appears in sound settings
$ sudo pactl load-module module-bluetooth-discover Home directory not accessible: Permission denied Connection failure: Connection refused pa_context_connect() failed: Connection refused $ sudo -i pactl load-module module-bluetooth-discover Connection failure: Connection refused pa_context_connect() failed: Connection refused
– select Nov 25 '15 at 23:07After successful connecting of the bluetooth headset, try
sudo -i pactl load-module module-bluetooth-discover
If that then allows you to select the headset as an output device, you can make the following changes:
nano /etc/pulse/default.pa
Comment out the following lines:
#.ifexists module-bluetooth-discover.so
#load-module module-bluetooth-discover
#.endif
Then in:
nano /usr/bin/start-pulseaudio-x11
Find the following lines and add after them:
if [ x”$SESSION_MANAGER” != x ] ; then
/usr/bin/pactl load-module module-x11-xsmp “display=$DISPLAY session_manager=$SESSION_MANAGER” > /dev/null
fi
# Add the following lines:
/usr/bin/pactl load-module module-bluetooth-discover
# /usr/bin/pactl load-module module-switch-on-connect #<-- Uncomment to automatically select headset on connection
Connection failure: Connection refused
after first command?
– Bassie
Dec 06 '21 at 10:58