Linux禁用蓝牙
时间:2020-01-09 10:41:27 来源:igfitidea点击:
如何在Linux操作系统下禁用bluethooth支持(包括基于bluethooth的设备)蓝牙输入设备(hidd)?
蓝牙提供了另一种方法,可以通过短距离无线链路在各种设备(例如手机,笔记本电脑,PDA,PC,打印机,数码相机等)之间传输信息。
删除蓝牙硬件
卸下蓝牙硬件模块是确保蓝牙无线功能保持禁用状态的唯一方法。
请参阅系统硬件手册,其中应包含有关其蓝牙功能的信息。
避免购买带有蓝牙的设备。
禁用蓝牙服务
在RHEL/CentOS/Fedora/Red Hat Linux下执行以下命令:
# /etc/init.d/bluetooth stop # chkconfig bluetooth off
如果您使用的是Debian/Ubuntu Linux,请使用rcconf命令禁用蓝牙服务:
# update-rc.d bluetooth remove
禁用隐藏服务
hidd服务用于为蓝牙输入设备提供支持。
如果您不使用基于蓝牙的键盘或鼠标,请禁用它:
# /etc/init.d/hidd stop # chkconfig hidd off
禁用Linux内核蓝牙模块/驱动程序
执行以下命令以禁用驱动程序:可以将内核模块加载系统配置为阻止加载蓝牙模块。
echo 'alias net-pf-31 off' >> /etc/modprobe.conf