> For the complete documentation index, see [llms.txt](https://dongle.hideez.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://dongle.hideez.com/linux-mint-22.3-cinnamon.md).

# Linux Mint 22.3 Cinnamon

This guide explains how to use a USB Bluetooth dongle on Linux Mint when the computer does not have built-in Bluetooth, the internal Bluetooth adapter is not working properly, or you are using a desktop PC.

### 1. Insert the Bluetooth Dongle

Plug the USB Bluetooth dongle into an available USB port on the computer.

It is recommended to connect the dongle directly to the PC rather than through a USB hub.

{% hint style="info" %}
Note: In many cases, Linux Mint automatically detects the USB Bluetooth dongle and shows it in the Bluetooth settings menu immediately after it is connected. If the dongle appears automatically and works correctly, running Terminal commands is not required. Commands such as `lsusb`, `hciconfig`, and `bluetoothctl` are only needed for troubleshooting if the dongle is not detected or does not work properly.
{% endhint %}

### 2. Check Whether Linux Detects the Dongle

Open Terminal and run:

```bash
lsusb
```

You should see your Bluetooth dongle listed among the USB devices.

Example:

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

### 3. Check Whether the Bluetooth Adapter Is Available

Run:

```bash
hciconfig
```

Example:

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

### 4. Open Bluetooth Settings

Open the application menu and go to:

Settings → Bluetooth

Make sure Bluetooth is enabled.

Your USB dongle should appear as the active Bluetooth adapter.

### 5. Pair a Device

Turn on Bluetooth on the device you want to connect, such as:

* phone
* headset
* speaker
* mouse
* keyboard

In Bluetooth settings:

1. Click Search or Scan.

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

2. Select the device from the list.

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

3. Click Pair.
4. Confirm the pairing code if required.

### 6. Pair Devices Through Terminal (Optional)

To pair a device through Terminal:

```bash
bluetoothctl
```

Then run:

```bash
power on
agent on
default-agent
scan on
```

Wait until your device appears.

Then use:

```bash
pair XX:XX:XX:XX:XX:XX
connect XX:XX:XX:XX:XX:XX
trust XX:XX:XX:XX:XX:XX
```

Replace `XX:XX:XX:XX:XX:XX` with the Bluetooth MAC address of your device.


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## 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/linux-mint-22.3-cinnamon.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.
