首先,您需要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
它仍在运行时,使用bluetoothctl
set 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
,现在应该可以双向发送和接收文件了。
尝试接收文件时,请不要忘记连接设备。