정보

정보

정보

어제 블루투스가 제대로 작동했지만 모든 패키지를 로 업데이트하면 yay블루투스가 연결되지 않습니다. 오늘 나는 다음을 실행했습니다.

sudo pacman -Syu
yay -Syu

이제 블루투스가 연결되지 않습니다.

내가 그것을 열었을 때 bluetoothctl그것은 나에게 주었다 No default controller available.

또한 저는 Arch Linux나 Linux 운영 체제에 대해 잘 모르기 때문에 제가 실행하기를 원하는 모든 명령을 설명해 주시겠습니까? 나를 도와주려고 노력하는 사람에게 감사합니다! :)

디버그

난 달린다:

sudo systemctl enable bluetooth 
sudo systemctl start bluetooth

sudo systemctl status bluetooth나에게주세요:

● bluetooth.service - Bluetooth service
     Loaded: loaded (/usr/lib/systemd/system/bluetooth.service; enabled; vendor preset: disable>
     Active: active (running) since Thu 2022-04-21 03:49:22 PDT; 1 day 7h ago
       Docs: man:bluetoothd(8)
   Main PID: 15162 (bluetoothd)
     Status: "Running"
      Tasks: 1 (limit: 13909)
     Memory: 852.0K
        CPU: 28ms
     CGroup: /system.slice/bluetooth.service
             └─15162 /usr/lib/bluetooth/bluetoothd --compat

Apr 21 03:49:22 hashem-damrah systemd[1]: Starting Bluetooth service...
Apr 21 03:49:22 hashem-damrah bluetoothd[15162]: Bluetooth daemon 5.64
Apr 21 03:49:22 hashem-damrah systemd[1]: Started Bluetooth service.
Apr 21 03:49:22 hashem-damrah bluetoothd[15162]: Starting SDP server
Apr 21 03:49:22 hashem-damrah bluetoothd[15162]: Bluetooth management interface 1.21 initialized
Apr 22 11:08:58 hashem-damrah systemd[1]: bluetooth.service: Current command vanished from the >

출력은 다음과 같습니다 rfkill list.

0: phy0: Wireless LAN
    Soft blocked: no
    Hard blocked: no

출력은 다음과 같습니다 sudo lsusb.

Bus 004 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub
Bus 003 Device 002: ID 05c8:03d2 Cheng Uei Precision Industry Co., Ltd (Foxlink) HP TrueVision HD Camera
Bus 003 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
Bus 002 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub
Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub

출력은 다음과 같습니다 sudo lsmod | grep blue.

bluetooth             856064  11 btrtl,btmtk,btintel,btbcm,bnep
ecdh_generic           16384  1 bluetooth
rfkill                 32768  6 hp_wmi,bluetooth,cfg80211
crc16                  16384  2 bluetooth,ext4

답변1

비슷한 문제가 있었는데 커널에서 블루투스 모듈을 언로드하고 로드하여 해결했습니다.

> rmmod btusb
> modprobe btusb

각 명령 사이에 몇 초 정도 기다려야 할 수도 있습니다.

관련 정보