PDA

View Full Version : [SOLVED] Bluetooth Applet not visible but bluetooth working OK



gdesilva
November 8th, 2009, 08:20 AM
Hi,

I installed Ubuntu 9.04 from the LiveCD and then upgraded to 9.10 via the Net. I have a bluetooth mouse and a keyboard both of which are working OK. However, the bluetooth applet is not visible and when I do System -> Preferences -> Bluetooth I get the message 'No Bluetooth Adapters are present'.

I am a newbie to Ubuntu and would appreciate any help on resolving this.

Thanks

gdesilva
November 9th, 2009, 04:35 AM
For the benefit of those who may come across this problem, simply unplugging and plugging back the bluetooth adapter at the time of rebooting appears to have fix the problem. Now I can see the bluetooth applet and configure additional devices.

gdesilva
November 30th, 2009, 11:51 AM
The problem appears to be that the bluetooth device stays in HID Proxy mode. The procedure outlined in the following post by niteshifter is the work around for this problem.

http://ubuntu-ky.ubuntuforums.org/showthread.php?p=8298037

gdesilva
March 5th, 2010, 06:08 AM
I came across the proper solution for this...

sudo vi /lib/udev/rules.d/70-hid2hci.rules

and change
# Logitech devices (hidraw)
KERNEL=="hiddraw*", ATTRS{idVendor}=="046d", ATTRS{idProduct}=="c70[345abce]|c71[34bc]", \
RUN+="hid2hci --method=logitech-hid --devpath=%p"

to

# Logitech devices (hidraw)
KERNEL=="hiddev*", ATTRS{idVendor}=="046d", ATTRS{idProduct}=="c70[345abce]|c71[34bc]", \
RUN+="hid2hci --method=logitech-hid --devpath=%p"

Thanks to the person who provided this info on a post elsewhere.