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

Ping Command’s First Packet Toward LDAP Server(s) Takes 2 Seconds to Start

Case 1: Are DNS servers working? dig returns results right away => defined dns servers…

Linux: How to set a static IP address

Set Static IP Address ---- vim /etc/sysconfig/networking/profiles/default/ifcfg-eth0 vim /etc/sysconfig/network-scripts/ifcfg-eth0 ---- DEVICE=eth0 BOOTPROTO=none HWADDR=00:0C:29:d7:5b:d3 ONBOOT=yes TYPE=Ethernet…

How To Install Google Earth on Linux Mint, Debian, or Ubuntu

# Install Google Earth cd /tmp wget https://dl.google.com/dl/earth/client/current/google-earth-pro-stable_current_amd64.deb sudo dpkg -i google-earth-pro-stable_current_amd64.deb # Run the…