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

Enable Mod_rewrite Url rewrite

vim /etc/httpd/conf/httpd.confLine 306, change the directory name to:<Directory "/home/www">line 237, set:AllowOverride AllLine 564, if you're…

CentOS 8: How to Only Apply Security Updates

[cuilo@test-box ~]# sudo yum --security update CentOS-8 - AppStream 12 kB/s | 4.3 kB 00:00…

How to Install OpenDNS Client on Ubuntu

Install the dynamic IP updater: # Install the appsudo apt-get install ddclient Press Enter repeatedly…