# Disabling the Internal Bluetooth

## &#x20;**Disabling the Internal** Bluetooth:

**Step 1: Identify the Bluetooth Device ID**

* Open the terminal.
* Enter the following command to list your USB devices:

```bash
lsusb
```

* You will see a list of connected devices similar to the example below (your list will differ)

<figure><img src="/files/WvvTqAeRUmrWb8Ddl7Xm" alt=""><figcaption></figcaption></figure>

{% hint style="info" %}
Identify the internal Bluetooth device. In this example, it is the Broadcom Corp. BCM2046B1 USB 2.0 Hub with the vendor **ID `0a5c`** and product **ID `4500`**.
{% endhint %}

**Step 2: Create a Udev Rule to Disable the Internal Bluetooth Device**

* Create a new file named `81-bluetooth-hci.rules` in the `/etc/udev/rules.d` directory by running the following command in the terminal:

```bash
sudo nano /etc/udev/rules.d/81-bluetooth-hci.rules
```

* Add the following content to the file, replacing `0a5c` and `4500` with the vendor ID and product ID of your internal Bluetooth device:

```
SUBSYSTEM=="usb", ATTRS{idVendor}=="0a5c", ATTRS{idProduct}=="4500", ATTR{authorized}="0"
```

Make sure to save the file by pressing `Ctrl+X`, then `Y`, and `Enter`.

**Step 3: Reboot the Computer**

* Restart your computer to apply the changes.

```
sudo reboot
```

After rebooting, the internal Bluetooth device should be disabled.

{% hint style="info" %}
**Now you can come back to the previous step and configure Hideez Dongle as an external Bluetooth adapter.**
{% endhint %}


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://dongle.hideez.com/how-to-use-hideez-bluetooth-dongle-on-linux/disabling-the-internal-bluetooth.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
