Contenu | Rechercher | Menus

Annonce

Si vous avez des soucis pour rester connecté, déconnectez-vous puis reconnectez-vous depuis ce lien en cochant la case
Me connecter automatiquement lors de mes prochaines visites.

À propos de l'équipe du forum.

#1 Le 13/01/2024, à 00:43

Coeur Noir

Bluetooth/wifi via dongle RTL8723BU: KO avec noyau 6.5 ?

Hello,

j'ai un dongle usb wifi/bluetooth qui utilise ce pilote non-inclus au noyau, hélas : https://github.com/lwfinger/rtl8723bu
Il m'intéresse surtout pour la dent bleue.

Je l'avais installé via la méthode dkms avec un noyau linux 6.2 or on est passé au 6.5 récemment.
Et depuis, dmesg montre ça :

[    2.677481] 8723bu: module verification failed: signature and/or required key missing - tainting kernel

et le bluetooth est KO. J'ai pas testé le Wifi, pas besoin ( sauf que si je désactive le wifi je sais que ça coupe aussi le bluetooth. )

Bref y a-t-il un moyen de résoudre ce problème de signature ou clé ?
Ou dois-je me résoudre à compiler ce pilote à chaque nouveau noyau ( ce que je faisais avant, quand je n'avais pas compris à quoi sert dkms ) ?

J'ajoute :

django@ASGARD:~$ rfkill
ID TYPE      DEVICE      SOFT      HARD
 0 wlan      phy0   unblocked unblocked
 1 bluetooth hci0   unblocked unblocked
django@ASGARD:~$ 

et

django@ASGARD:~$ sudo dmesg | grep -Ei "bluetooth|rtl|8723bu"
[    0.766539] r8169 0000:03:00.0 eth0: RTL8168g/8111g, 74:d0:2b:9e:fb:40, XID 4c0, IRQ 30
[    3.033306] Bluetooth: Core ver 2.22
[    3.033328] NET: Registered PF_BLUETOOTH protocol family
[    3.033330] Bluetooth: HCI device and connection manager initialized
[    3.033333] Bluetooth: HCI socket layer initialized
[    3.033336] Bluetooth: L2CAP socket layer initialized
[    3.033341] Bluetooth: SCO socket layer initialized
[    3.039609] 8723bu: loading out-of-tree module taints kernel.
[    3.039627] 8723bu: module verification failed: signature and/or required key missing - tainting kernel
[    3.088366] RTL871X: module init start
[    3.088368] RTL871X: rtl8723bu v4.3.6.11_12942.20141204_BTCOEX20140507-4E40
[    3.088370] RTL871X: rtl8723bu BT-Coex version = BTCOEX20140507-4E40
[    3.141174] RTL871X: rtw_ndev_init(wlan0)
[    3.141359] usbcore: registered new interface driver rtl8723bu
[    3.141362] RTL871X: module init ret=0
[    3.248461] rtl8723bu 3-1:1.2 wlx0013efd002c3: renamed from wlan0
[    3.506979] Bluetooth: BNEP (Ethernet Emulation) ver 1.3
[    3.506982] Bluetooth: BNEP filters: protocol multicast
[    3.506986] Bluetooth: BNEP socket layer initialized
[    5.164192] Bluetooth: hci0: command 0xfc61 tx timeout
[    6.556787] UBSAN: shift-out-of-bounds in /var/lib/dkms/rtl8723bu/4.3.6.11_12942.20141204_BTCOEX20140507-4E40/build/os_dep/ioctl_cfg80211.c:5142:19
[    6.556826]  cfg80211_rtw_mgmt_frame_register+0x33/0x50 [8723bu]
[   13.388195] Bluetooth: hci0: RTL: RTL: Read reg16 failed (-110)
[   18.662283] RTL871X: RTW_ADAPTIVITY_EN_
[   18.662291] RTL871X: RTW_ADAPTIVITY_MODE_
[   20.704739] RTL871X: nolinked power save enter
[   21.362396] RTL871X: RTW_ADAPTIVITY_EN_
[   21.362401] RTL871X: RTW_ADAPTIVITY_MODE_
[   21.985004] RTL871X: nolinked power save leave
[   22.193772] RTL871X: rtw_set_802_11_connect(wlx0013efd002c3)  fw_state=0x00000008
[   22.248060] RTL871X: start auth
[   22.250191] RTL871X: auth success, start assoc
[   22.275421] RTL871X: rtw_cfg80211_indicate_connect(wlx0013efd002c3) BSS not found !!
[   22.275445] RTL871X: assoc success
[   22.299532] RTL871X: send eapol packet
[   22.309094] RTL871X: send eapol packet
[   22.309183] RTL871X: set pairwise key camid:4, addr:38:35:fb:f3:e5:d0, kid:0, type:AES
[   22.310347] RTL871X: set group key camid:5, addr:38:35:fb:f3:e5:d0, kid:1, type:AES
django@ASGARD:~$  

La tentative de compiler va pô bien loin :

django@ASGARD:~/Logiciels/driver rtl8723bu/rtl8723bu$ make
make ARCH=x86_64 CROSS_COMPILE= -C /lib/modules/6.5.0-14-generic/build M=/media/DATA/coeurnoir/Logiciels/driver rtl8723bu/rtl8723bu  modules
make[1] : on entre dans le répertoire « /usr/src/linux-headers-6.5.0-14-generic »
make[2]: *** Aucune règle pour fabriquer la cible « rtl8723bu/rtl8723bu ». Arrêt.
make[1]: *** [Makefile:234 : __sub-make] Erreur 2
make[1] : on quitte le répertoire « /usr/src/linux-headers-6.5.0-14-generic »
make: *** [Makefile:332 : modules] Erreur 2
django@ASGARD:~/Logiciels/driver rtl8723bu/rtl8723bu$ 

et à tout hasard :

django@ASGARD:~/Logiciels/driver rtl8723bu/rtl8723bu$ cat /etc/modprobe.d/50-rtl8xxxu.conf 
# commenter la ligne suivante pour rétablir le chargement des modules standards
blacklist rtl8xxxu
django@ASGARD:~/Logiciels/driver rtl8723bu/rtl8723bu$ 

____________________________________________________

Plus tard…

Que faut-il comprendre lorsque j'essaie de repartir de zéro ( après dkms uninstall, suppression des dossiers du driver… ) :

django@ASGARD:~/Logiciels/driver rtl8723bu/rtl8723bu$ source dkms.conf 
django@ASGARD:~/Logiciels/driver rtl8723bu/rtl8723bu$ sudo mkdir /usr/src/$PACKAGE_NAME-$PACKAGE_VERSION
django@ASGARD:~/Logiciels/driver rtl8723bu/rtl8723bu$ sudo cp -r core hal include os_dep platform dkms.conf Makefile rtl8723b_fw.bin /usr/src/$PACKAGE_NAME-$PACKAGE_VERSION
django@ASGARD:~/Logiciels/driver rtl8723bu/rtl8723bu$ sudo dkms add $PACKAGE_NAME/$PACKAGE_VERSION
Creating symlink /var/lib/dkms/rtl8723bu/4.3.6.11_12942.20141204_BTCOEX20140507-4E40/source -> /usr/src/rtl8723bu-4.3.6.11_12942.20141204_BTCOEX20140507-4E40
django@ASGARD:~/Logiciels/driver rtl8723bu/rtl8723bu$ sudo dkms autoinstall $PACKAGE_NAME/$PACKAGE_VERSION

Kernel preparation unnecessary for this kernel. Skipping...

Building module:
cleaning build area...
make -j8 KERNELRELEASE=6.5.0-14-generic -C /lib/modules/6.5.0-14-generic/build M=/var/lib/dkms/rtl8723bu/4.3.6.11_12942.20141204_BTCOEX20140507-4E40/build........
cleaning build area...

rtl8723bu.ko:
Running module version sanity check.
Error! Module version v4.3.6.11_12942.20141204_BTCOEX20140507-4E40 for rtl8723bu.ko
is not newer than what is already found in kernel 6.5.0-14-generic (v4.3.6.11_12942.20141204_BTCOEX20140507-4E40).
You may override by specifying --force.

depmod....
django@ASGARD:~/Logiciels/driver rtl8723bu/rtl8723bu$

⋅ que le module fait dorénavant partie du kernel ?
OU
⋅ qu'il reste des traces de l'ancienne install' via dkms ?

Arrrfff, le module était encore chargé !

sudo modprobe -r rtl8723bu

____________________________________________________

Encore un peu plus tard…

Je redémarre avec le noyau 6.2 pensant que j'y retrouverais le bluetooth puisqu'il y fonctionnait.
Non.
Là aussi, impossible d'activer le bluetooth.

C'est le dongle qui fait la gueule, il est mourant ?

Dernière modification par Coeur Noir (Le 13/01/2024, à 02:42)


DébuterDocBien rédigerRetour commandeInsérer image | illustrations & captures d'écran <>

Hors ligne

#2 Le 13/01/2024, à 08:36

xubu1957

Re : Bluetooth/wifi via dongle RTL8723BU: KO avec noyau 6.5 ?

Bonjour,


Montre :

modinfo 8723bu
sudo dmesg | egrep -i 'blue|firm'

> [ubuntu]Ubuntu 18.04: Edimax EW-7611ULB WiFi/Bluetooth USB not working

et aussi :

bootctl

Dernière modification par xubu1957 (Le 13/01/2024, à 08:54)


Conseils pour les nouveaux demandeurs et pas qu'eux
Important : Pensez à passer vos sujets en [Résolu] 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 13/01/2024, à 08:57

Sauzee

Re : Bluetooth/wifi via dongle RTL8723BU: KO avec noyau 6.5 ?

Bonjour

Meme probleme chez moi avec dongle mixte bluetooth/wifi realtek 8821cu : apres passage au 6.5.0.14 wifi totalement disparu et bluetooth present/visible mais pas activable.
Je suis la discussion.

Hors ligne

#4 Le 13/01/2024, à 09:14

xubu1957

Re : Bluetooth/wifi via dongle RTL8723BU: KO avec noyau 6.5 ?

@Sauzee

Tu avais installé un pilote Bluetooth > [Solved] Realtek 8821CU Not Working on New Install ?


Conseils pour les nouveaux demandeurs et pas qu'eux
Important : Pensez à passer vos sujets en [Résolu] 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 13/01/2024, à 10:32

Sauzee

Re : Bluetooth/wifi via dongle RTL8723BU: KO avec noyau 6.5 ?

De mémoire (puisque tout fonctionnait depuis l'installation de la 22:04) j'avais installé ce pilote qui gére le bluetooth ET le wifi. j'avais ajouté ces lignes à la fin de /lib/udev/rules.d/40-usb_modeswitch.rules:

# Realtek 8211CU Wifi AC USB 
ATTR{idVendor}=="0bda", ATTR{idProduct}=="1a2b", RUN+="/usr/sbin/usb_modeswitch -K -v 0bda -p 1a2b"

pour garantir une compilation automatique via DKMS durant chaque changement de kernel. Compilation qui advenait régulierement jusqu'au 6.5.0.14
Tout se passe maintenant comme si la mise à jour kernel avait blacklisté le pilote. J'excluerais à priori un soucis de l'utilitaire DKMS puisqu'il continue à faire le job pour d'autres pilotes (le driver nVidia entre autres).
PS: Etant trés occupé, je ne garantis pas un suivi assidu du fil mais viendrais y jeter  un oeil quand ce sera possible. Merci pour l'aide.

Hors ligne

#6 Le 13/01/2024, à 10:58

xubu1957

Re : Bluetooth/wifi via dongle RTL8723BU: KO avec noyau 6.5 ?

Il y a un souci avec les pilotes nvidia > Problème après mise à jour du noyau -6.5.0-14-generic


Conseils pour les nouveaux demandeurs et pas qu'eux
Important : Pensez à passer vos sujets en [Résolu] 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

#7 Le 13/01/2024, à 11:01

Sauzee

Re : Bluetooth/wifi via dongle RTL8723BU: KO avec noyau 6.5 ?

je viens (aprés désintallation complete du pilote et redémarrage) de tenter une réinstallation.
Voici le retour:

---------------------------
: install-driver.sh v20230227
: x86_64 (architecture)
: 4/4 (in-use/total processing units)
: 16317412 (total system memory)
: 6.5.0-14-generic (kernel version)
: gcc (Ubuntu 11.4.0-1ubuntu1~22.04) 11.4.0
: dkms-2.8.7
EFI variables are not supported on this system
: ---------------------------

Checking for previously installed drivers.
: ---------------------------

Starting installation.
Installing 8821cu.conf to /etc/modprobe.d
The dkms installation routines are in use.
Copying source files to /usr/src/rtl8821cu-5.12.0.4
Creating symlink /var/lib/dkms/rtl8821cu/5.12.0.4/source -> /usr/src/rtl8821cu-5.12.0.4
The driver was added to dkms successfully.
: ---------------------------

Kernel preparation unnecessary for this kernel. Skipping...

Building module:
cleaning build area...
./dkms-make.sh..............(bad exit status: 2)
ERROR (dkms apport): binary package for rtl8821cu: 5.12.0.4 not found
Error! Bad return status for module build on kernel: 6.5.0-14-generic (x86_64)
Consult /var/lib/dkms/rtl8821cu/5.12.0.4/build/make.log for more information.
Command exited with non-zero status 10
Compile time: 115.14 seconds
An error occurred. dkms build error:  10
Please report this error.
Please copy all screen output and paste it into the problem report.
Run the following before reattempting installation.
$ sudo ./remove-driver.sh
xxxxx@ubuntu:~/8821cu-20210916-main$ 

Donc en suivant le retour d'erreur je vais consulter le /var/lib/dkms/rtl8821cu/5.12.0.4/source -> /usr/src/rtl8821cu-5.12.0.4 que voici:

DKMS make.log for rtl8821cu-5.12.0.4 for kernel 6.5.0-14-generic (x86_64)
sab 13 gen 2024, 09:51:04, CET
make ARCH=x86_64 CROSS_COMPILE= -C /lib/modules/6.5.0-14-generic/build M=/var/lib/dkms/rtl8821cu/5.12.0.4/build  modules
make[1]: ingresso nella directory «/usr/src/linux-headers-6.5.0-14-generic»
warning: the compiler differs from the one used to build the kernel
  The kernel was built by: x86_64-linux-gnu-gcc-12 (Ubuntu 12.3.0-1ubuntu1~22.04) 12.3.0
  You are using:           gcc-12 (Ubuntu 12.3.0-1ubuntu1~22.04) 12.3.0
  CC [M]  /var/lib/dkms/rtl8821cu/5.12.0.4/build/core/rtw_cmd.o
  CC [M]  /var/lib/dkms/rtl8821cu/5.12.0.4/build/core/rtw_security.o
  CC [M]  /var/lib/dkms/rtl8821cu/5.12.0.4/build/core/rtw_debug.o
  CC [M]  /var/lib/dkms/rtl8821cu/5.12.0.4/build/core/rtw_io.o
  CC [M]  /var/lib/dkms/rtl8821cu/5.12.0.4/build/core/rtw_ioctl_query.o
  CC [M]  /var/lib/dkms/rtl8821cu/5.12.0.4/build/core/rtw_ioctl_set.o
  CC [M]  /var/lib/dkms/rtl8821cu/5.12.0.4/build/core/rtw_ieee80211.o
  CC [M]  /var/lib/dkms/rtl8821cu/5.12.0.4/build/core/rtw_mlme.o
  CC [M]  /var/lib/dkms/rtl8821cu/5.12.0.4/build/core/rtw_mlme_ext.o
  CC [M]  /var/lib/dkms/rtl8821cu/5.12.0.4/build/core/rtw_mi.o
  CC [M]  /var/lib/dkms/rtl8821cu/5.12.0.4/build/core/rtw_wlan_util.o
  CC [M]  /var/lib/dkms/rtl8821cu/5.12.0.4/build/core/rtw_vht.o
  CC [M]  /var/lib/dkms/rtl8821cu/5.12.0.4/build/core/rtw_pwrctrl.o
  CC [M]  /var/lib/dkms/rtl8821cu/5.12.0.4/build/core/rtw_rf.o
  CC [M]  /var/lib/dkms/rtl8821cu/5.12.0.4/build/core/rtw_chplan.o
  CC [M]  /var/lib/dkms/rtl8821cu/5.12.0.4/build/core/monitor/rtw_radiotap.o
  CC [M]  /var/lib/dkms/rtl8821cu/5.12.0.4/build/core/rtw_recv.o
  CC [M]  /var/lib/dkms/rtl8821cu/5.12.0.4/build/core/rtw_sta_mgt.o
  CC [M]  /var/lib/dkms/rtl8821cu/5.12.0.4/build/core/rtw_ap.o
  CC [M]  /var/lib/dkms/rtl8821cu/5.12.0.4/build/core/wds/rtw_wds.o
  CC [M]  /var/lib/dkms/rtl8821cu/5.12.0.4/build/core/mesh/rtw_mesh.o
  CC [M]  /var/lib/dkms/rtl8821cu/5.12.0.4/build/core/mesh/rtw_mesh_pathtbl.o
  CC [M]  /var/lib/dkms/rtl8821cu/5.12.0.4/build/core/mesh/rtw_mesh_hwmp.o
  CC [M]  /var/lib/dkms/rtl8821cu/5.12.0.4/build/core/rtw_xmit.o
  CC [M]  /var/lib/dkms/rtl8821cu/5.12.0.4/build/core/rtw_p2p.o
  CC [M]  /var/lib/dkms/rtl8821cu/5.12.0.4/build/core/rtw_rson.o
  CC [M]  /var/lib/dkms/rtl8821cu/5.12.0.4/build/core/rtw_tdls.o
  CC [M]  /var/lib/dkms/rtl8821cu/5.12.0.4/build/core/rtw_br_ext.o
  CC [M]  /var/lib/dkms/rtl8821cu/5.12.0.4/build/core/rtw_iol.o
  CC [M]  /var/lib/dkms/rtl8821cu/5.12.0.4/build/core/rtw_sreset.o
  CC [M]  /var/lib/dkms/rtl8821cu/5.12.0.4/build/core/rtw_btcoex_wifionly.o
  CC [M]  /var/lib/dkms/rtl8821cu/5.12.0.4/build/core/rtw_btcoex.o
  CC [M]  /var/lib/dkms/rtl8821cu/5.12.0.4/build/core/rtw_beamforming.o
  CC [M]  /var/lib/dkms/rtl8821cu/5.12.0.4/build/core/rtw_odm.o
  CC [M]  /var/lib/dkms/rtl8821cu/5.12.0.4/build/core/rtw_rm.o
  CC [M]  /var/lib/dkms/rtl8821cu/5.12.0.4/build/core/rtw_rm_fsm.o
  CC [M]  /var/lib/dkms/rtl8821cu/5.12.0.4/build/core/rtw_ft.o
  CC [M]  /var/lib/dkms/rtl8821cu/5.12.0.4/build/core/rtw_wnm.o
  CC [M]  /var/lib/dkms/rtl8821cu/5.12.0.4/build/core/rtw_mbo.o
  CC [M]  /var/lib/dkms/rtl8821cu/5.12.0.4/build/core/rtw_rm_util.o
  CC [M]  /var/lib/dkms/rtl8821cu/5.12.0.4/build/core/efuse/rtw_efuse.o
  CC [M]  /var/lib/dkms/rtl8821cu/5.12.0.4/build/core/rtw_roch.o
  CC [M]  /var/lib/dkms/rtl8821cu/5.12.0.4/build/core/crypto/aes-internal.o
  CC [M]  /var/lib/dkms/rtl8821cu/5.12.0.4/build/core/crypto/aes-internal-enc.o
  CC [M]  /var/lib/dkms/rtl8821cu/5.12.0.4/build/core/crypto/aes-gcm.o
  CC [M]  /var/lib/dkms/rtl8821cu/5.12.0.4/build/core/crypto/aes-ccm.o
  CC [M]  /var/lib/dkms/rtl8821cu/5.12.0.4/build/core/crypto/aes-omac1.o
  CC [M]  /var/lib/dkms/rtl8821cu/5.12.0.4/build/core/crypto/ccmp.o
  CC [M]  /var/lib/dkms/rtl8821cu/5.12.0.4/build/core/crypto/gcmp.o
  CC [M]  /var/lib/dkms/rtl8821cu/5.12.0.4/build/core/crypto/aes-siv.o
  CC [M]  /var/lib/dkms/rtl8821cu/5.12.0.4/build/core/crypto/aes-ctr.o
  CC [M]  /var/lib/dkms/rtl8821cu/5.12.0.4/build/core/crypto/sha256-internal.o
  CC [M]  /var/lib/dkms/rtl8821cu/5.12.0.4/build/core/crypto/sha256.o
  CC [M]  /var/lib/dkms/rtl8821cu/5.12.0.4/build/core/crypto/sha256-prf.o
  CC [M]  /var/lib/dkms/rtl8821cu/5.12.0.4/build/core/crypto/rtw_crypto_wrap.o
  CC [M]  /var/lib/dkms/rtl8821cu/5.12.0.4/build/core/rtw_swcrypto.o
  CC [M]  /var/lib/dkms/rtl8821cu/5.12.0.4/build/os_dep/osdep_service.o
  CC [M]  /var/lib/dkms/rtl8821cu/5.12.0.4/build/os_dep/linux/os_intfs.o
  CC [M]  /var/lib/dkms/rtl8821cu/5.12.0.4/build/os_dep/linux/usb_intf.o
  CC [M]  /var/lib/dkms/rtl8821cu/5.12.0.4/build/os_dep/linux/usb_ops_linux.o
  CC [M]  /var/lib/dkms/rtl8821cu/5.12.0.4/build/os_dep/linux/ioctl_linux.o
  CC [M]  /var/lib/dkms/rtl8821cu/5.12.0.4/build/os_dep/linux/xmit_linux.o
  CC [M]  /var/lib/dkms/rtl8821cu/5.12.0.4/build/os_dep/linux/mlme_linux.o
  CC [M]  /var/lib/dkms/rtl8821cu/5.12.0.4/build/os_dep/linux/recv_linux.o
  CC [M]  /var/lib/dkms/rtl8821cu/5.12.0.4/build/os_dep/linux/ioctl_cfg80211.o
  CC [M]  /var/lib/dkms/rtl8821cu/5.12.0.4/build/os_dep/linux/rtw_cfgvendor.o
  CC [M]  /var/lib/dkms/rtl8821cu/5.12.0.4/build/os_dep/linux/wifi_regd.o
/var/lib/dkms/rtl8821cu/5.12.0.4/build/os_dep/linux/ioctl_cfg80211.c:10600:22: error: initialization of ‘int (*)(struct wiphy *, struct net_device *, const u8 *, int,  u8,  u8,  u16,  u32,  bool,  const u8 *, size_t)’ {aka ‘int (*)(struct wiphy *, struct net_device *, const unsigned char *, int,  unsigned char,  unsigned char,  short unsigned int,  unsigned int,  _Bool,  const unsigned char *, long unsigned int)’} from incompatible pointer type ‘int (*)(struct wiphy *, struct net_device *, const u8 *, u8,  u8,  u16,  u32,  bool,  const u8 *, size_t)’ {aka ‘int (*)(struct wiphy *, struct net_device *, const unsigned char *, unsigned char,  unsigned char,  short unsigned int,  unsigned int,  _Bool,  const unsigned char *, long unsigned int)’} [-Werror=incompatible-pointer-types]
10600 |         .tdls_mgmt = cfg80211_rtw_tdls_mgmt,
      |                      ^~~~~~~~~~~~~~~~~~~~~~
/var/lib/dkms/rtl8821cu/5.12.0.4/build/os_dep/linux/ioctl_cfg80211.c:10600:22: note: (near initialization for ‘rtw_cfg80211_ops.tdls_mgmt’)
  CC [M]  /var/lib/dkms/rtl8821cu/5.12.0.4/build/os_dep/linux/rtw_android.o
  CC [M]  /var/lib/dkms/rtl8821cu/5.12.0.4/build/os_dep/linux/rtw_proc.o
  CC [M]  /var/lib/dkms/rtl8821cu/5.12.0.4/build/os_dep/linux/nlrtw.o
cc1: some warnings being treated as errors
make[3]: *** [scripts/Makefile.build:251: /var/lib/dkms/rtl8821cu/5.12.0.4/build/os_dep/linux/ioctl_cfg80211.o] Errore 1
make[3]: *** Attesa per i processi non terminati....
make[2]: *** [/usr/src/linux-headers-6.5.0-14-generic/Makefile:2037: /var/lib/dkms/rtl8821cu/5.12.0.4/build] Errore 2
make[1]: *** [Makefile:234: __sub-make] Errore 2
make[1]: uscita dalla directory «/usr/src/linux-headers-6.5.0-14-generic»
make: *** [Makefile:2501: modules] Errore 2

Hors ligne

#8 Le 13/01/2024, à 11:03

Sauzee

Re : Bluetooth/wifi via dongle RTL8723BU: KO avec noyau 6.5 ?

xubu1957 a écrit :

Il y a un souci avec les pilotes nvidia > Problème après mise à jour du noyau -6.5.0-14-generic

Ok, je regarde ca dés que possible. Merci.

Hors ligne

#9 Le 13/01/2024, à 11:09

xubu1957

Re : Bluetooth/wifi via dongle RTL8723BU: KO avec noyau 6.5 ?


Conseils pour les nouveaux demandeurs et pas qu'eux
Important : Pensez à passer vos sujets en [Résolu] 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

#10 Le 13/01/2024, à 14:50

NicoApi73

Re : Bluetooth/wifi via dongle RTL8723BU: KO avec noyau 6.5 ?

Bonjour,

@xubu,
Je pense que certains pilotes ne sont pas à jour pour le noyau 6.5. Il faut regarder si il n'y a pas un dépôt git récent que l'on puisse utiliser.

De ce que j'ai pu constater, il semblerait que le dépôt git de L. Finger soit maintenant étroitement lié à Realtek et par conséquent, on retrouve les mêmes problèmes entre les pilotes venant avec la distribution et ceux du dépôt git.

Hors ligne

#11 Le 13/01/2024, à 14:58

Coeur Noir

Re : Bluetooth/wifi via dongle RTL8723BU: KO avec noyau 6.5 ?

Hello Xubu !

Voici les retours :

django@ASGARD:~$ modinfo 8723bu
modinfo: ERROR: Module 8723bu not found.



django@ASGARD:~$ modinfo rtl8723bu
filename:       /lib/modules/6.5.0-14-generic/updates/dkms/rtl8723bu.ko
version:        v4.3.6.11_12942.20141204_BTCOEX20140507-4E40
author:         Realtek Semiconductor Corp.
description:    Realtek Wireless Lan Driver
license:        GPL
srcversion:     81662E619B81B0C9AA40845
alias:          usb:v20F4p108Ad*dc*dsc*dp*icFFiscFFipFFin*
alias:          usb:v7392pA611d*dc*dsc*dp*icFFiscFFipFFin*
alias:          usb:v0BDApB720d*dc*dsc*dp*icFFiscFFipFFin*
depends:        cfg80211
retpoline:      Y
name:           8723bu
vermagic:       6.5.0-14-generic SMP preempt mod_unload modversions 
parm:           rtw_ips_mode:The default IPS mode (int)
parm:           rtw_usb_rxagg_mode:int
parm:           rtw_btcoex_enable:Enable BT co-existence mechanism (int)
parm:           rtw_ant_num:Antenna number setting (int)
parm:           rtw_qos_opt_enable:int
parm:           ifname:The default name to allocate for first interface (charp)
parm:           if2name:The default name to allocate for second interface (charp)
parm:           rtw_initmac:charp
parm:           rtw_channel_plan:int
parm:           rtw_special_rf_path:int
parm:           rtw_chip_version:int
parm:           rtw_rfintfs:int
parm:           rtw_lbkmode:int
parm:           rtw_network_mode:int
parm:           rtw_channel:int
parm:           rtw_mp_mode:int
parm:           rtw_wmm_enable:int
parm:           rtw_vrtl_carrier_sense:int
parm:           rtw_vcs_type:int
parm:           rtw_busy_thresh:int
parm:           rtw_ht_enable:int
parm:           rtw_bw_mode:int
parm:           rtw_ampdu_enable:int
parm:           rtw_rx_stbc:int
parm:           rtw_ampdu_amsdu:int
parm:           rtw_lowrate_two_xmit:int
parm:           rtw_rf_config:int
parm:           rtw_power_mgnt:int
parm:           rtw_smart_ps:int
parm:           rtw_low_power:int
parm:           rtw_wifi_spec:int
parm:           rtw_antdiv_cfg:int
parm:           rtw_antdiv_type:int
parm:           rtw_enusbss:int
parm:           rtw_hwpdn_mode:int
parm:           rtw_hwpwrp_detect:int
parm:           rtw_hw_wps_pbc:int
parm:           rtw_max_roaming_times:The max roaming times to try (uint)
parm:           rtw_mc2u_disable:int
parm:           rtw_80211d:Enable 802.11d mechanism (int)
parm:           rtw_notch_filter:0:Disable, 1:Enable, 2:Enable only for P2P (uint)
parm:           rtw_hiq_filter:0:allow all, 1:allow special, 2:deny all (uint)
parm:           rtw_adaptivity_en:0:disable, 1:enable, 2:auto (uint)
parm:           rtw_adaptivity_mode:0:normal, 1:carrier sense (uint)
parm:           rtw_tx_pwr_lmt_enable:0:Disable, 1:Enable, 2: Depend on efuse (int)
parm:           rtw_tx_pwr_by_rate:0:Disable, 1:Enable, 2: Depend on efuse (int)
parm:           rtw_phy_file_path:The path of phy parameter (charp)
parm:           rtw_load_phy_file:PHY File Bit Map (int)
parm:           rtw_decrypt_phy_file:Enable Decrypt PHY File (int)



django@ASGARD:~$ sudo dmesg | egrep -i 'blue|firm'
[sudo] Mot de passe de django : 
[    0.129028] Spectre V2 : Enabling Restricted Speculation for firmware calls
[    0.170726] ACPI: [Firmware Bug]: BIOS _OSI(Linux) query ignored
[    3.289916] Bluetooth: Core ver 2.22
[    3.289937] NET: Registered PF_BLUETOOTH protocol family
[    3.289938] Bluetooth: HCI device and connection manager initialized
[    3.289943] Bluetooth: HCI socket layer initialized
[    3.289945] Bluetooth: L2CAP socket layer initialized
[    3.289948] Bluetooth: SCO socket layer initialized
[    3.317155] Bluetooth: hci0: RTL: examining hci_ver=06 hci_rev=000b lmp_ver=06 lmp_subver=8723
[    3.318162] Bluetooth: hci0: RTL: rom_version status=0 version=1
[    3.318165] Bluetooth: hci0: RTL: loading rtl_bt/rtl8723b_fw.bin
[    3.331443] Bluetooth: hci0: RTL: loading rtl_bt/rtl8723b_config.bin
[    3.331486] bluetooth hci0: Direct firmware load for rtl_bt/rtl8723b_config.bin failed with error -2
[    3.331493] Bluetooth: hci0: RTL: cfg_sz -2, total sz 22496
[    3.837758] usb 3-1: rtl8xxxu: Loading firmware rtlwifi/rtl8723bu_nic.bin
[    3.838903] usb 3-1: Firmware revision 35.0 (signature 0x5301)
[    3.974385] Bluetooth: BNEP (Ethernet Emulation) ver 1.3
[    3.974388] Bluetooth: BNEP filters: protocol multicast
[    3.974391] Bluetooth: BNEP socket layer initialized
[    4.133165] Bluetooth: hci0: RTL: fw version 0x0e2f9f73
[    4.242284] Bluetooth: MGMT ver 1.22
[   12.450532] usb 3-1: rtl8xxxu: Loading firmware rtlwifi/rtl8723bu_nic.bin
[   12.450762] usb 3-1: Firmware revision 35.0 (signature 0x5301)
[   12.454641] usb 3-1: Firmware is already running, resetting the MCU.
[   12.463187] Bluetooth: hci0: RTL: examining hci_ver=06 hci_rev=000b lmp_ver=06 lmp_subver=8723
[   12.464189] Bluetooth: hci0: RTL: rom_version status=0 version=1
[   12.464194] Bluetooth: hci0: RTL: loading rtl_bt/rtl8723b_fw.bin
[   12.464498] Bluetooth: hci0: RTL: loading rtl_bt/rtl8723b_config.bin
[   12.464519] bluetooth hci0: Direct firmware load for rtl_bt/rtl8723b_config.bin failed with error -2
[   12.464527] Bluetooth: hci0: RTL: cfg_sz -2, total sz 22496
[   12.898290] Bluetooth: hci0: RTL: fw version 0x0e2f9f73
[   13.007310] Bluetooth: MGMT ver 1.22
[   15.255098] usb 3-1: rtl8xxxu: Loading firmware rtlwifi/rtl8723bu_nic.bin
[   15.255314] usb 3-1: Firmware revision 35.0 (signature 0x5301)
[   15.259063] usb 3-1: Firmware is already running, resetting the MCU.
[   15.262241] Bluetooth: hci0: RTL: examining hci_ver=06 hci_rev=000b lmp_ver=06 lmp_subver=8723
[   15.263204] Bluetooth: hci0: RTL: rom_version status=0 version=1
[   15.263207] Bluetooth: hci0: RTL: loading rtl_bt/rtl8723b_fw.bin
[   15.263489] Bluetooth: hci0: RTL: loading rtl_bt/rtl8723b_config.bin
[   15.263507] bluetooth hci0: Direct firmware load for rtl_bt/rtl8723b_config.bin failed with error -2
[   15.263514] Bluetooth: hci0: RTL: cfg_sz -2, total sz 22496
[   15.698233] Bluetooth: hci0: RTL: fw version 0x0e2f9f73
[   15.807420] Bluetooth: MGMT ver 1.22
[   24.040554] Bluetooth: RFCOMM TTY layer initialized
[   24.040560] Bluetooth: RFCOMM socket layer initialized
[   24.040564] Bluetooth: RFCOMM ver 1.11
[   77.040656] usb 3-1: rtl8xxxu: Loading firmware rtlwifi/rtl8723bu_nic.bin
[   77.041322] usb 3-1: Firmware revision 35.0 (signature 0x5301)
[   77.045105] usb 3-1: Firmware is already running, resetting the MCU.
[   77.054352] Bluetooth: hci0: RTL: examining hci_ver=06 hci_rev=000b lmp_ver=06 lmp_subver=8723
[   77.055349] Bluetooth: hci0: RTL: rom_version status=0 version=1
[   77.055363] Bluetooth: hci0: RTL: loading rtl_bt/rtl8723b_fw.bin
[   77.056431] Bluetooth: hci0: RTL: loading rtl_bt/rtl8723b_config.bin
[   77.056500] bluetooth hci0: Direct firmware load for rtl_bt/rtl8723b_config.bin failed with error -2
[   77.056523] Bluetooth: hci0: RTL: cfg_sz -2, total sz 22496
[   77.492393] Bluetooth: hci0: RTL: fw version 0x0e2f9f73
[   77.601406] Bluetooth: MGMT ver 1.22



django@ASGARD:~$ bootctl
Couldn't find EFI system partition. It is recommended to mount it to /boot or /efi.
Alternatively, use --esp-path= to specify path to mount point.
System:
    Not booted with EFI

django@ASGARD:~$

Et une découverte faite avant cette réponse, que je ne m'explique pas :
dans mon cas lors de l'utilisation de ce pilote installé manuellement, il était conseillé de blacklister le chargement des modules « standards ».
Voir le cat /etc/modprobe.d/50-rtl8xxxu.conf  dans mon message initial.

Jai testé en rétablissant la situation initiale et… ça semble résoudre  le problème.

Ayant ces dernières semaines pas mal « bidouillé » avec le bluetooth, je ne suis pas sûr de ce que cela signifie :
ces pilotes sont-ils dorénavant intégrés au noyau ( ce serait une bonne nouvelle ) ? Comment le savoir ?
À l'instant :

django@ASGARD:~$ sudo dmesg | grep -Ei "bluetooth|rtl|8723bu|firm"
[    0.129028] Spectre V2 : Enabling Restricted Speculation for firmware calls
[    0.170726] ACPI: [Firmware Bug]: BIOS _OSI(Linux) query ignored
[    0.778267] r8169 0000:03:00.0 eth0: RTL8168g/8111g, 74:d0:2b:9e:fb:40, XID 4c0, IRQ 30
[    3.289916] Bluetooth: Core ver 2.22
[    3.289937] NET: Registered PF_BLUETOOTH protocol family
[    3.289938] Bluetooth: HCI device and connection manager initialized
[    3.289943] Bluetooth: HCI socket layer initialized
[    3.289945] Bluetooth: L2CAP socket layer initialized
[    3.289948] Bluetooth: SCO socket layer initialized
[    3.317155] Bluetooth: hci0: RTL: examining hci_ver=06 hci_rev=000b lmp_ver=06 lmp_subver=8723
[    3.318162] Bluetooth: hci0: RTL: rom_version status=0 version=1
[    3.318165] Bluetooth: hci0: RTL: loading rtl_bt/rtl8723b_fw.bin
[    3.331443] Bluetooth: hci0: RTL: loading rtl_bt/rtl8723b_config.bin
[    3.331486] bluetooth hci0: Direct firmware load for rtl_bt/rtl8723b_config.bin failed with error -2
[    3.331493] Bluetooth: hci0: RTL: cfg_sz -2, total sz 22496
[    3.837725] usb 3-1: Dumping efuse for RTL8723BU (0x200 bytes):
[    3.837754] usb 3-1: RTL8723BU rev E (SMIC) romver 0, 1T1R, TX queues 3, WiFi=1, BT=1, GPS=0, HI PA=0
[    3.837756] usb 3-1: RTL8723BU MAC: 00:13:ef:d0:02:c3
[    3.837758] usb 3-1: rtl8xxxu: Loading firmware rtlwifi/rtl8723bu_nic.bin
[    3.838903] usb 3-1: Firmware revision 35.0 (signature 0x5301)
[    3.974385] Bluetooth: BNEP (Ethernet Emulation) ver 1.3
[    3.974388] Bluetooth: BNEP filters: protocol multicast
[    3.974391] Bluetooth: BNEP socket layer initialized
[    4.133165] Bluetooth: hci0: RTL: fw version 0x0e2f9f73
[    4.242284] Bluetooth: MGMT ver 1.22
[    4.625549] usbcore: registered new interface driver rtl8xxxu
[    4.632577] 8723bu: loading out-of-tree module taints kernel.
[    4.632589] 8723bu: module verification failed: signature and/or required key missing - tainting kernel
[    4.668449] RTL871X: module init start
[    4.668452] RTL871X: rtl8723bu v4.3.6.11_12942.20141204_BTCOEX20140507-4E40
[    4.668453] RTL871X: rtl8723bu BT-Coex version = BTCOEX20140507-4E40
[    4.668496] usbcore: registered new interface driver rtl8723bu
[    4.668498] RTL871X: module init ret=0
[    4.672078] rtl8xxxu 3-1:1.2 wlx0013efd002c3: renamed from wlan0
[   11.967337] usb 3-1: rtl8xxxu_active_to_lps: RX poll timed out (0x05f8)
[   11.972445] usb 3-1: rtl8723bu_active_to_emu: Disabling MAC timed out
[   12.450488] usb 3-1: Dumping efuse for RTL8723BU (0x200 bytes):
[   12.450527] usb 3-1: RTL8723BU rev E (SMIC) romver 0, 1T1R, TX queues 3, WiFi=1, BT=1, GPS=0, HI PA=0
[   12.450530] usb 3-1: RTL8723BU MAC: 00:13:ef:d0:02:c3
[   12.450532] usb 3-1: rtl8xxxu: Loading firmware rtlwifi/rtl8723bu_nic.bin
[   12.450762] usb 3-1: Firmware revision 35.0 (signature 0x5301)
[   12.454641] usb 3-1: Firmware is already running, resetting the MCU.
[   12.463187] Bluetooth: hci0: RTL: examining hci_ver=06 hci_rev=000b lmp_ver=06 lmp_subver=8723
[   12.464189] Bluetooth: hci0: RTL: rom_version status=0 version=1
[   12.464194] Bluetooth: hci0: RTL: loading rtl_bt/rtl8723b_fw.bin
[   12.464498] Bluetooth: hci0: RTL: loading rtl_bt/rtl8723b_config.bin
[   12.464519] bluetooth hci0: Direct firmware load for rtl_bt/rtl8723b_config.bin failed with error -2
[   12.464527] Bluetooth: hci0: RTL: cfg_sz -2, total sz 22496
[   12.898290] Bluetooth: hci0: RTL: fw version 0x0e2f9f73
[   13.007310] Bluetooth: MGMT ver 1.22
[   13.248824] rtl8xxxu 3-1:1.2 wlx0013efd002c3: renamed from wlan0
[   14.767286] usb 3-1: rtl8xxxu_active_to_lps: RX poll timed out (0x05f8)
[   14.772365] usb 3-1: rtl8723bu_active_to_emu: Disabling MAC timed out
[   15.255058] usb 3-1: Dumping efuse for RTL8723BU (0x200 bytes):
[   15.255094] usb 3-1: RTL8723BU rev E (SMIC) romver 0, 1T1R, TX queues 3, WiFi=1, BT=1, GPS=0, HI PA=0
[   15.255097] usb 3-1: RTL8723BU MAC: 00:13:ef:d0:02:c3
[   15.255098] usb 3-1: rtl8xxxu: Loading firmware rtlwifi/rtl8723bu_nic.bin
[   15.255314] usb 3-1: Firmware revision 35.0 (signature 0x5301)
[   15.259063] usb 3-1: Firmware is already running, resetting the MCU.
[   15.262241] Bluetooth: hci0: RTL: examining hci_ver=06 hci_rev=000b lmp_ver=06 lmp_subver=8723
[   15.263204] Bluetooth: hci0: RTL: rom_version status=0 version=1
[   15.263207] Bluetooth: hci0: RTL: loading rtl_bt/rtl8723b_fw.bin
[   15.263489] Bluetooth: hci0: RTL: loading rtl_bt/rtl8723b_config.bin
[   15.263507] bluetooth hci0: Direct firmware load for rtl_bt/rtl8723b_config.bin failed with error -2
[   15.263514] Bluetooth: hci0: RTL: cfg_sz -2, total sz 22496
[   15.698233] Bluetooth: hci0: RTL: fw version 0x0e2f9f73
[   15.807420] Bluetooth: MGMT ver 1.22
[   16.056338] rtl8xxxu 3-1:1.2 wlx0013efd002c3: renamed from wlan0
[   24.040554] Bluetooth: RFCOMM TTY layer initialized
[   24.040560] Bluetooth: RFCOMM socket layer initialized
[   24.040564] Bluetooth: RFCOMM ver 1.11
[   76.559454] usb 3-1: rtl8xxxu_active_to_lps: RX poll timed out (0x05f8)
[   76.564686] usb 3-1: rtl8723bu_active_to_emu: Disabling MAC timed out
[   77.040525] usb 3-1: Dumping efuse for RTL8723BU (0x200 bytes):
[   77.040641] usb 3-1: RTL8723BU rev E (SMIC) romver 0, 1T1R, TX queues 3, WiFi=1, BT=1, GPS=0, HI PA=0
[   77.040650] usb 3-1: RTL8723BU MAC: 00:13:ef:d0:02:c3
[   77.040656] usb 3-1: rtl8xxxu: Loading firmware rtlwifi/rtl8723bu_nic.bin
[   77.041322] usb 3-1: Firmware revision 35.0 (signature 0x5301)
[   77.045105] usb 3-1: Firmware is already running, resetting the MCU.
[   77.054352] Bluetooth: hci0: RTL: examining hci_ver=06 hci_rev=000b lmp_ver=06 lmp_subver=8723
[   77.055349] Bluetooth: hci0: RTL: rom_version status=0 version=1
[   77.055363] Bluetooth: hci0: RTL: loading rtl_bt/rtl8723b_fw.bin
[   77.056431] Bluetooth: hci0: RTL: loading rtl_bt/rtl8723b_config.bin
[   77.056500] bluetooth hci0: Direct firmware load for rtl_bt/rtl8723b_config.bin failed with error -2
[   77.056523] Bluetooth: hci0: RTL: cfg_sz -2, total sz 22496
[   77.492393] Bluetooth: hci0: RTL: fw version 0x0e2f9f73
[   77.601406] Bluetooth: MGMT ver 1.22
[   77.837617] rtl8xxxu 3-1:1.2 wlx0013efd002c3: renamed from wlan0
[  765.516751] usb 3-1: rtl8xxxu_bss_info_changed: HT supported
django@ASGARD:~$ 

DébuterDocBien rédigerRetour commandeInsérer image | illustrations & captures d'écran <>

Hors ligne

#12 Le 13/01/2024, à 15:05

ylag

Re : Bluetooth/wifi via dongle RTL8723BU: KO avec noyau 6.5 ?

Bonjour,

Il serait peut-être intéressant de voir si le dongle mentionné par @Coeur Noir au message #1 fonctionnerait sur une session live (ou même sur une installation en dur ...) de Mantic 23.10, qui utilise ce noyau 6.5 ?

A+

Hors ligne

#13 Le 13/01/2024, à 15:11

xubu1957

Re : Bluetooth/wifi via dongle RTL8723BU: KO avec noyau 6.5 ?

@Nico

Infos : Assistance Needed for Realtek 8812CU Chipset #176

Je n'ai rien trouvé pour un kernel 6.5, dans les discussions du github.com/lwfinger/rtl8723bu/issues

Dernière modification par xubu1957 (Le 13/01/2024, à 15:14)


Conseils pour les nouveaux demandeurs et pas qu'eux
Important : Pensez à passer vos sujets en [Résolu] 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

#14 Le 13/01/2024, à 15:15

Coeur Noir

Re : Bluetooth/wifi via dongle RTL8723BU: KO avec noyau 6.5 ?

@ylag : je ferais ce test dès que possible ( mais soyez patients ) !

Et là même si je constate que bluetooth et wifi fonctionnent, c'est « moins bon » qu'il y a quelques jours / semaines :
énormément de microcoupures~interférences sur l'audio en bluetooth ( mon usage principal du bt ici. )

Dernière modification par Coeur Noir (Le 13/01/2024, à 15:15)


DébuterDocBien rédigerRetour commandeInsérer image | illustrations & captures d'écran <>

Hors ligne

#15 Le 13/01/2024, à 15:16

xubu1957

Re : Bluetooth/wifi via dongle RTL8723BU: KO avec noyau 6.5 ?

Fais voir :

iwconfig
nmcli dev wifi | cat

Conseils pour les nouveaux demandeurs et pas qu'eux
Important : Pensez à passer vos sujets en [Résolu] 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

#16 Le 13/01/2024, à 15:17

nany

Re : Bluetooth/wifi via dongle RTL8723BU: KO avec noyau 6.5 ?

Bonjour,



xubu1957 a écrit :

Il y a un souci avec les pilotes nvidia > Problème après mise à jour du noyau -6.5.0-14-generic

xubu1957 a écrit :

Je pense que tout ce qui est en dkms dans la 22.04 avec la version 6.5.0 du noyau est foireux.
Il vaut mieux rester sur la version 6.2.0 en attendant que les problèmes soient réglés.

Hors ligne

#17 Le 13/01/2024, à 15:30

Coeur Noir

Re : Bluetooth/wifi via dongle RTL8723BU: KO avec noyau 6.5 ?

django@ASGARD:~$ iwconfig
lo        no wireless extensions.

enp3s0    no wireless extensions.

wlx0013efd002c3  IEEE 802.11bgn  ESSID:"Coeur-Noir"  Nickname:"<WIFI@REALTEK>"
          Mode:Managed  Frequency:2.437 GHz  Access Point: 38:35:FB:F3:E5:D0   
          Bit Rate:72.2 Mb/s   Sensitivity:0/0  
          Retry:off   RTS thr:off   Fragment thr:off
          Power Management:off
          Link Quality=99/100  Signal level=100/100  Noise level=0/100
          Rx invalid nwid:0  Rx invalid crypt:0  Rx invalid frag:0
          Tx excessive retries:0  Invalid misc:0   Missed beacon:0

django@ASGARD:~$ nmcli dev wifi | cat
IN-USE  BSSID              SSID          MODE   CHAN  RATE        SIGNAL  BARS  SECURITY  
*       38:35:FB:F3:E5:D0  Coeur-Noir    Infra  6     130 Mbit/s  92      ▂▄▆█  WPA2      
*       38:35:FB:F3:E5:D0  Coeur-Noir    Infra  6     130 Mbit/s  92      ▂▄▆█  WPA2      
        04:70:56:C0:FA:44  Livebox-FA44  Infra  1     130 Mbit/s  70      ▂▄▆_  WPA2      
        6C:61:F4:4A:A8:8E  SFR_A888      Infra  6     130 Mbit/s  69      ▂▄▆_  WPA1 WPA2 
django@ASGARD:~$ 

Je viens d'ajouter
rtl8723bu
à
/etc/modules
et à priori y'a du mieux, plus de coupures de son…

Je remontre :

django@ASGARD:~$ sudo dmesg | grep -Ei "bluetooth|firm|rtl|warn|fail"
[sudo] Mot de passe de django : 
[    0.128411] Spectre V2 : Enabling Restricted Speculation for firmware calls
[    0.169939] ACPI: [Firmware Bug]: BIOS _OSI(Linux) query ignored
[    0.763120] ACPI Warning: SystemIO range 0x0000000000001828-0x000000000000182F conflicts with OpRegion 0x0000000000001800-0x000000000000187F (\PMIO) (20230331/utaddress-204)
[    0.763130] ACPI Warning: SystemIO range 0x0000000000001C40-0x0000000000001C4F conflicts with OpRegion 0x0000000000001C00-0x0000000000001FFF (\GPR) (20230331/utaddress-204)
[    0.763136] ACPI Warning: SystemIO range 0x0000000000001C30-0x0000000000001C3F conflicts with OpRegion 0x0000000000001C00-0x0000000000001C3F (\GPRL) (20230331/utaddress-204)
[    0.763140] ACPI Warning: SystemIO range 0x0000000000001C30-0x0000000000001C3F conflicts with OpRegion 0x0000000000001C00-0x0000000000001FFF (\GPR) (20230331/utaddress-204)
[    0.763146] ACPI Warning: SystemIO range 0x0000000000001C00-0x0000000000001C2F conflicts with OpRegion 0x0000000000001C00-0x0000000000001C3F (\GPRL) (20230331/utaddress-204)
[    0.763150] ACPI Warning: SystemIO range 0x0000000000001C00-0x0000000000001C2F conflicts with OpRegion 0x0000000000001C00-0x0000000000001FFF (\GPR) (20230331/utaddress-204)
[    0.786181] r8169 0000:03:00.0 eth0: RTL8168g/8111g, 74:d0:2b:9e:fb:40, XID 4c0, IRQ 30
[    2.314566] 8723bu: module verification failed: signature and/or required key missing - tainting kernel
[    2.350396] RTL871X: module init start
[    2.350399] RTL871X: rtl8723bu v4.3.6.11_12942.20141204_BTCOEX20140507-4E40
[    2.350400] RTL871X: rtl8723bu BT-Coex version = BTCOEX20140507-4E40
[    2.398473] RTL871X: rtw_ndev_init(wlan0)
[    2.398664] usbcore: registered new interface driver rtl8723bu
[    2.398666] RTL871X: module init ret=0
[    2.694302] Bluetooth: Core ver 2.22
[    2.694328] NET: Registered PF_BLUETOOTH protocol family
[    2.694330] Bluetooth: HCI device and connection manager initialized
[    2.694334] Bluetooth: HCI socket layer initialized
[    2.694337] Bluetooth: L2CAP socket layer initialized
[    2.694342] Bluetooth: SCO socket layer initialized
[    2.722648] usbcore: registered new interface driver rtl8xxxu
[    2.735157] Bluetooth: hci0: RTL: examining hci_ver=06 hci_rev=000b lmp_ver=06 lmp_subver=8723
[    2.736147] Bluetooth: hci0: RTL: rom_version status=0 version=1
[    2.736150] Bluetooth: hci0: RTL: loading rtl_bt/rtl8723b_fw.bin
[    2.736855] rtl8723bu 3-1:1.2 wlx0013efd002c3: renamed from wlan0
[    2.750113] Bluetooth: hci0: RTL: loading rtl_bt/rtl8723b_config.bin
[    2.750143] bluetooth hci0: Direct firmware load for rtl_bt/rtl8723b_config.bin failed with error -2
[    2.750154] Bluetooth: hci0: RTL: cfg_sz -2, total sz 22496
[    3.183166] Bluetooth: hci0: RTL: fw version 0x0e2f9f73
[    3.641898] Bluetooth: BNEP (Ethernet Emulation) ver 1.3
[    3.641912] Bluetooth: BNEP filters: protocol multicast
[    3.641915] Bluetooth: BNEP socket layer initialized
[    3.643501] Bluetooth: MGMT ver 1.22
[    4.662234] RTL871X: RTW_ADAPTIVITY_EN_
[    4.662239] RTL871X: RTW_ADAPTIVITY_MODE_
[    5.206796] UBSAN: shift-out-of-bounds in /var/lib/dkms/rtl8723bu/4.3.6.11_12942.20141204_BTCOEX20140507-4E40/build/os_dep/ioctl_cfg80211.c:5142:19
[    7.825921] RTL871X: rtw_set_802_11_connect(wlx0013efd002c3)  fw_state=0x00000008
[    8.063639] RTL871X: start auth
[    8.072874] RTL871X: auth success, start assoc
[    8.094955] RTL871X: rtw_cfg80211_indicate_connect(wlx0013efd002c3) BSS not found !!
[    8.094962] RTL871X: assoc success
[    8.105365] RTL871X: send eapol packet
[    8.116869] RTL871X: send eapol packet
[    8.312322] RTL871X: set pairwise key camid:4, addr:38:35:fb:f3:e5:d0, kid:0, type:AES
[    8.313396] RTL871X: set group key camid:5, addr:38:35:fb:f3:e5:d0, kid:1, type:AES
[   12.926325] Bluetooth: RFCOMM TTY layer initialized
[   12.926333] Bluetooth: RFCOMM socket layer initialized
[   12.926337] Bluetooth: RFCOMM ver 1.11
[   15.475291] warning: `rygel' uses wireless extensions which will stop working for Wi-Fi 7 hardware; use nl80211
django@ASGARD:~$


Pourtant :

django@ASGARD:~$ lsmod | grep 8723
8723bu               1228800  0
cfg80211             1314816  3 mac80211,8723bu,rtl8xxxu



django@ASGARD:~$ lsmod
Module                  Size  Used by
rfcomm                 98304  19
cmac                   12288  3
algif_hash             12288  1
algif_skcipher         12288  1
af_alg                 32768  6 algif_hash,algif_skcipher
bnep                   32768  2
hid_logitech_hidpp     65536  0
snd_hda_codec_hdmi     94208  1
binfmt_misc            24576  1
intel_rapl_msr         20480  0
intel_rapl_common      36864  1 intel_rapl_msr
x86_pkg_temp_thermal    20480  0
intel_powerclamp       24576  0
joydev                 32768  0
input_leds             12288  0
snd_hda_codec_realtek   192512  1
snd_hda_codec_generic   122880  1 snd_hda_codec_realtek
i915                 4157440  8
snd_hda_intel          61440  3
snd_intel_dspcfg       32768  1 snd_hda_intel
snd_intel_sdw_acpi     16384  1 snd_intel_dspcfg
snd_hda_codec         212992  4 snd_hda_codec_generic,snd_hda_codec_hdmi,snd_hda_intel,snd_hda_codec_realtek
coretemp               24576  0
snd_hda_core          147456  5 snd_hda_codec_generic,snd_hda_codec_hdmi,snd_hda_intel,snd_hda_codec,snd_hda_codec_realtek
crct10dif_pclmul       12288  1
snd_hwdep              20480  1 snd_hda_codec
polyval_clmulni        12288  0
polyval_generic        12288  1 polyval_clmulni
ghash_clmulni_intel    16384  0
drm_buddy              20480  1 i915
aesni_intel           356352  4
btusb                  73728  0
crypto_simd            16384  1 aesni_intel
snd_pcm               196608  4 snd_hda_codec_hdmi,snd_hda_intel,snd_hda_codec,snd_hda_core
ttm                   110592  1 i915
btrtl                  32768  1 btusb
cryptd                 24576  3 crypto_simd,ghash_clmulni_intel
btbcm                  24576  1 btusb
rtl8xxxu              290816  0
drm_display_helper    241664  1 i915
btintel                53248  1 btusb
snd_seq_midi           24576  0
mei_pxp                16384  0
mei_hdcp               28672  0
btmtk                  12288  1 btusb
snd_seq_midi_event     16384  1 snd_seq_midi
rapl                   20480  0
snd_rawmidi            57344  1 snd_seq_midi
intel_cstate           20480  0
bluetooth            1073152  54 btrtl,btmtk,btintel,btbcm,bnep,btusb,rfcomm
mac80211             1720320  1 rtl8xxxu
cec                    94208  2 drm_display_helper,i915
snd_seq               118784  2 snd_seq_midi,snd_seq_midi_event
rc_core                77824  1 cec
ecdh_generic           16384  2 bluetooth
eeepc_wmi              12288  0
wmi_bmof               12288  0
snd_seq_device         16384  3 snd_seq,snd_seq_midi,snd_rawmidi
hid_pl                 16384  0
ecc                    45056  1 ecdh_generic
libarc4                12288  1 mac80211
ff_memless             24576  1 hid_pl
mxm_wmi                12288  0
hid_logitech_dj        36864  0
at24                   24576  0
cmdlinepart            12288  0
snd_timer              49152  2 snd_seq,snd_pcm
spi_nor               135168  0
drm_kms_helper        270336  2 drm_display_helper,i915
mei_me                 53248  2
snd                   143360  17 snd_hda_codec_generic,snd_seq,snd_seq_device,snd_hda_codec_hdmi,snd_hwdep,snd_hda_intel,snd_hda_codec,snd_hda_codec_realtek,snd_timer,snd_pcm,snd_rawmidi
mtd                   106496  3 spi_nor,cmdlinepart
i2c_algo_bit           16384  1 i915
mei                   167936  5 mei_hdcp,mei_pxp,mei_me
soundcore              16384  1 snd
mac_hid                12288  0
sch_fq_codel           24576  6
8723bu               1228800  0
cfg80211             1314816  3 mac80211,8723bu,rtl8xxxu
msr                    12288  0
parport_pc             53248  0
ppdev                  24576  0
lp                     28672  0
parport                77824  3 parport_pc,lp,ppdev
drm                   761856  9 drm_kms_helper,drm_display_helper,drm_buddy,i915,ttm
efi_pstore             12288  0
ip_tables              36864  0
x_tables               69632  1 ip_tables
autofs4                57344  2
hid_generic            12288  0
usbhid                 77824  2 hid_logitech_dj,hid_logitech_hidpp
hid                   180224  5 usbhid,hid_generic,hid_pl,hid_logitech_dj,hid_logitech_hidpp
spi_intel_platform     12288  0
spi_intel              32768  1 spi_intel_platform
mfd_aaeon              12288  0
asus_wmi               73728  2 eeepc_wmi,mfd_aaeon
ledtrig_audio          12288  2 snd_hda_codec_generic,asus_wmi
sparse_keymap          12288  1 asus_wmi
crc32_pclmul           12288  0
platform_profile       12288  1 asus_wmi
ahci                   49152  3
i2c_i801               36864  0
r8169                 114688  0
i2c_smbus              16384  1 i2c_i801
libahci                57344  1 ahci
lpc_ich                32768  0
xhci_pci               24576  0
realtek                36864  1
xhci_pci_renesas       20480  1 xhci_pci
video                  73728  2 asus_wmi,i915
wmi                    40960  5 video,asus_wmi,wmi_bmof,mfd_aaeon,mxm_wmi
django@ASGARD:~$

Dernière modification par Coeur Noir (Le 13/01/2024, à 15:32)


DébuterDocBien rédigerRetour commandeInsérer image | illustrations & captures d'écran <>

Hors ligne

#18 Le 13/01/2024, à 15:49

xubu1957

Re : Bluetooth/wifi via dongle RTL8723BU: KO avec noyau 6.5 ?

@Coeur Noir

Tu n'as pas possibilité d'ouvrir les fréquences 5 GHz, pour utiliser le canal 36 ?

Pour l'ordre alphabétique des modules :

lsmod | sort

Dernière modification par xubu1957 (Le 13/01/2024, à 15:50)


Conseils pour les nouveaux demandeurs et pas qu'eux
Important : Pensez à passer vos sujets en [Résolu] 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 20/01/2024, à 01:05

Coeur Noir

Re : Bluetooth/wifi via dongle RTL8723BU: KO avec noyau 6.5 ?

Tu n'as pas possibilité d'ouvrir les fréquences 5 GHz

La Bbox émet dans les 2 fréquences, 2,4GHz et 5GHz.
Pas sûr que ce dongle sache quoi faire du 5 ? ? ?

Depuis ajout de rtl8723bu à /etc/modules je n'ai plus de souci.


DébuterDocBien rédigerRetour commandeInsérer image | illustrations & captures d'écran <>

Hors ligne