通过终端通过蓝牙在两台计算机之间共享文件


8

我有两台相邻的计算机,其中一台运行Linux的是控制台模式,另一台运行的是Windows10。我想在两者之间传输文件,而且它们都具有蓝牙功能。起初,我想到插入USB并执行以下过程:

fdisk -l
mount /dev/sdc1 /media
mkdir /media/myfiles01
cp ~/file1 ~/file2 /media/myfiles01
cd ~
umount /dev/sdc1

然后,我将删除USB设备并将其插入另一台计算机,然后将文件传输到该设备。但是我想,为什么不使用蓝牙直接共享文件?

我在该计算机上没有GUI,可以从终端使用蓝牙吗?我之前没有这方面的经验,因此,如果有可能,我需要详细的答案。

Answers:


5

首先,您需要apt install bluez-tools obexpushd

要发送和接收文件,您需要先设置和配对设备。

设定


来自Arch Wiki-蓝牙

蓝牙ctl

启动bluetoothctl交互式命令。可以输入help以获取可用命令的列表。

  • 输入,打开控制器的电源power on。默认情况下它是关闭的。
  • 输入devices以获取要配对的设备的MAC地址。
  • scan on如果设备尚未在列表中,请使用命令进入设备发现模式。
  • 使用打开代理agent on
  • 输入pair MAC Address以进行配对(制表符完成)。
  • 如果使用没有PIN的设备,则可能需要手动信任该设备才能成功重新连接。输入trust MAC Address 以这样做。
  • 最后,用于connect MAC_address建立连接。

对于文件传输的发送部分,最后两个项目符号不是必需的,但是connect对于接收部分,则需要后者。

一个示例会话可能如下所示:

# bluetoothctl 
[NEW] Controller 00:10:20:30:40:50 pi [default]
[bluetooth]# agent KeyboardOnly 
Agent registered
[bluetooth]# default-agent 
Default agent request successful
[bluetooth]# scan on
Discovery started
[CHG] Controller 00:10:20:30:40:50 Discovering: yes
[NEW] Device 00:12:34:56:78:90 myLino
[CHG] Device 00:12:34:56:78:90 LegacyPairing: yes
[bluetooth]# pair 00:12:34:56:78:90
Attempting to pair with 00:12:34:56:78:90
[CHG] Device 00:12:34:56:78:90 Connected: yes
[CHG] Device 00:12:34:56:78:90 Connected: no
[CHG] Device 00:12:34:56:78:90 Connected: yes
Request PIN code
[agent] Enter PIN code: 1234
[CHG] Device 00:12:34:56:78:90 Paired: yes
Pairing successful
[CHG] Device 00:12:34:56:78:90 Connected: no
[bluetooth]# connect 00:12:34:56:78:90
Attempting to connect to 00:12:34:56:78:90
[CHG] Device 00:12:34:56:78:90 Connected: yes
Connection successful

要使更改永久生效并在重新引导后使设备处于活动状态,udev需要一个规则:

/etc/udev/rules.d/10-local.rules

# Set bluetooth power up
ACTION=="add", KERNEL=="hci0", RUN+="/usr/bin/hciconfig %k up"

提示:替换KERNEL=="hci0"KERNEL=="hci[0-9]*"以匹配所有BT接口。

挂起/恢复周期后,可以使用自定义systemd服务自动打开设备电源:

/etc/systemd/system/bluetooth-auto-power@.service

[Unit]
Description=Bluetooth auto power on
After=bluetooth.service sys-subsystem-bluetooth-devices-%i.device suspend.target

[Service]
Type=oneshot
ExecStart=/usr/bin/hciconfig %i up

[Install]
WantedBy=suspend.target

使用您的蓝牙设备名称启用设备实例,例如bluetooth-auto-power@hci0.service


现在,您的设备已配对。检查您是否可以看到对方bt-device -l

发送

接下来,您必须启动systemd基础结构才能使发送正常工作,否则会出现以下错误:

Acquiring proxy failed: Error calling StartServiceByName for org.bluez.obex: GDBus.Error:org.freedesktop.systemd1.LoadFailed: Unit dbus-org.bluez.obex.service failed to load: No such file or directory.

进行必要的systemd更改

systemctl --user start obex
sudo systemctl --global enable obex

这样可以确保您可以发送文件。sudo第一行中的A 也会失败

您现在可以通过发送文件bluetooth-sendto --device=12:34:56:78:9A:BC filename filename2。如果传输停止在100%,ctrlc则将其完成(或提前中止)。

要知道您的设备名称(12:34:56:78:9A:BC),可以发出bt-device -l

接收


来自Raspberry Pi论坛

我们想要设置一个OBEX推送服务器,这就是为什么obexpushd需要这样做。

需要蓝牙守护程序上的兼容性标志,您必须/etc/systemd/system/dbus-org.bluez.service通过在行-C的末尾添加标志来使用您选择的编辑器进行编辑ExecStart=。它看起来应该像这样:

ExecStart=/usr/lib/bluetooth/bluetoothd -C

sudo systemctl daemon-reload编辑后重新启动或重新启动服务。选择一个放置接收文件的特定目录,例如通过sudo mkdir /bluetooth

使用启动服务器sudo obexpushd -B -o /bluetooth -n,它应该以以下方式响应:

obexpushd 0.11.2 Copyright (C) 2006-2010 Hendrik Sattler
This software comes with ABSOLUTELY NO WARRANTY.
This is free software, and you are welcome to redistribute it
under certain conditions.
Listening on bluetooth/[00:00:00:00:00:00]:9

如果这不起作用,您会得到:

obexpushd 0.11.2 Copyright (C) 2006-2010 Hendrik Sattler
This software comes with ABSOLUTELY NO WARRANTY.
This is free software, and you are welcome to redistribute it
under certain conditions.
BtOBEX_ServerRegister: Address already in use
net_init() failed

这可能是因为您正在运行另一个守护程序或程序,该守护程序或程序占用了obexpushd默认情况下使用的rfcomm通道9 。在这种情况下,将通道更改为23,如下所示:

sudo obexpushd -B23 -o /bluetooth -n

使用频道23

一旦你obexpushd运行,打开第二个终端窗口。您可以验证OBEX服务是否已注册

sudo sdptool browse local

它应该列出(在这种情况下,在频道23处),其中包括:

Service Name: OBEX Object Push
Service Description: a free OBEX server
Service Provider: obexpushd
Service RecHandle: 0x10005
Service Class ID List:
  "OBEX Object Push" (0x1105)
Protocol Descriptor List:
  "L2CAP" (0x0100)
  "RFCOMM" (0x0003)
    Channel: 23
  "OBEX" (0x0008)
Profile Descriptor List:
  "OBEX Object Push" (0x1105)
    Version: 0x0100

在该窗口中,当obexpushd它仍在运行时,使用bluetoothctlset discoverable on。现在与其他设备配对。配对必须在obexpushd运行时完成,否则其他设备将无法识别该服务可用。如果手机已经配对,则将其从其他设备bluetoothctl上删除,使用将其从Ubuntu计算机上删除,然后重新配对。

连接后(上述列表中的最后一个项目符号),您应该能够接收文件。它们将出现在/bluetooth目录中。请注意,它们将由root拥有,因此您需要sudo才能访问它们。或者,您也可以chmod 0777 /bluetooth为公共交换目录执行,因为蓝牙身份验证是基于设备的,而不是基于用户的。

为了自动化obexpushd命令,请创建文件 /etc/systemd/system/obexpush.service

[Unit]
Description=OBEX Push service
After=bluetooth.service
Requires=bluetooth.service

[Service]
ExecStart=/usr/bin/obexpushd -B23 -o /bluetooth -n

[Install]
WantedBy=multi-user.target

然后,将其设置为自动启动

sudo systemctl enable obexpush

使用重新启动或重新启动服务后sudo systemctl daemon-reload,现在应该可以双向发送和接收文件了。

尝试接收文件时,请不要忘记连接设备。


使用安卓手机和Ubuntu笔记本电脑仔细检查了这些说明。设置,发送和接收确认工作。
emk2203

注意:/etc/systemd/system/dbus-org.bluez.service很可能是的符号链接/lib/systemd/...,您不想修改它。您应该使用覆盖:创建/etc/systemd/system/dbus-org.bluez.service.d目录并在其中以.conf(如add-compat-flag.conf)结尾的文件中仅包含:([Service] ExecStart= ExecStart=/usr/lib/bluetooth/bluetoothd -C当然,带有正确的换行符)
Pikrass
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.