Add transfer_files_via_bluetooth.md
This commit is contained in:
parent
e3da363d29
commit
ed7ad1077a
1 changed files with 23 additions and 0 deletions
23
content/en/blog/transfer_files_via_bluetooth.md
Normal file
23
content/en/blog/transfer_files_via_bluetooth.md
Normal file
|
@ -0,0 +1,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`
|
Loading…
Add table
Add a link
Reference in a new issue