M HYPE SPLASH
// general

LXDE bluetooth gone. How do I get it back?

By Sarah Scott

Suddenly I can't find the bluetooth icon on the LXDE system tray. I might have disabled it by mistake. How do I get it back?

I tried to open "run" from the menu and typing bluetooth-agent but nothing happens.

I used to disable bluetooth by right-clicking the icon and choosing "disable" (or something like that) just to save battery charge. It used to reappear on restart but now it doesn't. It's there in unity but not in LXDE.

lsmod | grep bluetooth gives out thisbluetooth 202226 22 bnep,btusb,rfcomm

edit: following this question Can't enable Bluetooth 13.10 I tried try sudo rfkill unblock bluetooth but it did nothing

1 Answer

Lubuntu, which has LXDE as its desktop environment, uses blueman-manager. Here's something on how to disable it:

Disable Bluetooth

This is achieved by blacklisting the relevant bluetooth modules. To find these, issue the following in LXterminal:

lsmod | grep bluetooth

An example out would be:

bluetooth 179900 23 rfcomm,bnep,btusb

Using the above example, you would edit the blacklist.conf file, again using LXterminal:

gksudo leafpad /etc/modprobe.d/blacklist.conf

and add the following lines to the end of the file:

blacklist rfcomm blacklist bnep blacklist btusb blacklist bluetooth

After rebooting, issuing:

lsmod | grep bluetooth

Should not find anything.

Sources: here and here.

1

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service, privacy policy and cookie policy