#1 Le 10/02/2024, à 18:12
- louise.perrot
Le bluetooth ne marche plus après certains redémarrages (23.10)
Bonjour, depuis que je suis passée à Ubuntu 23.10, il arrive qu'après un redémarrage le bluetooth ne marche plus (je ne peux plus du tout l'activer). Pour le refaire marcher, j'exécute les commandes suivantes que j'ai vu passées sur ce forum (je ne me souviens pas de quelle discussion en particulier) :
louise@Vivobook:~$ wget https://github.com/winterheart/broadcom-bt-firmware/raw/master/brcm/BCM43142A0-04ca-2006.hcd
--2024-02-10 18:08:03-- https://github.com/winterheart/broadcom-bt-firmware/raw/master/brcm/BCM43142A0-04ca-2006.hcd
Résolution de github.com (github.com)… 140.82.121.3
Connexion à github.com (github.com)|140.82.121.3|:443… connecté.
requête HTTP transmise, en attente de la réponse… 302 Found
Emplacement : https://raw.githubusercontent.com/winterheart/broadcom-bt-firmware/master/brcm/BCM43142A0-04ca-2006.hcd [suivant]
--2024-02-10 18:08:03-- https://raw.githubusercontent.com/winterheart/broadcom-bt-firmware/master/brcm/BCM43142A0-04ca-2006.hcd
Résolution de raw.githubusercontent.com (raw.githubusercontent.com)… 2606:50c0:8001::154, 2606:50c0:8003::154, 2606:50c0:8000::154, ...
Connexion à raw.githubusercontent.com (raw.githubusercontent.com)|2606:50c0:8001::154|:443… connecté.
requête HTTP transmise, en attente de la réponse… 200 OK
Taille : 29605 (29K) [application/octet-stream]
Enregistre : ‘BCM43142A0-04ca-2006.hcd’
BCM43142A0-04ca-200 100%[===================>] 28,91K --.-KB/s ds 0s
2024-02-10 18:08:04 (65,4 MB/s) - ‘BCM43142A0-04ca-2006.hcd’ enregistré [29605/29605]
louise@Vivobook:~$ sudo mv BCM43142A0-04ca-2006.hcd /lib/firmware/brcm/BCM43142A0-04ca-2006.hcd
[sudo] Mot de passe de louise :
louise@Vivobook:~$ reboot
Après ça le bluetooth remarche, mais mon problème est qu'il arrête à nouveau de fonctionner quelques jours plus tard, sans que je fasse quelque chose de particulier sur mon PC. Quelqu'un saurait comment empêcher le bluetooth d'arrêter de fonctionner en premier lieu pour que je n'aie pas à taper ces commandes régulièrement ?
Merci d'avance !
Hors ligne
#2 Le 10/02/2024, à 18:17
- xubu1957
Re : Le bluetooth ne marche plus après certains redémarrages (23.10)
Bonjour,
Il faudrait fournir, en te servant du Retour utilisable de commande :
uname -a; lspci -nnk | grep -iA3 net; lsusb; sudo dmesg | grep -i bluetooth; sudo dmesg | grep -i firmware; lsmod | grep bluetooth
dpkg -l | grep blue
rfkill list all
sudo service bluetooth status | cat
Conseils pour les nouveaux demandeurs et pas qu'eux
Important : Pensez à passer vos sujets en [Réso|u] lorsque ceux-ci le sont, au début du titre en cliquant sur Modifier sous le premier message, et un bref récapitulatif de la solution à la fin de celui-ci. Merci. Membre de Linux-Azur
En ligne
#3 Le 10/02/2024, à 18:38
- jplemoine
Re : Le bluetooth ne marche plus après certains redémarrages (23.10)
Le fichier provient probablement du packet linux-firmware. C'est certainement lors d'une mise à jour que le fichier "saute".
que donne :
apt-file search BCM43142A0-04ca-2006.hcd
Si ça répond :
La commande « apt-file » n'a pas été trouvée, mais peut être installée avec :
apt install apt-file
apt install apt-file
apt-file update
apt-file search BCM43142A0-04ca-2006.hcd
Une fois, le paquet identifié, il faut bloquer sa mise à jour ou celui du fichier mais je ne souviens plus : un autre aidant ?
Déjà ce que tu peux faire et de le télécharger et de mettre une version à l'abri.
là, tu dois avoir le fichier dans /home/louise.
tu fais alors un cp au lieu du mv
sudo cp BCM43142A0-04ca-2006.hcd /lib/firmware/brcm/BCM43142A0-04ca-2006.hcd
Comme ça, la prochaine fois, tu fais :
sudo cp /home/louise/BCM43142A0-04ca-2006.hcd /lib/firmware/brcm/BCM43142A0-04ca-2006.hcd
Voire faire un script.
Ce compte ne servira plus : vous pouvez le supprimer si le coeur vous en dit...
Laissé par l'auteur pour historique.
Hors ligne
#4 Le 10/02/2024, à 18:46
- xubu1957
Re : Le bluetooth ne marche plus après certains redémarrages (23.10)
Pour info > github.com/winterheart/broadcom-bt-firmware?tab=readme-ov-file et winterheart/broadcom-bt-firmware
Hello.
There great domains of Unknowns. Broadcom don't ships license with drivers on Windows Update. I obtained current license from their official site when drivers has been available on it. According to it (I think) you cannot ships my tarball as source for ebuilds. I don't have any contacts with Broadcom to clear this issue.
Il y a de grands domaines d'inconnus. Broadcom ne fournit pas de licence avec les pilotes sur Windows Update. J'ai obtenu la licence actuelle sur leur site officiel lorsque les pilotes ont été disponibles sur celui-ci. D'après eux (je pense) vous ne pouvez pas utiliser mon fichier tarball comme source pour les ebuilds. Je n'ai aucun contact avec Broadcom pour résoudre ce problème.
> github.com/winterheart/broadcom-bt-firmware/issues/4 Clarification needed: Licence and binary distribution
Des exemples pour l'installation de ces pilotes, sont fournies dans [Tuto] Pas de Bluetooth ? Quelques solutions.
Dernière modification par xubu1957 (Le 10/02/2024, à 18:55)
Conseils pour les nouveaux demandeurs et pas qu'eux
Important : Pensez à passer vos sujets en [Réso|u] lorsque ceux-ci le sont, au début du titre en cliquant sur Modifier sous le premier message, et un bref récapitulatif de la solution à la fin de celui-ci. Merci. Membre de Linux-Azur
En ligne
#5 Le 11/02/2024, à 19:23
- louise.perrot
Re : Le bluetooth ne marche plus après certains redémarrages (23.10)
Bonjour, merci pour vos réponses, je donnerai les résultats des commandes dès que le bluetooth ne s'activera de nouveau plus.
Hors ligne
#6 Le 18/02/2024, à 19:20
- louise.perrot
Re : Le bluetooth ne marche plus après certains redémarrages (23.10)
Bonsoir, le problème est revenu donc voici le retour des commandes demandées :
Voilà pour les commandes de @xubu19
louise@Vivobook:~$ uname -a; lspci -nnk | grep -iA3 net; lsusb; sudo dmesg | grep -i bluetooth; sudo dmesg | grep -i firmware; lsmod | grep bluetooth
Linux Vivobook 6.5.0-17-generic #17-Ubuntu SMP PREEMPT_DYNAMIC Thu Jan 11 14:01:59 UTC 2024 x86_64 x86_64 x86_64 GNU/Linux
02:00.0 Network controller [0280]: Intel Corporation Wi-Fi 6 AX200 [8086:2723] (rev 1a)
Subsystem: Intel Corporation Wi-Fi 6 AX200NGW [8086:0084]
Kernel driver in use: iwlwifi
Kernel modules: iwlwifi
Bus 004 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub
Bus 003 Device 005: ID 058f:6366 Alcor Micro Corp. Multi Flash Reader
Bus 003 Device 004: ID 0408:30e1 Quanta Computer, Inc. USB2.0 HD UVC WebCam
Bus 003 Device 003: ID 8087:0029 Intel Corp. AX200 Bluetooth
Bus 003 Device 002: ID 04f3:0c6e Elan Microelectronics Corp. ELAN:Fingerprint
Bus 003 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
Bus 002 Device 002: ID 174c:55aa ASMedia Technology Inc. ASM1051E SATA 6Gb/s bridge, ASM1053E SATA 6Gb/s bridge, ASM1153 SATA 3Gb/s bridge, ASM1153E SATA 6Gb/s bridge
Bus 002 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub
Bus 001 Device 002: ID 045e:028e Microsoft Corp. Xbox360 Controller
Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
[sudo] Mot de passe de louise :
[ 3.344162] Bluetooth: Core ver 2.22
[ 3.344201] NET: Registered PF_BLUETOOTH protocol family
[ 3.344204] Bluetooth: HCI device and connection manager initialized
[ 3.344215] Bluetooth: HCI socket layer initialized
[ 3.344219] Bluetooth: L2CAP socket layer initialized
[ 3.344532] Bluetooth: SCO socket layer initialized
[ 5.091543] Bluetooth: BNEP (Ethernet Emulation) ver 1.3
[ 5.091548] Bluetooth: BNEP filters: protocol multicast
[ 5.091553] Bluetooth: BNEP socket layer initialized
[ 5.380236] Bluetooth: hci0: Reading Intel version command failed (-110)
[ 5.380247] Bluetooth: hci0: command 0xfc05 tx timeout
[ 0.089743] Spectre V2 : Enabling Restricted Speculation for firmware calls
[ 0.297267] ACPI: [Firmware Bug]: BIOS _OSI(Linux) query ignored
[ 0.317741] acpi PNP0A08:00: [Firmware Info]: MMCONFIG for domain 0000 [bus 00-7f] only partially covers this bridge
[ 2.968483] systemd[1]: systemd-pcrmachine.service - TPM2 PCR Machine ID Measurement was skipped because of an unmet condition check (ConditionPathExists=/sys/firmware/efi/efivars/StubPcrKernelImage-4a67b082-0a4c-41cf-b6c7-440b29bb8c4f).
[ 3.358239] iwlwifi 0000:02:00.0: loaded firmware version 77.2df8986f.0 cc-a0-77.ucode op_mode iwlmvm
[ 4.809856] [drm] Loading DMUB firmware via PSP: version=0x01010027
[ 4.810307] [drm] Found VCN firmware Version ENC: 1.20 DEC: 6 VEP: 0 Revision: 0
[ 4.810313] amdgpu 0000:04:00.0: amdgpu: Will use PSP to load VCN firmware
bluetooth 1073152 15 btrtl,btmtk,btintel,btbcm,bnep,btusb
ecdh_generic 16384 1 bluetooth
louise@Vivobook:~$ dpkg -l | grep blue
ii bluez 5.68-0ubuntu1.1 amd64 Bluetooth tools and daemons
ii bluez-cups 5.68-0ubuntu1.1 amd64 Bluetooth printer driver for CUPS
ii bluez-obexd 5.68-0ubuntu1.1 amd64 bluez obex daemon
ii gir1.2-gnomebluetooth-3.0:amd64 42.6-1 amd64 Introspection data for GnomeBluetooth
ii gnome-bluetooth-3-common 42.6-1 all GNOME Bluetooth 3 common files
ii gnome-bluetooth-sendto 42.6-1 amd64 GNOME Bluetooth Send To app
ii libbluetooth3:amd64 5.68-0ubuntu1.1 amd64 Library to use the BlueZ Linux Bluetooth stack
ii libgnome-bluetooth-3.0-13:amd64 42.6-1 amd64 GNOME Bluetooth 3 support library
ii libgnome-bluetooth-ui-3.0-13:amd64 42.6-1 amd64 GNOME Bluetooth 3 UI support library
ii libspa-0.2-bluetooth:amd64 0.3.79-2 amd64 libraries for the PipeWire multimedia server - bluetooth plugins
louise@Vivobook:~$ rfkill list all
0: hci0: Bluetooth
Soft blocked: no
Hard blocked: no
1: asus-wlan: Wireless LAN
Soft blocked: no
Hard blocked: no
2: asus-bluetooth: Bluetooth
Soft blocked: no
Hard blocked: no
3: phy0: Wireless LAN
Soft blocked: no
Hard blocked: no
louise@Vivobook:~$ sudo service bluetooth status | cat
● bluetooth.service - Bluetooth service
Loaded: loaded (/lib/systemd/system/bluetooth.service; enabled; preset: enabled)
Active: active (running) since Sun 2024-02-18 19:11:56 CET; 3min 27s ago
Docs: man:bluetoothd(8)
Main PID: 806 (bluetoothd)
Status: "Running"
Tasks: 1 (limit: 18382)
Memory: 2.1M
CPU: 31ms
CGroup: /system.slice/bluetooth.service
└─806 /usr/lib/bluetooth/bluetoothd
févr. 18 19:11:56 Vivobook (uetoothd)[806]: ConfigurationDirectory 'bluetooth' already exists but the mode is different. (File system: 755 ConfigurationDirectoryMode: 555)
févr. 18 19:11:56 Vivobook bluetoothd[806]: Bluetooth daemon 5.68
févr. 18 19:11:56 Vivobook bluetoothd[806]: Starting SDP server
févr. 18 19:11:56 Vivobook bluetoothd[806]: src/plugin.c:plugin_init() System does not support csip plugin
févr. 18 19:11:56 Vivobook bluetoothd[806]: src/plugin.c:plugin_init() System does not support vcp plugin
févr. 18 19:11:56 Vivobook bluetoothd[806]: src/plugin.c:plugin_init() System does not support mcp plugin
févr. 18 19:11:56 Vivobook bluetoothd[806]: src/plugin.c:plugin_init() System does not support bass plugin
févr. 18 19:11:56 Vivobook bluetoothd[806]: src/plugin.c:plugin_init() System does not support bap plugin
févr. 18 19:11:56 Vivobook bluetoothd[806]: Bluetooth management interface 1.22 initialized
févr. 18 19:11:56 Vivobook systemd[1]: Started bluetooth.service - Bluetooth service.
louise@Vivobook:~$
Pour celles de jplemoine, la commande
apt-file search BCM43142A0-04ca-2006.hcd
ne donne aucun retour.
Hors ligne
#7 Le 18/02/2024, à 19:24
- louise.perrot
Re : Le bluetooth ne marche plus après certains redémarrages (23.10)
Si jamais, voilà le retour des mêmes commandes mais quand le bluetooth fonctionne correctement :
louise@Vivobook:~$ uname -a; lspci -nnk | grep -iA3 net; lsusb; sudo dmesg | grep -i bluetooth; sudo dmesg | grep -i firmware; lsmod | grep bluetooth
Linux Vivobook 6.5.0-17-generic #17-Ubuntu SMP PREEMPT_DYNAMIC Thu Jan 11 14:01:59 UTC 2024 x86_64 x86_64 x86_64 GNU/Linux
02:00.0 Network controller [0280]: Intel Corporation Wi-Fi 6 AX200 [8086:2723] (rev 1a)
Subsystem: Intel Corporation Wi-Fi 6 AX200NGW [8086:0084]
Kernel driver in use: iwlwifi
Kernel modules: iwlwifi
Bus 004 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub
Bus 003 Device 005: ID 058f:6366 Alcor Micro Corp. Multi Flash Reader
Bus 003 Device 004: ID 0408:30e1 Quanta Computer, Inc. USB2.0 HD UVC WebCam
Bus 003 Device 003: ID 8087:0029 Intel Corp. AX200 Bluetooth
Bus 003 Device 002: ID 04f3:0c6e Elan Microelectronics Corp. ELAN:Fingerprint
Bus 003 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
Bus 002 Device 002: ID 174c:55aa ASMedia Technology Inc. ASM1051E SATA 6Gb/s bridge, ASM1053E SATA 6Gb/s bridge, ASM1153 SATA 3Gb/s bridge, ASM1153E SATA 6Gb/s bridge
Bus 002 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub
Bus 001 Device 003: ID 045e:028e Microsoft Corp. Xbox360 Controller
Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
[sudo] Mot de passe de louise :
[ 4.364882] Bluetooth: Core ver 2.22
[ 4.364910] NET: Registered PF_BLUETOOTH protocol family
[ 4.364912] Bluetooth: HCI device and connection manager initialized
[ 4.364920] Bluetooth: HCI socket layer initialized
[ 4.364924] Bluetooth: L2CAP socket layer initialized
[ 4.364932] Bluetooth: SCO socket layer initialized
[ 4.490844] Bluetooth: hci0: Bootloader revision 0.3 build 0 week 24 2017
[ 4.492840] Bluetooth: hci0: Device revision is 1
[ 4.492842] Bluetooth: hci0: Secure boot is enabled
[ 4.492844] Bluetooth: hci0: OTP lock is enabled
[ 4.492845] Bluetooth: hci0: API lock is enabled
[ 4.492847] Bluetooth: hci0: Debug lock is disabled
[ 4.492849] Bluetooth: hci0: Minimum firmware build 1 week 10 2014
[ 4.499737] Bluetooth: hci0: Found device firmware: intel/ibt-20-1-3.sfi
[ 4.499785] Bluetooth: hci0: Boot Address: 0x24800
[ 4.499787] Bluetooth: hci0: Firmware Version: 255-255.255
[ 5.891065] Bluetooth: hci0: Waiting for firmware download to complete
[ 5.891827] Bluetooth: hci0: Firmware loaded in 1359458 usecs
[ 5.891878] Bluetooth: hci0: Waiting for device to boot
[ 5.906842] Bluetooth: hci0: Device booted in 14628 usecs
[ 5.907276] Bluetooth: hci0: Malformed MSFT vendor event: 0x02
[ 5.907443] Bluetooth: hci0: Found Intel DDC parameters: intel/ibt-20-1-3.ddc
[ 5.912846] Bluetooth: hci0: Applying Intel DDC parameters completed
[ 5.916388] Bluetooth: hci0: Firmware revision 0.3 build 249 week 27 2023
[ 5.922345] Bluetooth: hci0: HCI LE Coded PHY feature bit is set, but its usage is not supported.
[ 6.187080] Bluetooth: BNEP (Ethernet Emulation) ver 1.3
[ 6.187086] Bluetooth: BNEP filters: protocol multicast
[ 6.187092] Bluetooth: BNEP socket layer initialized
[ 6.189748] Bluetooth: MGMT ver 1.22
[ 8.990737] Bluetooth: RFCOMM TTY layer initialized
[ 8.990745] Bluetooth: RFCOMM socket layer initialized
[ 8.990751] Bluetooth: RFCOMM ver 1.11
[ 32.964686] Bluetooth: HIDP (Human Interface Emulation) ver 1.2
[ 32.964693] Bluetooth: HIDP socket layer initialized
[ 32.965132] input: BM30X mouse as /devices/pci0000:00/0000:00:08.1/0000:04:00.4/usb3/3-2/3-2:1.0/bluetooth/hci0/hci0:256/0005:0A5C:4503.0002/input/input12
[ 32.965245] hid-generic 0005:0A5C:4503.0002: input,hidraw1: BLUETOOTH HID v1.29 Mouse [BM30X mouse] on bc:f1:71:f7:97:b0
[ 0.090073] Spectre V2 : Enabling Restricted Speculation for firmware calls
[ 0.298480] ACPI: [Firmware Bug]: BIOS _OSI(Linux) query ignored
[ 0.319404] acpi PNP0A08:00: [Firmware Info]: MMCONFIG for domain 0000 [bus 00-7f] only partially covers this bridge
[ 3.676852] systemd[1]: systemd-pcrmachine.service - TPM2 PCR Machine ID Measurement was skipped because of an unmet condition check (ConditionPathExists=/sys/firmware/efi/efivars/StubPcrKernelImage-4a67b082-0a4c-41cf-b6c7-440b29bb8c4f).
[ 4.348916] iwlwifi 0000:02:00.0: loaded firmware version 77.2df8986f.0 cc-a0-77.ucode op_mode iwlmvm
[ 4.492849] Bluetooth: hci0: Minimum firmware build 1 week 10 2014
[ 4.499737] Bluetooth: hci0: Found device firmware: intel/ibt-20-1-3.sfi
[ 4.499787] Bluetooth: hci0: Firmware Version: 255-255.255
[ 5.891065] Bluetooth: hci0: Waiting for firmware download to complete
[ 5.891827] Bluetooth: hci0: Firmware loaded in 1359458 usecs
[ 5.916388] Bluetooth: hci0: Firmware revision 0.3 build 249 week 27 2023
[ 6.053831] [drm] Loading DMUB firmware via PSP: version=0x01010027
[ 6.054538] [drm] Found VCN firmware Version ENC: 1.20 DEC: 6 VEP: 0 Revision: 0
[ 6.054548] amdgpu 0000:04:00.0: amdgpu: Will use PSP to load VCN firmware
[ 6.119832] audit: type=1400 audit(1708280543.897:93): apparmor="STATUS" operation="profile_load" profile="unconfined" name="snap-update-ns.firmware-updater" pid=785 comm="apparmor_parser"
[ 6.122692] audit: type=1400 audit(1708280543.901:95): apparmor="STATUS" operation="profile_load" profile="unconfined" name="snap.firmware-updater.hook.configure" pid=790 comm="apparmor_parser"
[ 6.123819] audit: type=1400 audit(1708280543.901:97): apparmor="STATUS" operation="profile_load" profile="unconfined" name="snap.firmware-updater.firmware-updater" pid=788 comm="apparmor_parser"
bluetooth 1073152 39 btrtl,hidp,btmtk,btintel,btbcm,bnep,btusb,rfcomm
ecdh_generic 16384 2 bluetooth
louise@Vivobook:~$ dpkg -l | grep blue
ii bluez 5.68-0ubuntu1.1 amd64 Bluetooth tools and daemons
ii bluez-cups 5.68-0ubuntu1.1 amd64 Bluetooth printer driver for CUPS
ii bluez-obexd 5.68-0ubuntu1.1 amd64 bluez obex daemon
ii gir1.2-gnomebluetooth-3.0:amd64 42.6-1 amd64 Introspection data for GnomeBluetooth
ii gnome-bluetooth-3-common 42.6-1 all GNOME Bluetooth 3 common files
ii gnome-bluetooth-sendto 42.6-1 amd64 GNOME Bluetooth Send To app
ii libbluetooth3:amd64 5.68-0ubuntu1.1 amd64 Library to use the BlueZ Linux Bluetooth stack
ii libgnome-bluetooth-3.0-13:amd64 42.6-1 amd64 GNOME Bluetooth 3 support library
ii libgnome-bluetooth-ui-3.0-13:amd64 42.6-1 amd64 GNOME Bluetooth 3 UI support library
ii libspa-0.2-bluetooth:amd64 0.3.79-2 amd64 libraries for the PipeWire multimedia server - bluetooth plugins
louise@Vivobook:~$ rfkill list all
0: asus-wlan: Wireless LAN
Soft blocked: no
Hard blocked: no
1: asus-bluetooth: Bluetooth
Soft blocked: no
Hard blocked: no
2: hci0: Bluetooth
Soft blocked: no
Hard blocked: no
3: phy0: Wireless LAN
Soft blocked: no
Hard blocked: no
louise@Vivobook:~$ sudo service bluetooth status | cat
● bluetooth.service - Bluetooth service
Loaded: loaded (/lib/systemd/system/bluetooth.service; enabled; preset: enabled)
Active: active (running) since Sun 2024-02-18 19:22:23 CET; 1min 10s ago
Docs: man:bluetoothd(8)
Main PID: 799 (bluetoothd)
Status: "Running"
Tasks: 1 (limit: 18382)
Memory: 3.5M
CPU: 47ms
CGroup: /system.slice/bluetooth.service
└─799 /usr/lib/bluetooth/bluetoothd
févr. 18 19:22:37 Vivobook bluetoothd[799]: Endpoint registered: sender=:1.78 path=/MediaEndpoint/A2DPSource/aptx_ll_0
févr. 18 19:22:37 Vivobook bluetoothd[799]: Endpoint registered: sender=:1.78 path=/MediaEndpoint/A2DPSource/aptx_ll_duplex_1
févr. 18 19:22:37 Vivobook bluetoothd[799]: Endpoint registered: sender=:1.78 path=/MediaEndpoint/A2DPSource/aptx_ll_duplex_0
févr. 18 19:22:37 Vivobook bluetoothd[799]: Endpoint registered: sender=:1.78 path=/MediaEndpoint/A2DPSource/faststream
févr. 18 19:22:37 Vivobook bluetoothd[799]: Endpoint registered: sender=:1.78 path=/MediaEndpoint/A2DPSource/faststream_duplex
févr. 18 19:22:37 Vivobook bluetoothd[799]: Endpoint registered: sender=:1.78 path=/MediaEndpoint/A2DPSink/opus_05
févr. 18 19:22:37 Vivobook bluetoothd[799]: Endpoint registered: sender=:1.78 path=/MediaEndpoint/A2DPSource/opus_05
févr. 18 19:22:37 Vivobook bluetoothd[799]: Endpoint registered: sender=:1.78 path=/MediaEndpoint/A2DPSink/opus_05_duplex
févr. 18 19:22:37 Vivobook bluetoothd[799]: Endpoint registered: sender=:1.78 path=/MediaEndpoint/A2DPSource/opus_05_duplex
févr. 18 19:22:44 Vivobook bluetoothd[799]: src/profile.c:record_cb() Unable to get Hands-Free Voice gateway SDP record: Host is down
louise@Vivobook:~$
Hors ligne
#8 Le 18/02/2024, à 19:34
- xubu1957
Re : Le bluetooth ne marche plus après certains redémarrages (23.10)
Bonjour,
Je vois une carte :
Intel Corporation Wi-Fi 6 AX200 [8086:2723] (rev 1a)
qui gère du Bluetooth > products/sku/189347/intel-wifi-6-ax200-gig/specifications, je me demande pourquoi vouloir mettre un Pilote Broadcom sur un produit Intel.
Conseils pour les nouveaux demandeurs et pas qu'eux
Important : Pensez à passer vos sujets en [Réso|u] lorsque ceux-ci le sont, au début du titre en cliquant sur Modifier sous le premier message, et un bref récapitulatif de la solution à la fin de celui-ci. Merci. Membre de Linux-Azur
En ligne
#9 Le 18/02/2024, à 19:43
- louise.perrot
Re : Le bluetooth ne marche plus après certains redémarrages (23.10)
Bonjour, je suis tombée sur un post de forum qui décrivait le même problème que moi et la solution d'installer le pilote Broadcom semblait marcher donc je l'ai faite sans vraiment regarder le détail de ma carte bluetooth. Comment télécharger le bon pilote ? Je ne comprends pas grand chose à tout ça désolé.
Hors ligne
#10 Le 18/02/2024, à 19:51
- xubu1957
Re : Le bluetooth ne marche plus après certains redémarrages (23.10)
Le pilote Bluetooth Intel doit être présent.
Tente ces commandes :
sudo rmmod btusb
sudo rmmod btintel
sudo modprobe btintel
sudo modprobe btusb
mentionnées dans forums.opensuse.org/t/bluetooth-cannot-enable/164574/7
Conseils pour les nouveaux demandeurs et pas qu'eux
Important : Pensez à passer vos sujets en [Réso|u] lorsque ceux-ci le sont, au début du titre en cliquant sur Modifier sous le premier message, et un bref récapitulatif de la solution à la fin de celui-ci. Merci. Membre de Linux-Azur
En ligne
#11 Le 18/02/2024, à 20:16
- louise.perrot
Re : Le bluetooth ne marche plus après certains redémarrages (23.10)
J'ai exécuté ces commandes et désormais le problème est revenu et je ne peux plus du tout réactiver le bluetooth. Voilà ce que donne sudo rmmod btusb désormais.
louise@Vivobook:~$ sudo rmmod btusb
[sudo] Mot de passe de louise :
rmmod: ERROR: Module btusb is not currently loaded
louise@Vivobook:~$ sudo rmmod btintel
rmmod: ERROR: Module btintel is not currently loaded
Aussi le démarrage de mon PC est beaucoup plus long, voici la liste des erreurs indiquées au démarrage :
[17.3165771] usb 3-2: device descriptor read/64, error -110
[32.932576] usb 3-2: device descriptor read/64, error -110
[48.5485831] usb 3-2: device descriptor read/64, error -110
[64.164580] usb 3-2: device descriptor read/64, error -110
75.5084751] usb 3-2: device not accepting address 5, error -62
[86.2604881] usb 3-2: device not accepting address 6, error -62
[86.2608481] usb3-port2: unable to enumerate USB device
/dev/nvme0n1p2: clean, 776756/31195136 files, 104517792/124751360 blocks
87.9182171 NVRM: loading NVIDIA UNIX x86_64 Kernel Module 550.40.07
Dernière modification par louise.perrot (Le 18/02/2024, à 20:17)
Hors ligne
#12 Le 18/02/2024, à 20:36
- xubu1957
Re : Le bluetooth ne marche plus après certains redémarrages (23.10)
Tente :
sudo /etc/init.d/bluetooth restart
Conseils pour les nouveaux demandeurs et pas qu'eux
Important : Pensez à passer vos sujets en [Réso|u] lorsque ceux-ci le sont, au début du titre en cliquant sur Modifier sous le premier message, et un bref récapitulatif de la solution à la fin de celui-ci. Merci. Membre de Linux-Azur
En ligne
#13 Le 18/02/2024, à 20:37
- louise.perrot
Re : Le bluetooth ne marche plus après certains redémarrages (23.10)
Ça ne marche toujours pas malheureusement.
Hors ligne
#14 Le 18/02/2024, à 20:38
- xubu1957
Re : Le bluetooth ne marche plus après certains redémarrages (23.10)
Montre aussi d'éventuels paquets cassés :
dpkg -l | grep -v ^ii
et :
ls -l /var/crash
Conseils pour les nouveaux demandeurs et pas qu'eux
Important : Pensez à passer vos sujets en [Réso|u] lorsque ceux-ci le sont, au début du titre en cliquant sur Modifier sous le premier message, et un bref récapitulatif de la solution à la fin de celui-ci. Merci. Membre de Linux-Azur
En ligne
#15 Le 18/02/2024, à 20:43
- louise.perrot
Re : Le bluetooth ne marche plus après certains redémarrages (23.10)
Voilà les retours.
louise@Vivobook:~$ dpkg -l | grep -v ^ii
Souhait=inconnU/Installé/suppRimé/Purgé/H=à garder
| État=Non/Installé/fichier-Config/dépaqUeté/échec-conFig/H=semi-installé/W=attend-traitement-déclenchements
|/ Err?=(aucune)/besoin Réinstallation (État,Err: majuscule=mauvais)
||/ Nom Version Architecture Description
+++-=============================================-=======================================-============-==================================================================================================================================================
louise@Vivobook:~$ ls -l /var/crash
total 0
louise@Vivobook:~$
Vous savez si les erreurs indiquées au démarrage de mon PC sont facilement réglables ? Ça ralentit vraiment le démarrage et sudo modprobe btintel ; sudo modprobe btusb ne remet pas les choses comme avant sudo rmmod btusb ; sudo rmmod btintel
Hors ligne
#16 Le 18/02/2024, à 20:46
- xubu1957
Re : Le bluetooth ne marche plus après certains redémarrages (23.10)
Fournis les retours de :
sudo apt update
snap list
df -Th
Conseils pour les nouveaux demandeurs et pas qu'eux
Important : Pensez à passer vos sujets en [Réso|u] lorsque ceux-ci le sont, au début du titre en cliquant sur Modifier sous le premier message, et un bref récapitulatif de la solution à la fin de celui-ci. Merci. Membre de Linux-Azur
En ligne
#17 Le 18/02/2024, à 20:58
- louise.perrot
Re : Le bluetooth ne marche plus après certains redémarrages (23.10)
Voilà.
louise@Vivobook:~$ sudo apt update
[sudo] Mot de passe de louise :
Atteint :1 http://fr.archive.ubuntu.com/ubuntu mantic InRelease
Atteint :2 http://fr.archive.ubuntu.com/ubuntu mantic-updates InRelease
Atteint :3 http://fr.archive.ubuntu.com/ubuntu mantic-backports InRelease
Atteint :4 https://dl.winehq.org/wine-builds/ubuntu mantic InRelease
Ign :5 https://repo.hotspotshield.com/deb/rel/all release InRelease
Atteint :6 https://repo.steampowered.com/steam stable InRelease
Atteint :7 https://repo.hotspotshield.com/deb/rel/all release Release
Ign :8 https://repo.hotspotshield.com/deb/rel/all release Release.gpg
Atteint :9 http://security.ubuntu.com/ubuntu mantic-security InRelease
Atteint :10 https://ppa.launchpadcontent.net/graphics-drivers/ppa/ubuntu mantic InRelease
Lecture des listes de paquets... Fait
Construction de l'arbre des dépendances... Fait
Lecture des informations d'état... Fait
6 paquets peuvent être mis à jour. Exécutez « apt list --upgradable » pour les voir.
N: Le fichier configuré « main/binary-i386/Packages » ne sera pas pris en compte car le dépôt « https://repo.hotspotshield.com/deb/rel/all release InRelease » ne prend pas en charge l'architecture « i386 »
louise@Vivobook:~$ snap list
Nom Version Révision Suivi Éditeur Notes
bare 1.0 5 latest/stable canonical✓ base
core18 20231027 2812 latest/stable canonical✓ base
core20 20240111 2182 latest/stable canonical✓ base
core22 20240111 1122 latest/stable canonical✓ base
firmware-updater 0+git.e8771be 109 latest/stable/… canonical✓ -
gnome-3-28-1804 3.28.0-19-g98f9e67.98f9e67 198 latest/stable canonical✓ -
gnome-3-38-2004 0+git.efb213a 143 latest/stable canonical✓ -
gnome-42-2204 0+git.ff35a85 141 latest/stable/… canonical✓ -
gtk-common-themes 0.1-81-g442e511 1535 latest/stable/… canonical✓ -
snapd 2.61.1 20671 latest/stable canonical✓ snapd
snapd-desktop-integration 0.9 83 latest/stable/… canonical✓ -
louise@Vivobook:~$ df -Th
Sys. de fichiers Type Taille Utilisé Dispo Uti% Monté sur
tmpfs tmpfs 1,6G 11M 1,5G 1% /run
/dev/nvme0n1p2 ext4 468G 390G 55G 88% /
tmpfs tmpfs 7,6G 0 7,6G 0% /dev/shm
tmpfs tmpfs 5,0M 12K 5,0M 1% /run/lock
efivarfs efivarfs 128K 47K 77K 38% /sys/firmware/efi/efivars
tmpfs tmpfs 7,6G 0 7,6G 0% /run/qemu
/dev/nvme0n1p1 vfat 1,1G 23M 1,1G 3% /boot/efi
tmpfs tmpfs 1,6G 700K 1,6G 1% /run/user/1000
/dev/sdb1 exfat 250G 62G 189G 25% /media/louise/Carte SD
/dev/sda1 ext4 458G 349G 86G 81% /media/louise/500 GO
louise@Vivobook:~$
Hors ligne
#18 Le 18/02/2024, à 21:01
- xubu1957
Re : Le bluetooth ne marche plus après certains redémarrages (23.10)
Conseils pour les nouveaux demandeurs et pas qu'eux
Important : Pensez à passer vos sujets en [Réso|u] lorsque ceux-ci le sont, au début du titre en cliquant sur Modifier sous le premier message, et un bref récapitulatif de la solution à la fin de celui-ci. Merci. Membre de Linux-Azur
En ligne
#19 Le 18/02/2024, à 21:02
- louise.perrot
Re : Le bluetooth ne marche plus après certains redémarrages (23.10)
seulement Device is not available: No such device
Hors ligne
#20 Le 18/02/2024, à 21:04
- xubu1957
Re : Le bluetooth ne marche plus après certains redémarrages (23.10)
Je vais essayer d'avoir l'aide de Nuliel.
Conseils pour les nouveaux demandeurs et pas qu'eux
Important : Pensez à passer vos sujets en [Réso|u] lorsque ceux-ci le sont, au début du titre en cliquant sur Modifier sous le premier message, et un bref récapitulatif de la solution à la fin de celui-ci. Merci. Membre de Linux-Azur
En ligne
#21 Le 19/02/2024, à 01:36
- Astrolivier
Re : Le bluetooth ne marche plus après certains redémarrages (23.10)
salut,
tu as enlevé les modules btintel et btusb avec la commande rmod et donc le noyau ne peut plus lire ta clef bluetooth
que donne les retours de ces 2 commandes (pour réactiver les modules)
sudo modprobe btintel
sudo modprobe btusb
et donne aussi
lsmod |grep -E "bluetooth|btrtl|hidp|btmtk|btintel|btbcm|bnep|btusb|rfcomm"
S'il faut absolument faire des sacrifices pour assurer le progrès de l'humanité, ne serait-il pas indispensable de s'en tenir au principe selon lequel c'est à ceux dont on exige le sacrifice que la décision doit revenir en dernier ressort ? (howard zinn)
Hors ligne
#22 Le 19/02/2024, à 21:23
- Nuliel
Re : Le bluetooth ne marche plus après certains redémarrages (23.10)
Hello,
Si je dis pas de bêtises, rmmod est équivalent à modprobe -r, donc au pire les modules ont été déchargés, et il suffit de redémarrer le pc pour que tout revienne en ordre.
Tu peux donc redémarrer le pc, et redonner
hcitool scan
Tu peux aussi donner
uname -a
vu https://forum.manjaro.org/t/bluetooth-n … ate/138560
Dernière modification par Nuliel (Le 19/02/2024, à 21:23)
Hors ligne
#23 Le 19/02/2024, à 21:28
- xubu1957
Re : Le bluetooth ne marche plus après certains redémarrages (23.10)
Bonjour,
@Nuliel
Le noyau au #7 :
Linux Vivobook 6.5.0-17-generic #17-Ubuntu SMP PREEMPT_DYNAMIC Thu Jan 11 14:01:59 UTC 2024 x86_64 x86_64 x86_64 GNU/Linux
Conseils pour les nouveaux demandeurs et pas qu'eux
Important : Pensez à passer vos sujets en [Réso|u] lorsque ceux-ci le sont, au début du titre en cliquant sur Modifier sous le premier message, et un bref récapitulatif de la solution à la fin de celui-ci. Merci. Membre de Linux-Azur
En ligne
#24 Le 19/02/2024, à 21:30
- Nuliel
Re : Le bluetooth ne marche plus après certains redémarrages (23.10)
merci xubu1957, je ne l'avais pas vu
je vais faire quelques recherches, habituellement les cartes intel fonctionnent directement
Hors ligne
#25 Le 19/02/2024, à 21:32
- xubu1957
Re : Le bluetooth ne marche plus après certains redémarrages (23.10)
C'est pas le fait d'avoir fourgué un pilote Bluetooth Broadcom au système ?
Conseils pour les nouveaux demandeurs et pas qu'eux
Important : Pensez à passer vos sujets en [Réso|u] lorsque ceux-ci le sont, au début du titre en cliquant sur Modifier sous le premier message, et un bref récapitulatif de la solution à la fin de celui-ci. Merci. Membre de Linux-Azur
En ligne