Linux Disable Bluetooth [ Bluetooth Input Devices (hidd) ]

by Vivek Gite · 4 comments

How do I disable bluethooth support (including bluethooth based devices) under Linux operating systems?

Bluetooth provides another metod to transfer information between various devices such as mobile phones, laptops, PDAs, PCs, printers, digital cameras, etc over a short-range wireless link.

Remove Bluetooth Hardware

Removal of bluetooth hardware module is the only way to ensure that the Bluetooth wireless remains disabled. See your systems's hardware manual which should contain information on its bluetooth capabilities. Avoid purchasing equipment that comes with bluetooth.

Disable Bluetooth Service

Type the following commands under RHEL / CentOS / Fedora / Red Hat Linux:
# /etc/init.d/bluetooth stop
# chkconfig bluetooth off

If you are using Debian / Ubuntu Linux use rcconf command to disable bluetooth service:
# update-rc.d bluetooth remove

Disable hidd Service

The hidd service used to provide support for Bluetooth input devices. If you don't use bluetooth based keyboard or mouse, disable it:
# /etc/init.d/hidd stop
# chkconfig hidd off

Disable Linux Kernel Bluetooth Modules / Driver

Type the following command to disable the driver:
The kernel’s module loading system can be configured to prevent loading of the Bluetooth module.
echo 'alias net-pf-31 off' >> /etc/modprobe.conf

Featured Articles:

Want to read Linux tips and tricks, but don't have time to check our blog everyday? Subscribe to our daily email newsletter to make sure you don't miss a single tip/tricks. Subscribe to our weekly newsletter here!

{ 4 comments… read them below or add one }

1 Philippe Petrinko 08.14.09 at 8:37 am

Hello Vivek,

Thanks for the article.
I would like to ask you:

1) Section : “If you are using Debian / Ubuntu Linux use rcconf command to disable bluetooth
service”
It seems to be odd to present a [update-rc.d] command after mentionning [rcconf].
/* I know that [rcconf] is just a text-interface to [update-rc.d] */

I mean if you use a update-rc.d command, you can do it without rcconf.

2) Section “Disable hidd Service”
This seems to be distribution-specific.
Under Debian Lenny 5.0.x, bluetooth service is named “bluetooth”, not hidd.

Command is (under root login or via sudo command of course)
/etc/init.d/bluetooth stop

Was this section intended for a specific distribution?

Thanks for you work and your answer in advance.

– Philippe

2 Philippe Petrinko 08.14.09 at 8:51 am

Another tool: [sysv-rc-conf]: this command has a text-based user interface, (no need for X11-X Window).
It allows to choose more precisely which service will run under which runlevel.
It can interactively start or stop any installed service. (use the + / – key).
It is not or less Linux distribution-specific.

– Philippe

3 Vivek Gite 08.14.09 at 10:26 am

@ Philippe

Yes, this section intended for RHEL / CentOS / Fedora / Red Hat users only.

4 Philippe Petrinko 08.24.09 at 12:32 pm

To Vivek:
> Yes, this section intended for RHEL / CentOS / Fedora / Red Hat users only.

Than, it would be better to make it clearer in labelling each section with the corresponding distribution name. Otherwise, it is unclear and brings to misunderstanding, as long as the main title says “Linux”.

TIA,

– Philippe

Leave a Comment

You can use these HTML tags and attributes: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <strike> <strong>

Previous FAQ:

Next FAQ:

nixCraft FAQ PDF Collection Now Available To All