blob: 919b45939802c17f1a4889c06f7a7b0f0390c7c6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
+++
title = "Transfer files via Bluetooth in the terminal"
description = "Transfer files via Bluetooth in terminal"
date = 2025-04-09
tags = [
"tech",
"guide",
"bluetooth"
]
+++
1. Install dependencies: `pacman -S bluez-utils bluez-tools bluez-obex`
2. Pairing devices:
```sh
bluetoothctl scan on
bluetoothctl pair <MAC>
```
3. Receiving files: `bt-obex -s ~/Downloads`
4. Sending files: `bt-obex -p <MAC> filename.txt`
|