Envie e receba arquivos via bluetoothctl no Debian jessie

5

Já fiz o emparelhamento e me conectei com sucesso ao meu smartphone. Agora, quando eu enviar arquivos do meu telefone para o meu laptop, os arquivos não serão enviados. Como posso enviar e receber arquivos usando bluetoothctl no Debian 8.7? Alguém pode me dar alguma fonte de leitura, não consigo encontrar muito sobre bluetoothctl na internet.

    
por ateymuri 18.03.2017 / 01:13

1 resposta

4

O bluetoothctl é usado apenas para controlar seus dispositivos bluetooth. Para transferir seu arquivo, você deve usar outras ferramentas, por exemplo, obexftp :

apt install obexftp

man obexftp :

obexftp is used to access files on mobile equipment, i.e. cell phones. 
With obexftpd you can transfer files between any computers using IrDA, 
Bluetooth and TCP/IP

To get the file bar from directory foo from the first bluetooth device:

obexftp -b -c foo -g bar

ou usando o MAC_Address:

obexftp -b MAC_address -g bar

To send the file bar to directory foo with device on first serial port:

obexftp -t /dev/ttyS0 -c foo -p bar

Ou usando o MAC_Address:

obexftp -b MAC_address -p bar

Opção:

-p source, --put source
-g source, --get source
-b device, --bluetooth device
-t device, --tty device
    
por 18.03.2017 / 09:48