우분투 18.04에서 블루투스가 작동하지 않습니다(최근에 설치했습니다). StackExchange에서 거의 모든 답변을 시도했지만 아무 소용이 없습니다.
다음은 문제를 이해하는 데 도움이 될 수 있는 몇 가지 명령입니다.
$ systemctl status bluetooth
● bluetooth.service - Bluetooth service
Loaded: loaded (/lib/systemd/system/bluetooth.service; enabled; vendor preset
Active: inactive (dead)
Docs: man:bluetoothd(8)
lines 1-4/4 (END)
시작할 수 있다는 것을 알고 있지만
systemctl start bluetooth
상태 외에는 아무것도 변경하지 않으므로 쓸모가 없습니다.
그리고
$ sudo bluetoothctl
수동으로 취소해야 하는 빈 커서를 제외하고는 아무 작업도 수행하지 않습니다.
어떤 답변에서 누군가 말했듯이 저도 bluez를 설치했습니다. 버전은
$ dpkg --status bluez | grep '^Version:'
Version: 5.50-0ubuntu0ppa1
블루투스 서비스를 시작 $ systemctl start bluetooth
하면 bluetoothctl
다음이 표시됩니다.
(base) ahmad@ahmad-HP-Laptop-15-da1xxx:~$ bluetoothctl
Agent registered
[bluetooth]# list
[bluetooth]# scan on
No default controller available
[bluetooth]# power
Missing on/off argument
[bluetooth]# power on
No default controller available
[bluetooth]#
하지만 상단에 보기 흉한 작은 블루투스 기호가 보이는데(아마 bluez 때문일 것임) 이를 열면 아래와 같은 창이 나타납니다.
이 문제를 해결하도록 도와주세요.
편집하다
1개의 추가 명령이 도움이 될 수 있습니다. 블루투스를 시작한 후 다음도 입력했습니다.
(base) ahmad@ahmad-HP-Laptop-15-da1xxx:~$ lspci -knn | grep Net -A3; lsusb
03:00.0 Network controller [0280]: Realtek Semiconductor Co., Ltd. RTL8821CE 802.11ac PCIe Wireless Network Adapter [10ec:c821]
Subsystem: Hewlett-Packard Company RTL8821CE 802.11ac PCIe Wireless Network Adapter [103c:831a]
Kernel driver in use: rtl8821ce
Kernel modules: rtl8821ce
Bus 002 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub
Bus 001 Device 003: ID 0408:5365 Quanta Computer, Inc.
Bus 001 Device 002: ID 04f2:1055 Chicony Electronics Co., Ltd
Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
답변1
BLUEMAN을 설치했습니다.
sudo apt-get install blueman -y && blueman-manager
이것은 나에게 효과적입니다
참고: 이 작업을 수행하기 전에 다음을 설치해야 할 수도 있습니다.
sudo apt-get install bluetooth bluez bluez-tools rfkill -y
sudo rfkill list
sudo rfkill unblock bluetooth
sudo service bluetooth start