Turning on Bluetooth

Is there another way to turn on Bluetooth? The toggle will not move.

You can try these instructions:

is bluetooth enabled?

systemctl status bluetooth.service

[g@g-xps8940 ~]$ systemctl status bluetooth.service
○ bluetooth.service - Bluetooth service
Loaded: loaded (/usr/lib/systemd/system/bluetooth.service; disabled; prese>
Active: inactive (dead)
Docs: man:bluetoothd(8)
lines 1-4/4 (END)

So if you want to start the service you can:

systemctl start bluetooth

If you want it started when you log in (enabled) you can:

systemctl enable bluetooth

If you want to do both of the above in a single command then you can:

systemctl enable bluetooth --now

Does your bluetooth (and its controls) now work as expected?

3 Likes

Yes. Thank you very much.

1 Like

This topic was automatically closed 2 days after the last reply. New replies are no longer allowed.