bluetoothctl을 사용하여 Bluetooth LE 키보드를 연결할 수 없습니다

bluetoothctl을 사용하여 Bluetooth LE 키보드를 연결할 수 없습니다

저는 Lenovo Thinkpad X1 Tablet 2세대에서 Ubuntu 20.04를 실행하고 있습니다. 저는 최근 Bluetooth LE를 사용하는 Lenovo Trackpoint Keyboard II를 구입했습니다. 사용하다스택 교환 포스트, 블루투스 LE 키보드를 한번 작동시킬 수 있었습니다

sudo -i 
btmgmt power off
btmgmt discov on
btmgmt connectable on
btmgmt pairable on
btmgmt power on
bluetoothctl --agent KeyboardDisplay

그런 다음

connect 00:11:22:33:44:55

하지만 작동한 후에 오류가 발생했습니다.

Attempting to connect to 00:11:22:33:44:55
Failed to connect: org.bluez.Error.Failed le-connection-abort-by-local

출력 은 다음 info 00:11:22:33:44:55 과 같습니다

Device 00:11:22:33:44:55 (random)
    Name: TrackPoint Keyboard II
    Alias: TrackPoint Keyboard II
    Appearance: 0x03c1
    Icon: input-keyboard
    Paired: yes
    Trusted: yes
    Blocked: no
    Connected: no
    WakeAllowed: yes
    LegacyPairing: no
    UUID: Generic Access Profile    (00001800-0000-1000-8000-00805f9b34fb)
    UUID: Generic Attribute Profile (00001801-0000-1000-8000-00805f9b34fb)
    UUID: Device Information        (0000180a-0000-1000-8000-00805f9b34fb)
    UUID: Battery Service           (0000180f-0000-1000-8000-00805f9b34fb)
    UUID: Human Interface Device    (00001812-0000-1000-8000-00805f9b34fb)
    Modalias: usb:v17EFp60E1d0047

systemctl status bluetooth주어진

● bluetooth.service - Bluetooth service
     Loaded: loaded (/lib/systemd/system/bluetooth.service; enabled; vendor preset: enabled)
     Active: active (running) since Tue 2023-09-19 15:38:20 EDT; 21h ago
       Docs: man:bluetoothd(8)
   Main PID: 108246 (bluetoothd)
     Status: "Running"
      Tasks: 1 (limit: 9096)
     Memory: 2.2M
        CPU: 1min 11.582s
     CGroup: /system.slice/bluetooth.service
             └─108246 /usr/lib/bluetooth/bluetoothd

Sep 19 15:38:20 hamm bluetoothd[108246]: Endpoint registered: sender=:1.3360 path=/MediaEndpoint/A2DPSource/sbc_xq_>
Sep 19 15:38:20 hamm bluetoothd[108246]: Endpoint registered: sender=:1.3360 path=/MediaEndpoint/A2DPSink/sbc_xq_552
Sep 19 15:38:20 hamm bluetoothd[108246]: Endpoint registered: sender=:1.3360 path=/MediaEndpoint/A2DPSource/sbc_xq_>
Sep 19 18:59:26 hamm bluetoothd[108246]: /org/bluez/hci0/dev_C8_7B_23_56_84_6A/fd0: fd(33) ready
Sep 19 20:20:03 hamm bluetoothd[108246]: src/profile.c:ext_io_disconnected() Unable to get io data for Hands-Free V>
Sep 20 04:06:53 hamm bluetoothd[108246]: /org/bluez/hci0/dev_C8_7B_23_56_84_6A/sep1/fd1: fd(33) ready
Sep 20 11:21:06 hamm bluetoothd[108246]: /org/bluez/hci0/dev_C8_7B_23_56_84_6A/sep1/fd2: fd(33) ready
Sep 20 11:48:31 hamm bluetoothd[108246]: profiles/audio/avdtp.c:avdtp_parse_rej() SET_CONFIGURATION request rejecte>
Sep 20 11:48:31 hamm bluetoothd[108246]: src/profile.c:ext_io_disconnected() Unable to get io data for Hands-Free V>
Sep 20 11:48:32 hamm bluetoothd[108246]: src/service.c:btd_service_connect() a2dp-sink profile connect failed for C>

이 문제를 진단하고 해결하려면 어떻게 해야 합니까?

답변1

인터넷에서 좀 더 검색해서 이것을 발견했습니다아치 리눅스 게시물sudo bluetoothctl remove 00:11:22:33:44:55표준 시스템 Bluetooth 제어(GUI)를 통해 페어링하고 연결하는 것이 좋습니다 . 이렇게 했는데 이제 키보드가 두 개의 서로 다른 세션에서 작동합니다.

관련 정보