diff options
author | miraikumiko <miraikumiko@disroot.org> | 2025-04-09 10:42:37 +0200 |
---|---|---|
committer | miraikumiko <miraikumiko@disroot.org> | 2025-04-09 10:42:37 +0200 |
commit | ed7ad1077a5fc6018df84366ebd15af5196f8ae0 (patch) | |
tree | 496310a771c23490b6ce6b495360eae47dfee94e | |
parent | e3da363d2911adac396a884f5a09c5132472b38d (diff) | |
download | miraikumiko.com-ed7ad1077a5fc6018df84366ebd15af5196f8ae0.tar.gz miraikumiko.com-ed7ad1077a5fc6018df84366ebd15af5196f8ae0.tar.bz2 |
Add transfer_files_via_bluetooth.md
-rw-r--r-- | content/en/blog/transfer_files_via_bluetooth.md | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/content/en/blog/transfer_files_via_bluetooth.md b/content/en/blog/transfer_files_via_bluetooth.md new file mode 100644 index 0000000..919b459 --- /dev/null +++ b/content/en/blog/transfer_files_via_bluetooth.md @@ -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` |