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

Linux: Copy File Contents Into Clipboard

Install XCLIP (if not already installed) sudo apt install xclip -y Reading package lists... Done…

LAMPP Passwords Change

Change ProFTP password: vim /opt/lampp/etc/proftpd.conf <?-- delete the last line in password, leave the first…

How To Install Ubuntu Server 20.04

Overview: As of January 2021, the free version of Redhat, namely CentOS 8 has been…