Linux下轻量级蓝牙用法
如果想在Linux下用蓝牙存取文件,又不想安装blueman等笨重的东西,可以这样:
pacman -S bluez (安装蓝牙协议栈)
/etc/rc.d/dbus start
/etc/rc.d/bluetooth start
hcitool scan (查找设备)
bluez-simple-agent(依赖dbus-python和pygobject,它用于配对,需要配对时以root权限运行它)
pacman -S obexfs (用于文件操作)
obexfs -b <devices mac address> /mountpoint (以普通用户运行就行)
然后就可以在/mountpoint看到文件,可读可写,但注意不能用touch创建文件,可以echo > filename。另外速度很慢。
相关推荐
80296330 2020-09-15
SeetyST 2020-08-13
张俊杰 2020-08-02
浅梦墨汐 2020-07-28
北落不吉 2020-06-27
棋牌游戏开发 2020-06-11
greenpepper 2020-06-11
greenpepper 2020-06-13
seek 2020-06-10
dotstar 2020-06-02
hushijiao 2020-05-17
浅梦墨汐 2020-05-12
chinaycheng 2020-05-06
sixforone 2020-05-06
海豚的成长日记 2020-05-04
greenpepper 2020-04-29
greenpepper 2020-04-22
海豚的成长日记 2020-01-12