#1 Le 14/01/2023, à 09:32
- vinny2474
[RESOLU] Ubuntu 22.10 problème noyau 5.19.0.29 plus accès Internet
Bonjour,
J'ai tenté à deux reprises de faire la mise à jour vers le noyau 5.19.0.29, mais à chaque fois l'ordinateur redémarre correctement mais perd l'accès à Internet (point d'interrogation sur l'icone ethernet).
En rebasculant sur le noyau précédemment installé (5.19.0.26), je retrouve ma connexion ethernet immédiatement : quelqu'un a une idée de ce qui pourrait se passer ? je n'ai pas vu de message sur Internet d'autres personnes ayant un problème identique avec cette version de noyau.
vincent@vincent-X38T-DQ6:~$ echo; dpkg -l | awk '!/^rc/ && / linux-(c|g|h|i|lo|m|si|t)/{print $1,$2,$3,$4 | "sort -k3V | column -t"}' ; echo -e "\nNoyau courant : $(uname -mr)" ii linux-headers-5.19.0-26 5.19.0-26.27 all ii linux-headers-5.19.0-26-generic 5.19.0-26.27 amd64 ii linux-image-5.19.0-26-generic 5.19.0-26.27 amd64 ii linux-modules-5.19.0-26-generic 5.19.0-26.27 amd64 ii linux-modules-extra-5.19.0-26-generic 5.19.0-26.27 amd64 ii linux-headers-5.19.0-29 5.19.0-29.30 all ii linux-headers-5.19.0-29-generic 5.19.0-29.30 amd64 ii linux-image-5.19.0-29-generic 5.19.0-29.30 amd64 ii linux-modules-5.19.0-29-generic 5.19.0-29.30 amd64 ii linux-modules-extra-5.19.0-29-generic 5.19.0-29.30 amd64 ii linux-generic 5.19.0.29.26 amd64 ii linux-headers-generic 5.19.0.29.26 amd64 ii linux-image-generic 5.19.0.29.26 amd64 Noyau courant : 5.19.0-26-generic x86_64 vincent@vincent-X38T-DQ6:~$
Merci d'avance pour votre aide !
Dernière modification par vinny2474 (Le 14/01/2023, à 13:35)
Hors ligne
#2 Le 14/01/2023, à 09:37
- xubu1957
Re : [RESOLU] Ubuntu 22.10 problème noyau 5.19.0.29 plus accès Internet
Bonjour,
Pour mettre toi-même les balises code (à la place des balises de citation) à ton précédent message #1 : Merci
Cliquer sur le lien « Modifier » en bas à droite du message
Sélectionner le texte
Cliquer sur le <> de l'éditeur de message
==============
Montre les cartes réseaux :
lspci -k -nn | grep -A 3 -i net
et :
ip a
nmcli device
en te servant du Retour utilisable de commande.
Dernière modification par xubu1957 (Le 14/01/2023, à 11:01)
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
Hors ligne
#3 Le 14/01/2023, à 10:07
- vinny2474
Re : [RESOLU] Ubuntu 22.10 problème noyau 5.19.0.29 plus accès Internet
Merci xubu1957,
Voici le résultat des autres commandes demandées :
vincent@vincent-X38T-DQ6:~$ lspci -k -nn | grep -A 3 -i net
05:00.0 Ethernet controller [0200]: Realtek Semiconductor Co., Ltd. RTL8111/8168/8411 PCI Express Gigabit Ethernet Controller [10ec:8168] (rev 01)
Subsystem: Gigabyte Technology Co., Ltd Onboard Ethernet [1458:e000]
Kernel driver in use: r8169
Kernel modules: r8169
vincent@vincent-X38T-DQ6:~$
vincent@vincent-X38T-DQ6:~$ ip a
1: lo: <LOOPBACK,UP,LOWER_UP> mtu 65536 qdisc noqueue state UNKNOWN group default qlen 1000
link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00
inet 127.0.0.1/8 scope host lo
valid_lft forever preferred_lft forever
inet6 ::1/128 scope host
valid_lft forever preferred_lft forever
2: enp5s0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc pfifo_fast state UP group default qlen 1000
link/ether 00:1a:4d:5b:7f:2c brd ff:ff:ff:ff:ff:ff
inet 192.168.1.86/24 brd 192.168.1.255 scope global dynamic noprefixroute enp5s0
valid_lft 83641sec preferred_lft 83641sec
inet6 fe80::c518:106b:8a19:db58/64 scope link noprefixroute
valid_lft forever preferred_lft forever
vincent@vincent-X38T-DQ6:~$
vincent@vincent-X38T-DQ6:~$ nmcli device
DEVICE TYPE STATE CONNECTION
enp5s0 ethernet connecté Connexion filaire 1
lo loopback non-géré --
vincent@vincent-X38T-DQ6:~$
Tout fonctionne parfaitement sur le noyau 5.19.0.26 : pare-feu, serveur multimédia, accès Internet etc. Plus rien sur le dernier noyau proposé par la mise à jour :-(
Hors ligne
#4 Le 14/01/2023, à 10:16
- xubu1957
Re : [RESOLU] Ubuntu 22.10 problème noyau 5.19.0.29 plus accès Internet
Donne le retour de :
sudo apt update
d'éventuels paquets cassés :
dpkg -l | grep -v ^ii
et :
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
Hors ligne
#5 Le 14/01/2023, à 10:27
- vinny2474
Re : [RESOLU] Ubuntu 22.10 problème noyau 5.19.0.29 plus accès Internet
Voici le retour des commandes demandées :
vincent@vincent-X38T-DQ6:~$ sudo apt update
[sudo] Mot de passe de vincent :
Réception de :1 http://security.ubuntu.com/ubuntu kinetic-security InRelease [109 kB]
Réception de :2 http://fr.archive.ubuntu.com/ubuntu kinetic InRelease [267 kB]
Réception de :3 http://fr.archive.ubuntu.com/ubuntu kinetic-updates InRelease [109 kB]
Réception de :4 http://fr.archive.ubuntu.com/ubuntu kinetic-backports InRelease [99,9 kB]
Réception de :5 http://security.ubuntu.com/ubuntu kinetic-security/main amd64 Packages [159 kB]
Réception de :6 http://security.ubuntu.com/ubuntu kinetic-security/main i386 Packages [64,6 kB]
Réception de :7 http://security.ubuntu.com/ubuntu kinetic-security/main Translation-en [42,2 kB]
Réception de :8 http://security.ubuntu.com/ubuntu kinetic-security/main amd64 DEP-11 Metadata [28,6 kB]
Réception de :9 http://security.ubuntu.com/ubuntu kinetic-security/main DEP-11 48x48 Icons [4205 B]
Réception de :10 http://security.ubuntu.com/ubuntu kinetic-security/main DEP-11 64x64 Icons [5635 B]
Réception de :11 http://security.ubuntu.com/ubuntu kinetic-security/main DEP-11 64x64@2 Icons [29 B]
Réception de :12 http://security.ubuntu.com/ubuntu kinetic-security/main amd64 c-n-f Metadata [3556 B]
Réception de :13 http://security.ubuntu.com/ubuntu kinetic-security/restricted amd64 Packages [172 kB]
Réception de :14 http://security.ubuntu.com/ubuntu kinetic-security/restricted i386 Packages [25,6 kB]
Réception de :15 http://security.ubuntu.com/ubuntu kinetic-security/restricted Translation-en [26,6 kB]
Réception de :16 http://security.ubuntu.com/ubuntu kinetic-security/restricted amd64 c-n-f Metadata [528 B]
Réception de :17 http://security.ubuntu.com/ubuntu kinetic-security/universe i386 Packages [48,1 kB]
Réception de :18 http://security.ubuntu.com/ubuntu kinetic-security/universe amd64 Packages [59,8 kB]
Réception de :19 http://security.ubuntu.com/ubuntu kinetic-security/universe Translation-en [24,1 kB]
Réception de :20 http://security.ubuntu.com/ubuntu kinetic-security/universe amd64 DEP-11 Metadata [1436 B]
Réception de :21 http://security.ubuntu.com/ubuntu kinetic-security/universe DEP-11 48x48 Icons [1451 B]
Réception de :22 http://security.ubuntu.com/ubuntu kinetic-security/universe DEP-11 64x64 Icons [1432 B]
Réception de :23 http://security.ubuntu.com/ubuntu kinetic-security/universe DEP-11 64x64@2 Icons [29 B]
Réception de :24 http://security.ubuntu.com/ubuntu kinetic-security/universe amd64 c-n-f Metadata [2900 B]
Réception de :25 http://security.ubuntu.com/ubuntu kinetic-security/multiverse i386 Packages [1032 B]
Réception de :26 http://security.ubuntu.com/ubuntu kinetic-security/multiverse amd64 Packages [4924 B]
Réception de :27 http://security.ubuntu.com/ubuntu kinetic-security/multiverse Translation-en [996 B]
Réception de :28 http://security.ubuntu.com/ubuntu kinetic-security/multiverse amd64 c-n-f Metadata [232 B]
Réception de :29 http://fr.archive.ubuntu.com/ubuntu kinetic/main i386 Packages [1040 kB]
Réception de :30 http://fr.archive.ubuntu.com/ubuntu kinetic/main amd64 Packages [1384 kB]
Réception de :31 http://fr.archive.ubuntu.com/ubuntu kinetic/main Translation-en [509 kB]
Réception de :32 http://fr.archive.ubuntu.com/ubuntu kinetic/main Translation-fr [481 kB]
Réception de :33 http://fr.archive.ubuntu.com/ubuntu kinetic/main amd64 DEP-11 Metadata [428 kB]
Réception de :34 http://fr.archive.ubuntu.com/ubuntu kinetic/main DEP-11 48x48 Icons [97,3 kB]
Réception de :35 http://fr.archive.ubuntu.com/ubuntu kinetic/main DEP-11 64x64 Icons [144 kB]
Réception de :36 http://fr.archive.ubuntu.com/ubuntu kinetic/main DEP-11 64x64@2 Icons [15,8 kB]
Réception de :37 http://fr.archive.ubuntu.com/ubuntu kinetic/main amd64 c-n-f Metadata [30,2 kB]
Réception de :38 http://fr.archive.ubuntu.com/ubuntu kinetic/restricted amd64 Packages [120 kB]
Réception de :39 http://fr.archive.ubuntu.com/ubuntu kinetic/restricted i386 Packages [31,1 kB]
Réception de :40 http://fr.archive.ubuntu.com/ubuntu kinetic/restricted Translation-fr [4988 B]
Réception de :41 http://fr.archive.ubuntu.com/ubuntu kinetic/restricted Translation-en [18,0 kB]
Réception de :42 http://fr.archive.ubuntu.com/ubuntu kinetic/restricted amd64 c-n-f Metadata [488 B]
Réception de :43 http://fr.archive.ubuntu.com/ubuntu kinetic/universe amd64 Packages [14,5 MB]
Réception de :44 http://fr.archive.ubuntu.com/ubuntu kinetic/universe i386 Packages [7943 kB]
Réception de :45 http://fr.archive.ubuntu.com/ubuntu kinetic/universe Translation-fr [3581 kB]
Réception de :46 http://fr.archive.ubuntu.com/ubuntu kinetic/universe Translation-en [5791 kB]
Réception de :47 http://fr.archive.ubuntu.com/ubuntu kinetic/universe amd64 DEP-11 Metadata [3718 kB]
Réception de :48 http://fr.archive.ubuntu.com/ubuntu kinetic/universe DEP-11 48x48 Icons [3466 kB]
Réception de :49 http://fr.archive.ubuntu.com/ubuntu kinetic/universe DEP-11 64x64 Icons [7703 kB]
Réception de :50 http://fr.archive.ubuntu.com/ubuntu kinetic/universe DEP-11 64x64@2 Icons [74,4 kB]
Réception de :51 http://fr.archive.ubuntu.com/ubuntu kinetic/universe amd64 c-n-f Metadata [291 kB]
Réception de :52 http://fr.archive.ubuntu.com/ubuntu kinetic/multiverse amd64 Packages [236 kB]
Réception de :53 http://fr.archive.ubuntu.com/ubuntu kinetic/multiverse i386 Packages [118 kB]
Réception de :54 http://fr.archive.ubuntu.com/ubuntu kinetic/multiverse Translation-fr [91,2 kB]
Réception de :55 http://fr.archive.ubuntu.com/ubuntu kinetic/multiverse Translation-en [112 kB]
Réception de :56 http://fr.archive.ubuntu.com/ubuntu kinetic/multiverse amd64 DEP-11 Metadata [39,8 kB]
Réception de :57 http://fr.archive.ubuntu.com/ubuntu kinetic/multiverse DEP-11 48x48 Icons [46,7 kB]
Réception de :58 http://fr.archive.ubuntu.com/ubuntu kinetic/multiverse DEP-11 64x64 Icons [179 kB]
Réception de :59 http://fr.archive.ubuntu.com/ubuntu kinetic/multiverse DEP-11 64x64@2 Icons [904 B]
Réception de :60 http://fr.archive.ubuntu.com/ubuntu kinetic/multiverse amd64 c-n-f Metadata [8408 B]
Réception de :61 http://fr.archive.ubuntu.com/ubuntu kinetic-updates/main amd64 Packages [191 kB]
Réception de :62 http://fr.archive.ubuntu.com/ubuntu kinetic-updates/main i386 Packages [86,9 kB]
Réception de :63 http://fr.archive.ubuntu.com/ubuntu kinetic-updates/main Translation-en [53,8 kB]
Réception de :64 http://fr.archive.ubuntu.com/ubuntu kinetic-updates/main amd64 DEP-11 Metadata [44,1 kB]
Réception de :65 http://fr.archive.ubuntu.com/ubuntu kinetic-updates/main DEP-11 48x48 Icons [5512 B]
Réception de :66 http://fr.archive.ubuntu.com/ubuntu kinetic-updates/main DEP-11 64x64 Icons [6937 B]
Réception de :67 http://fr.archive.ubuntu.com/ubuntu kinetic-updates/main DEP-11 64x64@2 Icons [29 B]
Réception de :68 http://fr.archive.ubuntu.com/ubuntu kinetic-updates/main amd64 c-n-f Metadata [4564 B]
Réception de :69 http://fr.archive.ubuntu.com/ubuntu kinetic-updates/restricted i386 Packages [25,6 kB]
Réception de :70 http://fr.archive.ubuntu.com/ubuntu kinetic-updates/restricted amd64 Packages [172 kB]
Réception de :71 http://fr.archive.ubuntu.com/ubuntu kinetic-updates/restricted Translation-en [26,6 kB]
Réception de :72 http://fr.archive.ubuntu.com/ubuntu kinetic-updates/restricted amd64 c-n-f Metadata [528 B]
Réception de :73 http://fr.archive.ubuntu.com/ubuntu kinetic-updates/universe i386 Packages [59,4 kB]
Réception de :74 http://fr.archive.ubuntu.com/ubuntu kinetic-updates/universe amd64 Packages [87,9 kB]
Réception de :75 http://fr.archive.ubuntu.com/ubuntu kinetic-updates/universe Translation-en [34,1 kB]
Réception de :76 http://fr.archive.ubuntu.com/ubuntu kinetic-updates/universe amd64 DEP-11 Metadata [33,6 kB]
Réception de :77 http://fr.archive.ubuntu.com/ubuntu kinetic-updates/universe DEP-11 48x48 Icons [6513 B]
Réception de :78 http://fr.archive.ubuntu.com/ubuntu kinetic-updates/universe DEP-11 64x64 Icons [8007 B]
Réception de :79 http://fr.archive.ubuntu.com/ubuntu kinetic-updates/universe DEP-11 64x64@2 Icons [29 B]
Réception de :80 http://fr.archive.ubuntu.com/ubuntu kinetic-updates/universe amd64 c-n-f Metadata [3448 B]
Réception de :81 http://fr.archive.ubuntu.com/ubuntu kinetic-updates/multiverse i386 Packages [1032 B]
Réception de :82 http://fr.archive.ubuntu.com/ubuntu kinetic-updates/multiverse amd64 Packages [5596 B]
Réception de :83 http://fr.archive.ubuntu.com/ubuntu kinetic-updates/multiverse Translation-en [1128 B]
Réception de :84 http://fr.archive.ubuntu.com/ubuntu kinetic-updates/multiverse amd64 c-n-f Metadata [244 B]
Réception de :85 http://fr.archive.ubuntu.com/ubuntu kinetic-backports/main amd64 c-n-f Metadata [112 B]
Réception de :86 http://fr.archive.ubuntu.com/ubuntu kinetic-backports/restricted amd64 c-n-f Metadata [120 B]
Réception de :87 http://fr.archive.ubuntu.com/ubuntu kinetic-backports/universe i386 Packages [2836 B]
Réception de :88 http://fr.archive.ubuntu.com/ubuntu kinetic-backports/universe amd64 Packages [3912 B]
Réception de :89 http://fr.archive.ubuntu.com/ubuntu kinetic-backports/universe Translation-en [1340 B]
Réception de :90 http://fr.archive.ubuntu.com/ubuntu kinetic-backports/universe amd64 DEP-11 Metadata [10,7 kB]
Réception de :91 http://fr.archive.ubuntu.com/ubuntu kinetic-backports/universe DEP-11 48x48 Icons [29 B]
Réception de :92 http://fr.archive.ubuntu.com/ubuntu kinetic-backports/universe DEP-11 64x64 Icons [2862 B]
Réception de :93 http://fr.archive.ubuntu.com/ubuntu kinetic-backports/universe DEP-11 64x64@2 Icons [29 B]
Réception de :94 http://fr.archive.ubuntu.com/ubuntu kinetic-backports/universe amd64 c-n-f Metadata [172 B]
Réception de :95 http://fr.archive.ubuntu.com/ubuntu kinetic-backports/multiverse amd64 c-n-f Metadata [120 B]
54,3 Mo réceptionnés en 8s (6703 ko/s)
Lecture des listes de paquets... Fait
Construction de l'arbre des dépendances... Fait
Lecture des informations d'état... Fait
4 paquets peuvent être mis à jour. Exécutez « apt list --upgradable » pour les voir.
vincent@vincent-X38T-DQ6:~$
vincent@vincent-X38T-DQ6:~$ 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
+++-==========================================-========================================-============-================================================================================
rc fuse 2.9.9-5ubuntu2 amd64 Filesystem in Userspace
rc gimp-data 2.10.24-2 all Data files for GIMP
rc linux-image-5.13.0-19-generic 5.13.0-19.19 amd64 Signed kernel image generic
rc linux-image-5.13.0-22-generic 5.13.0-22.22 amd64 Signed kernel image generic
rc linux-image-5.13.0-23-generic 5.13.0-23.23 amd64 Signed kernel image generic
rc linux-image-5.13.0-25-generic 5.13.0-25.26 amd64 Signed kernel image generic
rc linux-image-5.13.0-27-generic 5.13.0-27.29 amd64 Signed kernel image generic
rc linux-image-5.13.0-28-generic 5.13.0-28.31 amd64 Signed kernel image generic
rc linux-image-5.13.0-30-generic 5.13.0-30.33 amd64 Signed kernel image generic
rc linux-image-5.13.0-35-generic 5.13.0-35.40 amd64 Signed kernel image generic
rc linux-image-5.13.0-37-generic 5.13.0-37.42 amd64 Signed kernel image generic
rc linux-image-5.13.0-40-generic 5.13.0-40.45 amd64 Signed kernel image generic
rc linux-image-5.15.0-27-generic 5.15.0-27.28 amd64 Signed kernel image generic
rc linux-image-5.15.0-33-generic 5.15.0-33.34 amd64 Signed kernel image generic
rc linux-image-5.15.0-37-generic 5.15.0-37.39 amd64 Signed kernel image generic
rc linux-image-5.15.0-39-generic 5.15.0-39.42 amd64 Signed kernel image generic
rc linux-image-5.15.0-40-generic 5.15.0-40.43 amd64 Signed kernel image generic
rc linux-image-5.15.0-41-generic 5.15.0-41.44 amd64 Signed kernel image generic
rc linux-image-5.15.0-43-generic 5.15.0-43.46 amd64 Signed kernel image generic
rc linux-image-5.15.0-46-generic 5.15.0-46.49 amd64 Signed kernel image generic
rc linux-image-5.15.0-47-generic 5.15.0-47.51 amd64 Signed kernel image generic
rc linux-image-5.15.0-48-generic 5.15.0-48.54 amd64 Signed kernel image generic
rc linux-image-5.15.0-52-generic 5.15.0-52.58 amd64 Signed kernel image generic
rc linux-image-5.19.0-23-generic 5.19.0-23.24 amd64 Signed kernel image generic
rc linux-image-5.19.0-28-generic 5.19.0-28.29 amd64 Signed kernel image generic
rc linux-modules-5.13.0-19-generic 5.13.0-19.19 amd64 Linux kernel extra modules for version 5.13.0 on 64 bit x86 SMP
rc linux-modules-5.13.0-22-generic 5.13.0-22.22 amd64 Linux kernel extra modules for version 5.13.0 on 64 bit x86 SMP
rc linux-modules-5.13.0-23-generic 5.13.0-23.23 amd64 Linux kernel extra modules for version 5.13.0 on 64 bit x86 SMP
rc linux-modules-5.13.0-25-generic 5.13.0-25.26 amd64 Linux kernel extra modules for version 5.13.0 on 64 bit x86 SMP
rc linux-modules-5.13.0-27-generic 5.13.0-27.29 amd64 Linux kernel extra modules for version 5.13.0 on 64 bit x86 SMP
rc linux-modules-5.13.0-28-generic 5.13.0-28.31 amd64 Linux kernel extra modules for version 5.13.0 on 64 bit x86 SMP
rc linux-modules-5.13.0-30-generic 5.13.0-30.33 amd64 Linux kernel extra modules for version 5.13.0 on 64 bit x86 SMP
rc linux-modules-5.13.0-35-generic 5.13.0-35.40 amd64 Linux kernel extra modules for version 5.13.0 on 64 bit x86 SMP
rc linux-modules-5.13.0-37-generic 5.13.0-37.42 amd64 Linux kernel extra modules for version 5.13.0 on 64 bit x86 SMP
rc linux-modules-5.13.0-40-generic 5.13.0-40.45 amd64 Linux kernel extra modules for version 5.13.0 on 64 bit x86 SMP
rc linux-modules-5.15.0-27-generic 5.15.0-27.28 amd64 Linux kernel extra modules for version 5.15.0 on 64 bit x86 SMP
rc linux-modules-5.15.0-33-generic 5.15.0-33.34 amd64 Linux kernel extra modules for version 5.15.0 on 64 bit x86 SMP
rc linux-modules-5.15.0-37-generic 5.15.0-37.39 amd64 Linux kernel extra modules for version 5.15.0 on 64 bit x86 SMP
rc linux-modules-5.15.0-39-generic 5.15.0-39.42 amd64 Linux kernel extra modules for version 5.15.0 on 64 bit x86 SMP
rc linux-modules-5.15.0-40-generic 5.15.0-40.43 amd64 Linux kernel extra modules for version 5.15.0 on 64 bit x86 SMP
rc linux-modules-5.15.0-41-generic 5.15.0-41.44 amd64 Linux kernel extra modules for version 5.15.0 on 64 bit x86 SMP
rc linux-modules-5.15.0-43-generic 5.15.0-43.46 amd64 Linux kernel extra modules for version 5.15.0 on 64 bit x86 SMP
rc linux-modules-5.15.0-46-generic 5.15.0-46.49 amd64 Linux kernel extra modules for version 5.15.0 on 64 bit x86 SMP
rc linux-modules-5.15.0-47-generic 5.15.0-47.51 amd64 Linux kernel extra modules for version 5.15.0 on 64 bit x86 SMP
rc linux-modules-5.15.0-48-generic 5.15.0-48.54 amd64 Linux kernel extra modules for version 5.15.0 on 64 bit x86 SMP
rc linux-modules-5.15.0-52-generic 5.15.0-52.58 amd64 Linux kernel extra modules for version 5.15.0 on 64 bit x86 SMP
rc linux-modules-5.19.0-23-generic 5.19.0-23.24 amd64 Linux kernel extra modules for version 5.19.0 on 64 bit x86 SMP
rc linux-modules-5.19.0-28-generic 5.19.0-28.29 amd64 Linux kernel extra modules for version 5.19.0 on 64 bit x86 SMP
rc linux-modules-extra-5.13.0-19-generic 5.13.0-19.19 amd64 Linux kernel extra modules for version 5.13.0 on 64 bit x86 SMP
rc linux-modules-extra-5.13.0-22-generic 5.13.0-22.22 amd64 Linux kernel extra modules for version 5.13.0 on 64 bit x86 SMP
rc linux-modules-extra-5.13.0-23-generic 5.13.0-23.23 amd64 Linux kernel extra modules for version 5.13.0 on 64 bit x86 SMP
rc linux-modules-extra-5.13.0-25-generic 5.13.0-25.26 amd64 Linux kernel extra modules for version 5.13.0 on 64 bit x86 SMP
rc linux-modules-extra-5.13.0-27-generic 5.13.0-27.29 amd64 Linux kernel extra modules for version 5.13.0 on 64 bit x86 SMP
rc linux-modules-extra-5.13.0-28-generic 5.13.0-28.31 amd64 Linux kernel extra modules for version 5.13.0 on 64 bit x86 SMP
rc linux-modules-extra-5.13.0-30-generic 5.13.0-30.33 amd64 Linux kernel extra modules for version 5.13.0 on 64 bit x86 SMP
rc linux-modules-extra-5.13.0-35-generic 5.13.0-35.40 amd64 Linux kernel extra modules for version 5.13.0 on 64 bit x86 SMP
rc linux-modules-extra-5.13.0-37-generic 5.13.0-37.42 amd64 Linux kernel extra modules for version 5.13.0 on 64 bit x86 SMP
rc linux-modules-extra-5.13.0-40-generic 5.13.0-40.45 amd64 Linux kernel extra modules for version 5.13.0 on 64 bit x86 SMP
rc linux-modules-extra-5.15.0-27-generic 5.15.0-27.28 amd64 Linux kernel extra modules for version 5.15.0 on 64 bit x86 SMP
rc linux-modules-extra-5.15.0-33-generic 5.15.0-33.34 amd64 Linux kernel extra modules for version 5.15.0 on 64 bit x86 SMP
rc linux-modules-extra-5.15.0-37-generic 5.15.0-37.39 amd64 Linux kernel extra modules for version 5.15.0 on 64 bit x86 SMP
rc linux-modules-extra-5.15.0-39-generic 5.15.0-39.42 amd64 Linux kernel extra modules for version 5.15.0 on 64 bit x86 SMP
rc linux-modules-extra-5.15.0-40-generic 5.15.0-40.43 amd64 Linux kernel extra modules for version 5.15.0 on 64 bit x86 SMP
rc linux-modules-extra-5.15.0-41-generic 5.15.0-41.44 amd64 Linux kernel extra modules for version 5.15.0 on 64 bit x86 SMP
rc linux-modules-extra-5.15.0-43-generic 5.15.0-43.46 amd64 Linux kernel extra modules for version 5.15.0 on 64 bit x86 SMP
rc linux-modules-extra-5.15.0-46-generic 5.15.0-46.49 amd64 Linux kernel extra modules for version 5.15.0 on 64 bit x86 SMP
rc linux-modules-extra-5.15.0-47-generic 5.15.0-47.51 amd64 Linux kernel extra modules for version 5.15.0 on 64 bit x86 SMP
rc linux-modules-extra-5.15.0-48-generic 5.15.0-48.54 amd64 Linux kernel extra modules for version 5.15.0 on 64 bit x86 SMP
rc linux-modules-extra-5.15.0-52-generic 5.15.0-52.58 amd64 Linux kernel extra modules for version 5.15.0 on 64 bit x86 SMP
rc linux-modules-extra-5.19.0-23-generic 5.19.0-23.24 amd64 Linux kernel extra modules for version 5.19.0 on 64 bit x86 SMP
rc linux-modules-extra-5.19.0-28-generic 5.19.0-28.29 amd64 Linux kernel extra modules for version 5.19.0 on 64 bit x86 SMP
rc pipewire-media-session 0.4.1-2ubuntu1 amd64 example session manager for PipeWire
vincent@vincent-X38T-DQ6:~$
vincent@vincent-X38T-DQ6:~$ df -Th
Sys. de fichiers Type Taille Utilisé Dispo Uti% Monté sur
tmpfs tmpfs 594M 3,4M 590M 1% /run
/dev/sda3 ext4 117G 25G 87G 23% /
tmpfs tmpfs 2,9G 12M 2,9G 1% /dev/shm
tmpfs tmpfs 5,0M 4,0K 5,0M 1% /run/lock
/dev/sdf1 ext4 458G 326G 109G 75% /mnt/Stockage_4
/dev/sdd1 ext4 916G 821G 49G 95% /mnt/Stockage_1
/dev/sdb1 ext4 146G 42G 97G 30% /mnt/Stockage_5
/dev/sda2 vfat 512M 5,3M 507M 2% /boot/efi
/dev/sde1 ext4 1,8T 970G 771G 56% /mnt/Musique
/dev/sdg1 ext4 459G 435G 24G 95% /mnt/Stockage_3
tmpfs tmpfs 594M 4,7M 589M 1% /run/user/1000
vincent@vincent-X38T-DQ6:~$
Hors ligne
#6 Le 14/01/2023, à 10:31
- xubu1957
Re : [RESOLU] Ubuntu 22.10 problème noyau 5.19.0.29 plus accès Internet
Pour purger les résidus de configuration marqués "rc" :
sudo apt purge ~c
comme expliqué à la machine à café et rajouté à la fin de ce message.
Fournis :
snap list
Merci de montrer, pour les permissions :
echo -e "\nNombre d'éléments de /home/moi ne m'appartenant pas : $(sudo find ~ \( ! -user $USER -o ! -group $USER \) | wc -l)"
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
Hors ligne
#7 Le 14/01/2023, à 10:59
- vinny2474
Re : [RESOLU] Ubuntu 22.10 problème noyau 5.19.0.29 plus accès Internet
Voici le résultat des commandes demandées :
Nom Version Révision Suivi Éditeur Notes
audacity 3.1.3 1051 latest/stable diddledani✪ -
bare 1.0 5 latest/stable canonical✓ base
core 16-2.58 14447 latest/stable canonical✓ core
core18 20221212 2667 latest/stable canonical✓ base
core20 20221212 1778 latest/stable canonical✓ base
gimp 2.10.30 393 latest/stable snapcrafters -
gnome-3-28-1804 3.28.0-19-g98f9e67.98f9e67 161 latest/stable canonical✓ -
gnome-3-38-2004 0+git.6f39565 119 latest/stable/… canonical✓ -
gtk-common-themes 0.1-81-g442e511 1535 latest/stable/… canonical✓ -
gtk2-common-themes 0.1 13 latest/stable canonical✓ -
jdownloader2 0+git.c17098b 17 latest/stable fnkr -
snap-store 41.3-66-gfe1e325 638 latest/stable/… canonical✓ -
snapd-desktop-integration 0.1 49 latest/stable/… canonical✓ -
vlc 3.0.18 3078 latest/stable videolan✓ -
vincent@vincent-X38T-DQ6:~$
vincent@vincent-X38T-DQ6:~$ echo -e "\nNombre d'éléments de /home/moi ne m'appartenant pas : $(sudo find ~ \( ! -user $USER -o ! -group $USER \) | wc -l)"
Nombre d'éléments de /home/moi ne m'appartenant pas : 0
vincent@vincent-X38T-DQ6:~$ ^C
Hors ligne
#8 Le 14/01/2023, à 11:04
- xubu1957
Re : [RESOLU] Ubuntu 22.10 problème noyau 5.19.0.29 plus accès Internet
Fournis aussi :
nmcli connection show
Pour le réseau, je laisse la main aux connaisseurs.
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
Hors ligne
#9 Le 14/01/2023, à 11:14
- vinny2474
Re : [RESOLU] Ubuntu 22.10 problème noyau 5.19.0.29 plus accès Internet
Merci xubu1957,
J'ai purgé les anciens noyaux rc.
Voici le retour de la commande demandée :
vincent@vincent-X38T-DQ6:~$ nmcli connection show
NAME UUID TYPE DEVICE
Connexion filaire 1 59f23070-5869-3beb-b13b-febf474762aa ethernet enp5s0
vincent@vincent-X38T-DQ6:~$
J'ai vu sur un article récent qu'une faille de sécurité a été découverte impactant les systèmes Linux, je ne sais pas si ce noyau doit la corriger, en tout cas pour moi c'est radical : accès internet coupé !
Dernière modification par vinny2474 (Le 14/01/2023, à 11:15)
Hors ligne
#10 Le 14/01/2023, à 11:18
- vinny2474
Re : [RESOLU] Ubuntu 22.10 problème noyau 5.19.0.29 plus accès Internet
A noter que les paquets pouvant être mis à jour suite à la commande sudo apt update, ne sont pas mis à jour :
vincent@vincent-X38T-DQ6:~$ sudo apt upgrade
[sudo] Mot de passe de vincent :
Lecture des listes de paquets... Fait
Construction de l'arbre des dépendances... Fait
Lecture des informations d'état... Fait
Calcul de la mise à jour... Fait
Les paquets suivants ont été conservés :
grub-common grub-pc grub-pc-bin grub2-common
0 mis à jour, 0 nouvellement installés, 0 à enlever et 4 non mis à jour.
vincent@vincent-X38T-DQ6:~$
Peut-être un lien avec mon problème, les paquets non mis à jour concernent grub ??
Hors ligne
#11 Le 14/01/2023, à 11:21
- xubu1957
Re : [RESOLU] Ubuntu 22.10 problème noyau 5.19.0.29 plus accès Internet
Maintenant, il faut s'habituer au mécanisme des mises à jour progressives.
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
Hors ligne
#12 Le 14/01/2023, à 12:30
- iznobe
Re : [RESOLU] Ubuntu 22.10 problème noyau 5.19.0.29 plus accès Internet
Bonjour , certains noyaux amenent des regressions
la solution mettre le noyau fonctionnel en securité , et tester les noyaux qui arrivent au fur et a mesure jusqu ' a un retour normal de l ' internet .
il se peut que ce soit rapide , mais ca peut aussi prendre plusieurs mois , ca a deja été le cas pour certaines cartes graphiques .
Pour " mettre en securité " ton noyau fonctionnel , passe cette commande :
sudo apt-mark manual linux-headers-5.19.0-26 linux-headers-5.19.0-26-generic linux-image-5.19.0-26-generic linux-modules-5.19.0-26-generic linux-modules-extra-5.19.0-26-generic
Par la suite ca evitera de le supprimer automatiquement lors des mises a jour .
Si tu desires ne pas choisir au demarrage le noyau fonctionnel , il suffit de supprimer le noyau non fonctionnel , puis de mettre a jour le grub :
sudo apt remove linux-headers-5.19.0-29 linux-headers-5.19.0-29-generic linux-image-5.19.0-29-generic linux-modules-5.19.0-29-generic linux-modules-extra-5.19.0-29-generic 5.19.0-29.30 amd64; sudo update-grub
a la prochaine mise a jour de noyau , si celui-ci ne fonctionne toujours pas , il faudra bien sur modifier la commande ci-dessus avec les bons noms de paquets afin de supprimer ce nouveau noyau non fonctionnel et retrouver un demarrage automatique fonctionnel .
Pour un retour a la normale supposé , et remettre ton noyau en mode classique ( c ' est a dire qu il sera supprimé en temps voulu par les mises a jours ) , tu as 2 possibilités : cette commande donnée dans la doc qui englobent un cas genereal :
apt-mark showmanual | awk '/linux-.*[0-9]/ && ! /hwe-[0-9][02468].04/{print}' | xargs -r sudo apt-mark auto
ou bien l' exacte commande inverse de la toute 1ere commande que je t' ai donnée :
sudo apt-mark auto linux-headers-5.19.0-26 linux-headers-5.19.0-26-generic linux-image-5.19.0-26-generic linux-modules-5.19.0-26-generic linux-modules-extra-5.19.0-26-generic
Dernière modification par iznobe (Le 14/01/2023, à 12:34)
retour COMPLET et utilisable de commande
MSI Z490A-pro , i7 10700 , 32 GB RAM .
Hors ligne
#13 Le 14/01/2023, à 13:34
- vinny2474
Re : [RESOLU] Ubuntu 22.10 problème noyau 5.19.0.29 plus accès Internet
Bonjour Iznobe,
Merci beaucoup pour ta réponse, en effet ma crainte était bien de finir par n'avoir que ce noyau "non fonctionnel". Je vais donc appliquer les lignes de commande soumises afin de sécuriser le dernier noyau "fonctionnel", pour moi le 5.19.0.26.
De nouveau un grand merci à xubu1957 et Iznobe pour vos conseils avisés et rapides !
Je passe le post en résolu.
Hors ligne