#26 Le 10/03/2020, à 13:27
- xubu1957
Re : [Résolu] Bluetooth ne détecte aucun périphérique
@nany
Dans la Doc wifi_broadcom_bcm43xx
Pour les autres puces ne nécessitant pas de firmware (les plus récentes), Broadcom® fournit un pilote propriétaire nommé "Broadcom 802.11 Linux STA driver" pour GNU/Linux. Ce pilote est disponible depuis les dépôts et le support d'installation. Au cours de l'installation d'Ubuntu, l'installateur détectera votre puce wifi Broadcom® et si nécessaire, installera ce pilote.
Pour le Bluetooth, on jongle avec github.com/winterheart/broadcom-bt-firmware/blob/master/DEVICES.md#supported-devices
- (pilotes github.com/winterheart/broadcom-bt-firmware)
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
#27 Le 10/03/2020, à 17:42
- nany
Re : [Résolu] Bluetooth ne détecte aucun périphérique
Alors, pour répondre à ta question en #24, oui cette procédure permet l’accès aux dépôts.
Ce qu’elle fait dans le sources.list :
la première ligne de commandes écrit la ligne relative au CDRom en fonction du contenu de /var/log/installer/media-info ;
la deuxième ligne ajoute ensuite le contenu standard avec la bonne version du système ;
la troisième ligne active le dépôt partner et lance un update pour vérifier que tout est OK.
Donc le pilote devrait être visible dans le gestionnaire de pilotes propriétaires ou avec ces deux commandes :
ubuntu-drivers devices
ubuntu-drivers list
Hors ligne
#28 Le 10/03/2020, à 17:55
- xubu1957
Re : [Résolu] Bluetooth ne détecte aucun périphérique
@nany
Merci pour tes explications.
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
#29 Le 10/03/2020, à 20:42
- ma_th_ia_ss_
Re : [Résolu] Bluetooth ne détecte aucun périphérique
Bonjour,
Alors, pour remettre un sources.list propre, je propose cette méthode :
echo "# deb cdrom:"$(sed 's/^/\[/;s/\"/_/g;s/$/\]/' /var/log/installer/media-info)"/ "$(awk -F'"' '{sub(" .*","",$2); print tolower($2)}' /var/log/installer/media-info)" main restricted" | sudo tee /etc/apt/sources.list
tail +9 /snap/core/current/etc/cloud/templates/sources.list.ubuntu.tmpl | sed "s#{{mirror}}#http://fr.archive.ubuntu.com/ubuntu/#;s#{{codename}}#$(lsb_release -sc)#;s#{{security}}#http://security.ubuntu.com/ubuntu/#" | sudo tee -a /etc/apt/sources.list
sudo sed -i '/partner/s/^# deb http/deb http/' /etc/apt/sources.list && sudo apt clean && sudo apt update
echo "# deb cdrom:"$(sed 's/^/\[/;s/\"/_/g;s/$/\]/' /var/log/installer/media-info)"/ "$(awk -F'"' '{sub(" .*","",$2); print tolower($2)}' /var/log/installer/media-info)" main restricted" | sudo tee /etc/apt/sources.list
Me donne :
# deb cdrom:[Ubuntu 18.04.3 LTS _Bionic Beaver_ - Release amd64 (20190805)]/ bionic main restricted
-------
tail +9 /snap/core/current/etc/cloud/templates/sources.list.ubuntu.tmpl | sed "s#{{mirror}}#http://fr.archive.ubuntu.com/ubuntu/#;s#{{codename}}#$(lsb_release -sc)#;s#{{security}}#http://security.ubuntu.com/ubuntu/#" | sudo tee -a /etc/apt/sources.list
donne :
# See http://help.ubuntu.com/community/UpgradeNotes for how to upgrade to
# newer versions of the distribution.
deb http://fr.archive.ubuntu.com/ubuntu/ eoan main restricted
# deb-src http://fr.archive.ubuntu.com/ubuntu/ eoan main restricted
## Major bug fix updates produced after the final release of the
## distribution.
deb http://fr.archive.ubuntu.com/ubuntu/ eoan-updates main restricted
# deb-src http://fr.archive.ubuntu.com/ubuntu/ eoan-updates main restricted
## N.B. software from this repository is ENTIRELY UNSUPPORTED by the Ubuntu
## team. Also, please note that software in universe WILL NOT receive any
## review or updates from the Ubuntu security team.
deb http://fr.archive.ubuntu.com/ubuntu/ eoan universe
# deb-src http://fr.archive.ubuntu.com/ubuntu/ eoan universe
deb http://fr.archive.ubuntu.com/ubuntu/ eoan-updates universe
# deb-src http://fr.archive.ubuntu.com/ubuntu/ eoan-updates universe
## N.B. software from this repository is ENTIRELY UNSUPPORTED by the Ubuntu
## team, and may not be under a free licence. Please satisfy yourself as to
## your rights to use the software. Also, please note that software in
## multiverse WILL NOT receive any review or updates from the Ubuntu
## security team.
deb http://fr.archive.ubuntu.com/ubuntu/ eoan multiverse
# deb-src http://fr.archive.ubuntu.com/ubuntu/ eoan multiverse
deb http://fr.archive.ubuntu.com/ubuntu/ eoan-updates multiverse
# deb-src http://fr.archive.ubuntu.com/ubuntu/ eoan-updates multiverse
## N.B. software from this repository may not have been tested as
## extensively as that contained in the main release, although it includes
## newer versions of some applications which may provide useful features.
## Also, please note that software in backports WILL NOT receive any review
## or updates from the Ubuntu security team.
deb http://fr.archive.ubuntu.com/ubuntu/ eoan-backports main restricted universe multiverse
# deb-src http://fr.archive.ubuntu.com/ubuntu/ eoan-backports main restricted universe multiverse
## Uncomment the following two lines to add software from Canonical's
## 'partner' repository.
## This software is not part of Ubuntu, but is offered by Canonical and the
## respective vendors as a service to Ubuntu users.
# deb http://archive.canonical.com/ubuntu eoan partner
# deb-src http://archive.canonical.com/ubuntu eoan partner
deb http://security.ubuntu.com/ubuntu/ eoan-security main restricted
# deb-src http://security.ubuntu.com/ubuntu/ eoan-security main restricted
deb http://security.ubuntu.com/ubuntu/ eoan-security universe
# deb-src http://security.ubuntu.com/ubuntu/ eoan-security universe
deb http://security.ubuntu.com/ubuntu/ eoan-security multiverse
# deb-src http://security.ubuntu.com/ubuntu/ eoan-security multiverse
----
sudo sed -i '/partner/s/^# deb http/deb http/' /etc/apt/sources.list && sudo apt clean && sudo apt update
donne :
Atteint :1 http://fr.archive.ubuntu.com/ubuntu eoan InRelease
Atteint :2 http://fr.archive.ubuntu.com/ubuntu eoan-updates InRelease
Atteint :3 http://fr.archive.ubuntu.com/ubuntu eoan-backports InRelease
Atteint :4 http://security.ubuntu.com/ubuntu eoan-security InRelease
Atteint :5 http://archive.canonical.com/ubuntu eoan InRelease
Lecture des listes de paquets... Fait
Construction de l'arbre des dépendances
Lecture des informations d'état... Fait
11 paquets peuvent être mis à jour. Exécutez « apt list --upgradable » pour les voir.
je pensais devoir passer par un upgrade, mais lors de l'upgrade "tous les paquets sont à jour" :
Lecture des listes de paquets... Fait
Construction de l'arbre des dépendances
Lecture des informations d'état... Fait
Calcul de la mise à jour... Fait
Le paquet suivant a été installé automatiquement et n'est plus nécessaire :
libbz2-1.0:i386
Veuillez utiliser « sudo apt autoremove » pour le supprimer.
0 mis à jour, 0 nouvellement installés, 0 à enlever et 0 non mis à jour.
j'ai malgré tout supprimé le paquet non nécessaire, mais lorsque le retente un update :
Lecture des listes de paquets... Fait
Construction de l'arbre des dépendances
Lecture des informations d'état... Fait
Tous les paquets sont à jour.
Aucun périphérique bluetooth présent
Hors ligne
#30 Le 10/03/2020, à 20:46
- ma_th_ia_ss_
Re : [Résolu] Bluetooth ne détecte aucun périphérique
apt list --upgradable
donne :
En train de lister... Fait
Hors ligne
#31 Le 10/03/2020, à 20:57
- nany
Re : [Résolu] Bluetooth ne détecte aucun périphérique
Et que donnent les deux commandes suivantes ?
ubuntu-drivers devices
ubuntu-drivers list
Dernière modification par nany (Le 10/03/2020, à 20:57)
Hors ligne
#32 Le 10/03/2020, à 20:58
- xubu1957
Re : [Résolu] Bluetooth ne détecte aucun périphérique
Tu as un retour pour :
sudo apt full-upgrade
?
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
#33 Le 10/03/2020, à 21:02
- ma_th_ia_ss_
Re : [Résolu] Bluetooth ne détecte aucun périphérique
Et que donnent les deux commandes suivantes ?
ubuntu-drivers devices
ubuntu-drivers list
ubuntu-drivers devices
donne :
== /sys/devices/pci0000:00/0000:00:02.4/0000:03:00.0 ==
modalias : pci:v000014E4d00004365sv0000103Csd00002230bc02sc80i00
vendor : Broadcom Inc. and subsidiaries
model : BCM43142 802.11b/g/n
driver : bcmwl-kernel-source - third-party free
---
ubuntu-drivers list
donne :
bcmwl-kernel-source
-------------------------------
Tu as un retour pour :
sudo apt full-upgrade
?
sudo apt full-upgrade
donne :
[sudo] Mot de passe de mathias :
Lecture des listes de paquets... Fait
Construction de l'arbre des dépendances
Lecture des informations d'état... Fait
Calcul de la mise à jour... Fait
Le paquet suivant a été installé automatiquement et n'est plus nécessaire :
libbz2-1.0:i386
Veuillez utiliser « sudo apt autoremove » pour le supprimer.
0 mis à jour, 0 nouvellement installés, 0 à enlever et 0 non mis à jour.
Hors ligne
#34 Le 10/03/2020, à 21:05
- nany
Re : [Résolu] Bluetooth ne détecte aucun périphérique
Donne le retour de :
dpkg -l bcmwl-kernel-source
Dernière modification par nany (Le 10/03/2020, à 21:05)
Hors ligne
#35 Le 10/03/2020, à 21:08
- ma_th_ia_ss_
Re : [Résolu] Bluetooth ne détecte aucun périphérique
Donne le retour de :
dpkg -l bcmwl-kernel-source
la commande retourne :
Souhait=inconnU/Installé/suppRimé/Purgé/H=à garder
| État=Non/Installé/fichier-Config/dépaqUeté/échec-conFig/H=semi-installé/W=atte
|/ Err?=(aucune)/besoin Réinstallation (État,Err: majuscule=mauvais)
||/ Nom Version Architecture Description
+++-===================-===========================-============-===============
ii bcmwl-kernel-source 6.30.223.271+bdcom-0ubuntu5 amd64 Broadcom 802.11
lines 1-6/6 (END)
Ce qui est bizarre c'est que la dernière ligne reste et ne me rend pas la main pour écrire de nouvelles commandes, c'est normal ? je parles de ca puisque je ne connaissais pas vraiment cette commande.
Hors ligne
#36 Le 10/03/2020, à 21:27
- xubu1957
Re : [Résolu] Bluetooth ne détecte aucun périphérique
Le Bluetooth avait démarré dans cette discussion > [RESOLU] pas de détéction bluetooth , avec la commande de JeremyB (Jeremy31).
Dernière modification par xubu1957 (Le 10/03/2020, à 21:27)
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
#37 Le 10/03/2020, à 21:30
- nany
Re : [Résolu] Bluetooth ne détecte aucun périphérique
Ce qui est bizarre c'est que la dernière ligne reste et ne me rend pas la main pour écrire de nouvelles commandes, c'est normal ?
C’est la première fois que je vois ça avec cette commande. Mais si tu appuies sur la touche Q tu auras le retour du prompt.
En tout cas, le pilote est bien installé. Je laisse xubu1957 continuer les investigations.
Hors ligne
#38 Le 10/03/2020, à 21:32
- xubu1957
Re : [Résolu] Bluetooth ne détecte aucun périphérique
Montre :
bootctl
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
#39 Le 10/03/2020, à 21:34
- ma_th_ia_ss_
Re : [Résolu] Bluetooth ne détecte aucun périphérique
Pour :
ID 0a5c:216c Broadcom Corp. BCM43142A0 Bluetooth Device
Il faut installer le pilote.
_ _ _
Le 11/08/2018, JeremyB a écrit :wget https://github.com/winterheart/broadcom-bt-firmware/raw/master/brcm/BCM43142A0-0a5c-216d.hcd sudo cp BCM43142A0-0a5c-216d.hcd /lib/firmware/brcm/BCM.hcd
Shut down and boot
Eteindre et redémarrer
Effectivement, nous ca avait pas fonctionné hier non plus en essayant cette même commande, j'aurais bien aimé que ca suffise, parce que je commence à désespérer ahah
(merci nany j'ai pu avoir le retour prompt )
Hors ligne
#40 Le 10/03/2020, à 21:37
- xubu1957
Re : [Résolu] Bluetooth ne détecte aucun périphérique
Fais voir :
ls /lib/firmware/brcm
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
#41 Le 10/03/2020, à 21:39
- ma_th_ia_ss_
Re : [Résolu] Bluetooth ne détecte aucun périphérique
bootctl
donne :
Failed to read "/boot/efi/EFI/systemd": Permission non accordée
Failed to open "/boot/efi/loader/loader.conf": Permission non accordée
System:
Firmware: n/a (n/a)
Secure Boot: disabled
Setup Mode: user
Current Boot Loader:
Product: n/a
Features: ✗ Boot counting
✗ Menu timeout control
✗ One-shot menu timeout control
✗ Default entry control
✗ One-shot entry control
ESP: n/a
File: └─n/a
Available Boot Loaders on ESP:
ESP: /boot/efi (/dev/disk/by-partuuid/ba2dc6d6-72d4-4529-97bb-b50376ef
Boot Loaders Listed in EFI Variables:
Title: ubuntu
ID: 0x0001
lines 1-23
bizarrement, comme pour la dernière commande donnée par nany, je n'ai pas de retour prompt je ne peux plus écrire de nouvelle commande sans activer le retour prompt
(j'ai procédé au retour prompt manuel)
Hors ligne
#42 Le 10/03/2020, à 21:41
- ma_th_ia_ss_
Re : [Résolu] Bluetooth ne détecte aucun périphérique
ls /lib/firmware/brcm
donne :
BCM-0bb4-0306.hcd
bcm4329-fullmac-4.bin
bcm43xx-0.fw
bcm43xx_hdr-0.fw
BCM.hcd
brcmfmac43143.bin
brcmfmac43143-sdio.bin
brcmfmac43236b.bin
brcmfmac43241b0-sdio.bin
brcmfmac43241b4-sdio.bin
brcmfmac43241b5-sdio.bin
brcmfmac43242a.bin
brcmfmac4329-sdio.bin
brcmfmac4330-sdio.bin
brcmfmac4330-sdio.Prowise-PT301.txt
brcmfmac43340-sdio.bin
brcmfmac43340-sdio.meegopad-t08.txt
brcmfmac43340-sdio.pov-tab-p1006w-data.txt
brcmfmac4334-sdio.bin
brcmfmac4335-sdio.bin
brcmfmac43362-sdio.bin
brcmfmac43362-sdio.cubietech,cubietruck.txt
brcmfmac43362-sdio.lemaker,bananapro.txt
brcmfmac4339-sdio.bin
brcmfmac43430a0-sdio.bin
brcmfmac43430a0-sdio.jumper-ezpad-mini3.txt
'brcmfmac43430a0-sdio.ONDA-V80 PLUS.txt'
brcmfmac43430-sdio.AP6212.txt
brcmfmac43430-sdio.bin
brcmfmac43430-sdio.Hampoo-D2D3_Vi8A1.txt
brcmfmac43430-sdio.MUR1DX.txt
brcmfmac43430-sdio.raspberrypi,3-model-b.txt
brcmfmac43455-sdio.bin
'brcmfmac43455-sdio.MINIX-NEO Z83-4.txt'
brcmfmac43455-sdio.raspberrypi,3-model-b-plus.txt
brcmfmac4350c2-pcie.bin
brcmfmac4350-pcie.bin
brcmfmac4354-sdio.bin
brcmfmac43569.bin
brcmfmac4356-pcie.bin
brcmfmac4356-pcie.gpd-win-pocket.txt
brcmfmac4356-sdio.bin
brcmfmac43570-pcie.bin
brcmfmac4358-pcie.bin
brcmfmac43602-pcie.ap.bin
brcmfmac43602-pcie.bin
brcmfmac4366b-pcie.bin
brcmfmac4366c-pcie.bin
brcmfmac4371-pcie.bin
brcmfmac4373.bin
brcmfmac4373-sdio.bin
Hors ligne
#43 Le 10/03/2020, à 21:44
- xubu1957
Re : [Résolu] Bluetooth ne détecte aucun périphérique
Donne :
dmesg | egrep -i 'blue|firm'
pour comparer avec > [RESOLU] Bluetooth hp stream 11 recherche sans trouver
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
#44 Le 10/03/2020, à 21:49
- ma_th_ia_ss_
Re : [Résolu] Bluetooth ne détecte aucun périphérique
retourne :
[ 0.380150] ACPI: [Firmware Bug]: BIOS _OSI(Linux) query ignored
[ 0.431002] acpi PNP0A08:00: [Firmware Info]: MMCONFIG for domain 0000 [bus 00-3f] only partially covers this bridge
[ 1.503974] battery: [Firmware Bug]: battery: (dis)charge rate invalid.
[ 35.045910] Bluetooth: Core ver 2.22
[ 35.045947] Bluetooth: HCI device and connection manager initialized
[ 35.045954] Bluetooth: HCI socket layer initialized
[ 35.045957] Bluetooth: L2CAP socket layer initialized
[ 35.045964] Bluetooth: SCO socket layer initialized
[ 35.057084] [drm] Found UVD firmware Version: 1.64 Family ID: 9
[ 35.105919] [drm] Found VCE firmware/feedback version 40.2.2 / 15!
[ 35.401864] Bluetooth: hci0: BCM: chip id 70
[ 35.402859] Bluetooth: hci0: BCM: features 0x06
[ 35.418881] Bluetooth: hci0: BCM43142A
[ 35.422875] Bluetooth: hci0: BCM43142A0 (001.001.011) build 0000
[ 37.402136] bluetooth hci0: Direct firmware load for brcm/BCM43142A0-0a5c-216c.hcd failed with error -2
[ 37.402145] Bluetooth: hci0: BCM: Patch brcm/BCM43142A0-0a5c-216c.hcd not found
[ 39.431793] Bluetooth: hci0: command 0x1003 tx timeout
[ 39.433445] Bluetooth: hci0: unexpected event for opcode 0x1003
[ 62.278370] Bluetooth: BNEP (Ethernet Emulation) ver 1.3
[ 62.278373] Bluetooth: BNEP filters: protocol multicast
[ 62.278381] Bluetooth: BNEP socket layer initialized
[ 64.903813] Bluetooth: hci0: command 0x1003 tx timeout
[ 64.905285] Bluetooth: hci0: unexpected event for opcode 0x1003
[ 73.057959] Modules linked in: psnap cmac bnep nls_iso8859_1 edac_mce_amd kvm_amd kvm irqbypass uvcvideo amdgpu crct10dif_pclmul crc32_pclmul ghash_clmulni_intel amd_iommu_v2 gpu_sched videobuf2_vmalloc videobuf2_memops videobuf2_v4l2 videobuf2_common aesni_intel videodev aes_x86_64 mc snd_hda_codec_realtek snd_hda_codec_generic btusb btrtl ledtrig_audio btbcm btintel bluetooth wl(PO) crypto_simd cryptd glue_helper ecdh_generic 8192eu(O) ecc radeon snd_hda_codec_hdmi snd_hda_intel snd_hda_codec ttm snd_hda_core drm_kms_helper snd_hwdep snd_pcm snd_seq_midi snd_seq_midi_event snd_rawmidi drm snd_seq joydev input_leds serio_raw snd_seq_device snd_timer i2c_algo_bit hp_wmi cfg80211 rtsx_pci_ms snd fb_sys_fops syscopyarea sparse_keymap memstick soundcore wmi_bmof sysfillrect ccp k10temp sysimgblt fam15h_power hp_wireless mac_hid sch_fq_codel iptable_filter ip6table_filter ip6_tables br_netfilter bridge stp llc arp_tables parport_pc ppdev lp parport ip_tables x_tables autofs4 rtsx_pci_sdmmc
[ 108.652452] Bluetooth: RFCOMM TTY layer initialized
[ 108.652465] Bluetooth: RFCOMM socket layer initialized
[ 108.652478] Bluetooth: RFCOMM ver 1.11
vu :
[ 37.402145] Bluetooth: hci0: BCM: Patch brcm/BCM43142A0-0a5c-216c.hcd not found
Je tente le retour qu'avait fait Naziel histoire de comparer également et je reviens vers toi après reboot.
Dernière modification par ma_th_ia_ss_ (Le 10/03/2020, à 21:50)
Hors ligne
#45 Le 10/03/2020, à 22:04
- ma_th_ia_ss_
Re : [Résolu] Bluetooth ne détecte aucun périphérique
sudo service bluetooth status
retourne :
● bluetooth.service - Bluetooth service
Loaded: loaded (/lib/systemd/system/bluetooth.service; enabled; vendor preset
Active: active (running) since Tue 2020-03-10 21:59:16 CET; 2min 13s ago
Docs: man:bluetoothd(8)
Main PID: 955 (bluetoothd)
Status: "Running"
Tasks: 1 (limit: 3988)
Memory: 2.2M
CGroup: /system.slice/bluetooth.service
└─955 /usr/lib/bluetooth/bluetoothd
mars 10 21:59:06 mathias-HP-15-Notebook-PC systemd[1]: Starting Bluetooth servic
mars 10 21:59:07 mathias-HP-15-Notebook-PC bluetoothd[955]: Bluetooth daemon 5.5
mars 10 21:59:16 mathias-HP-15-Notebook-PC bluetoothd[955]: Starting SDP server
mars 10 21:59:16 mathias-HP-15-Notebook-PC systemd[1]: Started Bluetooth service
mars 10 21:59:18 mathias-HP-15-Notebook-PC bluetoothd[955]: Bluetooth management
mars 10 22:00:17 mathias-HP-15-Notebook-PC bluetoothd[955]: Endpoint registered:
mars 10 22:00:17 mathias-HP-15-Notebook-PC bluetoothd[955]: Endpoint registered:
lines 1-18/18 (END)
et
dmesg | grep -i firmware; lsmod | grep bluetooth
retourne :
[ 0.378527] ACPI: [Firmware Bug]: BIOS _OSI(Linux) query ignored
[ 0.433822] acpi PNP0A08:00: [Firmware Info]: MMCONFIG for domain 0000 [bus 00-3f] only partially covers this bridge
[ 1.495597] battery: [Firmware Bug]: battery: (dis)charge rate invalid.
[ 22.308013] [drm] Found UVD firmware Version: 1.64 Family ID: 9
[ 22.345683] [drm] Found VCE firmware/feedback version 40.2.2 / 15!
[ 22.778206] bluetooth hci0: Direct firmware load for brcm/BCM43142A0-0a5c-216c.hcd failed with error -2
bluetooth 581632 41 btrtl,btintel,btbcm,bnep,btusb,rfcomm
ecdh_generic 16384 2 bluetooth
Le problème persiste malgré deux reboot
Hors ligne
#46 Le 10/03/2020, à 22:14
- xubu1957
Re : [Résolu] Bluetooth ne détecte aucun périphérique
Je vais demander à Nuliel.
(edit= pseudo actualisé)
Dernière modification par xubu1957 (Le 26/08/2021, à 21:29)
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
#47 Le 10/03/2020, à 22:21
- ma_th_ia_ss_
Re : [Résolu] Bluetooth ne détecte aucun périphérique
merci !
Hors ligne
#48 Le 18/03/2020, à 19:03
- ma_th_ia_ss_
Re : [Résolu] Bluetooth ne détecte aucun périphérique
Bonjour,
Du nouveau svp ?
Merci d'avance.
Hors ligne
#49 Le 18/03/2020, à 19:37
- Nuliel
Re : [Résolu] Bluetooth ne détecte aucun périphérique
Bonjour,
Tu peux faire
sudo mv /lib/firmware/brcm/BCM.hcd /lib/firmware/brcm/BCM43142A0-0a5c-216c.hcd
suivi d'un redémarrage puis tu donnes le retour de
dmesg | egrep -i 'blue|firm'
et tu testes le bluetooth
Hors ligne
#50 Le 18/03/2020, à 21:30
- ma_th_ia_ss_
Re : [Résolu] Bluetooth ne détecte aucun périphérique
Bonjour,
Tu peux fairesudo mv /lib/firmware/brcm/BCM.hcd /lib/firmware/brcm/BCM43142A0-0a5c-216c.hcd
suivi d'un redémarrage puis tu donnes le retour de
dmesg | egrep -i 'blue|firm'
et tu testes le bluetooth
--------
Je n'ai pas encore fais la première commande, car visiblement le répertoire n'est pas présent.
C'est normal ?
mv: impossible d'évaluer '/lib/firmware/brcm/BCM.hcd': Aucun fichier ou dossier de ce type
Hors ligne