Posted On March 23, 2026

How to Disable Built-in Bluetooth Device in Linux Mint

kimconnect 0 comments
blog.KimConnect.com >> Linux >> How to Disable Built-in Bluetooth Device in Linux Mint
1. List devices: lsusb

2. Make note of bluetooth devices (example):
8088:0a2b Intel Corp. Bluetooth wireless interface
0bdb:a750 Realtek Semiconductor Corp. Bluetooth 6.0 Radio

3. Create rule: sudo vim /etc/udev/rules.d/81-bluetooth-hci.rules
Add the following line, replacing 0a2b and 8088 with the Vendor ID and Product ID you identified:
SUBSYSTEM=="usb", ATTRS{idVendor}=="0a2b", ATTRS{idProduct}=="8088", ATTR{authorized}="0"

4. Reboot: sudo reboot now

Leave a Reply

Your email address will not be published. Required fields are marked *

Related Post

Logical Volume Manager (LVM) in Red Hat

Overview Most modern Linux versions are compatible with LVM, an open source equivalent to Storage…

Linux: Compiling Software

Install From RPM: rpm -ivh PACKAGENAME   Install from TAR.GZ tar -xzvf PACKAGENAME cd PACKAGENAME…

FFMPEG Ftuff (old)

Install prerequisites: --- Install DAG --- yum install rpmforge-release yum install gcc gcc-cpp gcc-c++ zlib-devel…