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 14/09/2020, à 16:48

divano62

Upgrade de Ubuntu 18.04 à 20.04 - Etendre partition de boot

Bonjour tout le monde !

Voilà à quoi ressemble mon "/dev/sdb"
/dev/sdb

J'avais Ubuntu 18.04 et j'ai upgradé en 20.04 très récemment.

Aujourd'hui, j'ai eu un message m'informant que mon boot était presque plein et je ne peux donc plus faire de mise à jour.

Comment je peux faire pour récupérer 450Go de "/dev/sdb2" pour l'ajouter à "/dev/sdb1" svp ?

J'ai lancé GParted, mais je ne vois pas comment faire sad hmm

Merci beaucoup pour votre aide wink

Dernière modification par divano62 (Le 14/09/2020, à 17:48)

Hors ligne

#2 Le 14/09/2020, à 18:20

geole

Re : Upgrade de Ubuntu 18.04 à 20.04 - Etendre partition de boot

Bonjour
Pour redimensionner, il faut que les partitions ne soient pas en cours d'utilisation. Donc il faut booter avec le support d'installation et utiliser son gparted

Mais avec 45 Go pour la partition racine, ce n'est pas si mal que cela. Tu pourrais regarder le contenu du  répertoire /var/log au cas où la migration le fasse remplir trop vite

et pense aussi à la commande

sudo apt autoremove --purge

Dernière modification par geole (Le 14/09/2020, à 19:26)


Les grilles de l'installateur https://doc.ubuntu-fr.org/tutoriel/inst … _subiquity
"gedit admin:///etc/fstab" est proscrit,  utilisez "pkexec env DISPLAY=$DISPLAY XAUTHORITY=$XAUTHORITY xdg-open /etc/fstab" Voir  https://doc.ubuntu-fr.org/gedit
Les partitions EXT4 des disques externes => https://forum.ubuntu-fr.org/viewtopic.p … #p22697248

Hors ligne

#3 Le 14/09/2020, à 19:27

Qid

Re : Upgrade de Ubuntu 18.04 à 20.04 - Etendre partition de boot

geole a écrit :

avec 45 Go pour la partition racine, ce n'est pas si mal que cela.

Je suis assez d'accord... Ce serait bien d'avoir un visuel du taux d'occupation du disque pour essayer de comprendre où il y a défaut... Perso j'incriminerai bien les Snap aussi... Et puis... Heu...

apt autoremove --auto-remove --purge

Édit : geole ta commande n'est pas assez complète wink

Dernière modification par Qid (Le 14/09/2020, à 19:29)


"GNU/Linux c'est que du bon mais M$ Windows ce n'est pas si mal"
Référent technique Ubuntu d'un Groupe d'Utilisateur du Libre
plus d'info sur mon profil

Hors ligne

#4 Le 15/09/2020, à 10:55

divano62

Re : Upgrade de Ubuntu 18.04 à 20.04 - Etendre partition de boot

Bonjour geole et Qid et toute autre personne qui pourrait me venir en aide,

J'avais essayé aussi avec un live cd de 18.04 mais je coince.

Dans mon "/var/log/", j'ai ça :

-rw-r-----   1 syslog            adm              11G sept. 15 10:35 syslog.1
-rw-r-----   1 syslog            adm              11G sept. 15 10:35 kern.log.1

J'ai fait ça aussi mais ça me dit ça et ça n'a rien fait :

sudo apt autoremove --auto-remove --purge
Lecture des listes de paquets... Fait
Construction de l'arbre des dépendances       
Lecture des informations d'état... Fait
0 mis à jour, 0 nouvellement installés, 0 à enlever et 1 non mis à jour.


Voici également un visuel (sous 2 formats différents) du taux d'occupation du disque :

CAMEMBERT
https://www.hebergeur-image.com/upload/ … 46b049.png


BLOCS
https://www.hebergeur-image.com/upload/ … 461adf.png



Merci beaucoup pour votre aide :-)


Modération : merci d'utiliser des images de petite taille (300x300) ou des miniatures pointant sur ces images (Des hébergeurs comme Toile Libre ou TDCT'Pix le permettent).

Dernière modification par cqfd93 (Le 15/09/2020, à 12:10)

Hors ligne

#5 Le 15/09/2020, à 11:12

geole

Re : Upgrade de Ubuntu 18.04 à 20.04 - Etendre partition de boot

divano62 a écrit :

Bonjour geole et Qid et toute autre personne qui pourrait me venir en aide,

Dans mon "/var/log/", j'ai ça :

-rw-r-----   1 syslog            adm              11G sept. 15 10:35 syslog.1
-rw-r-----   1 syslog            adm              11G sept. 15 10:35 kern.log.1

Bonjour
tu as donc 22 Go  de bousillés inutilement "grâce" à un logiciel incapable d élimer les scories du passé.

A) Première étape, récupérer de la place

sudo rm /var/log/syslog.1
sudo rm /var/log/kern.log.1

B) Seconde étape. Diagnostiquer le problème rencontré avec cette version

dmesg | tail -200
journalctl -b -p err

C) Troisième étape,  Eviter que cette situation continue
Voir paragraphe 4.6 de https://doc.ubuntu-fr.org/ssd_solid_sta … u_logiciel

sudo cp -v  /etc/rsyslog.d/50-default.conf /etc/rsyslog.d/50-default.conf.REF
sudo sed -i 's/*.*;auth,authpriv.none/###########   *.*;auth,authpriv.none/' /etc/rsyslog.d/50-default.conf
sudo sed -i 's/kern./###########   kern./' /etc/rsyslog.d/50-default.conf

D) Faire prendre  en compte

sudo reboot 

E)  Finir les épurations.

sudo rm /var/log/syslog*
sudo rm /var/log/kern*

Les grilles de l'installateur https://doc.ubuntu-fr.org/tutoriel/inst … _subiquity
"gedit admin:///etc/fstab" est proscrit,  utilisez "pkexec env DISPLAY=$DISPLAY XAUTHORITY=$XAUTHORITY xdg-open /etc/fstab" Voir  https://doc.ubuntu-fr.org/gedit
Les partitions EXT4 des disques externes => https://forum.ubuntu-fr.org/viewtopic.p … #p22697248

Hors ligne

#6 Le 15/09/2020, à 14:36

divano62

Re : Upgrade de Ubuntu 18.04 à 20.04 - Etendre partition de boot

OK Geole,

A) J'ai supprimé les 2 fichiers.

B) Comment je peux faire pour te transmettre les 2 fichiers résultant des lignes de commande ?

Il me reste ensuite les étapes C) D) E)


Merci ;-)

Dernière modification par divano62 (Le 15/09/2020, à 14:44)

Hors ligne

#7 Le 15/09/2020, à 14:55

iznobe

Re : Upgrade de Ubuntu 18.04 à 20.04 - Etendre partition de boot

divano62 a écrit :

B) Comment je peux faire pour te transmettre les 2 fichiers résultant des lignes de commande ?

Merci ;-)

Bonjour , comme c ' est expliqué ici :https://forum.ubuntu-fr.org/viewtopic.php?id=1614731

moi ce qui me perturbe le plus dans tout cela , c ' est le mot " BOOT " inclus dans le titre et dans le message originel . racine ( / ) et boot ( EFI ? ) , ca n ' est pas la meme partition logiquement . en tout cas , pas de partition EFI visible , sur sdb du moins .
il faut lire entre les lignes et interpreter les messages postés ! deja que ca n ' est pas de la tarte de depanner a distance , si en plus il faut deviner , je tire mon chapeau aux aidants hmm wink

Au vu du camembert , il doit s ' agit d ' une confusion avec root ou d ' une erreur du demandeur .

@divano62 , es tu certain que le message d ' erreur comportait le mot BOOT ?

juste par curiosité que renvoie la commande svp ? :

sudo lsblk -o name,fstype,size,label,mountpoint

toujours en te servant du :https://forum.ubuntu-fr.org/viewtopic.php?id=1614731 bien entendu .

Dernière modification par iznobe (Le 15/09/2020, à 15:12)


retour utilisable de commande
MSI Z490A-pro , i7 10700 , 32 GB RAM .

Hors ligne

#8 Le 15/09/2020, à 16:15

divano62

Re : Upgrade de Ubuntu 18.04 à 20.04 - Etendre partition de boot

Bonjour iznobe,

Déjà merci pour la notice d'utilisation de retour de prompt wink

Le mot "boot", je l'ai mis dans le titre parce que c'est le "drapeau" associé à "/dev/sdb1".
Après, j'avais un windows 7 que j'ai gardé sur un hdd, mais j'ai installé ubuntu 18.04 sur le ssd et c'est ubuntu qui se lance par défaut. Peut-être que cette info complémentaire pourra vous éclairer roll

Voici la commande et son résultat :

divano@divano-M17xR4:~/Documents$ sudo lsblk -o name,fstype,size,label,mountpoint
[sudo] Mot de passe de divano : 
NAME   FSTYPE     SIZE LABEL     MOUNTPOINT
loop1  squashfs  96,6M           /snap/core/9804
loop2  squashfs 255,6M           /snap/gnome-3-34-1804/33
loop3  squashfs   2,4M           /snap/gnome-calculator/730
loop4  squashfs    55M           /snap/core18/1880
loop5  squashfs   2,2M           /snap/gnome-system-monitor/145
loop6  squashfs  55,3M           /snap/core18/1885
loop7  squashfs   276K           /snap/gnome-characters/539
loop8  squashfs  58,9M           /snap/discographer/6
loop9  squashfs 160,2M           /snap/gnome-3-28-1804/116
loop10 squashfs 255,6M           /snap/gnome-3-34-1804/36
loop11 squashfs  91,2M           /snap/youtube-dl/2846
loop12 squashfs   2,2M           /snap/gnome-system-monitor/148
loop13 squashfs 161,4M           /snap/gnome-3-28-1804/128
loop14 squashfs   2,4M           /snap/gnome-calculator/748
loop15 squashfs    74M           /snap/wine-platform-3-stable/6
loop16 squashfs   352M           /snap/phpstorm/175
loop17 squashfs   142M           /snap/ramboxpro/20
loop18 squashfs   956K           /snap/gnome-logs/100
loop19 squashfs  59,2M           /snap/speedy-duplicate-finder/27
loop20 squashfs 356,6M           /snap/phpstorm/178
loop21 squashfs   956K           /snap/gnome-logs/93
loop22 squashfs  59,2M           /snap/speedy-duplicate-finder/28
loop23 squashfs  58,9M           /snap/discographer/8
loop24 squashfs 226,7M           /snap/wine-platform-runtime/145
loop25 squashfs   276K           /snap/gnome-characters/550
loop26 squashfs  54,8M           /snap/gtk-common-themes/1502
loop27 squashfs 226,4M           /snap/wine-platform-runtime/136
loop28 squashfs  91,1M           /snap/youtube-dl/2840
loop29 squashfs  62,1M           /snap/gtk-common-themes/1506
loop30 squashfs  97,1M           /snap/core/9993
sda             698,7G           
├─sda1 vfat      39,2M           
├─sda2 ntfs       8,8G RECOVERY  
└─sda3 ntfs     689,9G OS        
sdb             931,5G           
├─sdb1 ext4      46,6G           /
└─sdb2 ext4       885G           /home
sdc              29,8G           
└─sdc1 ntfs      29,8G DATAPART1 
sr0              1024M           
divano@divano-M17xR4:~/Documents$ 

Hors ligne

#9 Le 15/09/2020, à 16:15

geole

Re : Upgrade de Ubuntu 18.04 à 20.04 - Etendre partition de boot

Bonjour iznobe
Ce n'est pas un boot en EFI. Mais en LEGACY    qui se fait à partir du MBR.
Dans le MBR , il y a une petite séquence qui part à la recherche d'une partition contenant un drapeau boot
Dans 90% des cas, c'est la partition contenant le répertoire root. C'est le cas de ce contexte (Voir la capture d'écran)


Les grilles de l'installateur https://doc.ubuntu-fr.org/tutoriel/inst … _subiquity
"gedit admin:///etc/fstab" est proscrit,  utilisez "pkexec env DISPLAY=$DISPLAY XAUTHORITY=$XAUTHORITY xdg-open /etc/fstab" Voir  https://doc.ubuntu-fr.org/gedit
Les partitions EXT4 des disques externes => https://forum.ubuntu-fr.org/viewtopic.p … #p22697248

Hors ligne

#10 Le 16/09/2020, à 07:40

iznobe

Re : Upgrade de Ubuntu 18.04 à 20.04 - Etendre partition de boot

Boinjour et merci geole pour ces explications , cela confirme bien ce que je pnesais , c ' etait juste pour etre sur a 100 % et avoir une visualisation des partitions complete du systeme de divano62.

du coup je suppose que le probleme est resolu , il ne reste plus qu ' a editer le 1er post pour le signaler .

Bonne continuation sur ubuntu divano62 wink


retour utilisable de commande
MSI Z490A-pro , i7 10700 , 32 GB RAM .

Hors ligne

#11 Le 20/09/2020, à 09:44

divano62

Re : Upgrade de Ubuntu 18.04 à 20.04 - Etendre partition de boot

Bonjour geole et iznobe,

Désolé du temps mort depuis vos derniers messages hmm

Par rapport au point B) de geole (Diagnostiquer le problème rencontré avec cette version), voici les résultats :

divano@divano-M17xR4:/var/log$ dmesg | tail -200
[20885.101142] wlp8s0: RX AssocResp from 6c:99:61:c7:06:34 (capab=0x511 status=0 aid=4)
[20885.101277] wlp8s0: associated
[20885.101359] ath: EEPROM regdomain: 0x80fa
[20885.101360] ath: EEPROM indicates we should expect a country code
[20885.101360] ath: doing EEPROM country->regdmn map search
[20885.101361] ath: country maps to regdmn code: 0x37
[20885.101361] ath: Country alpha2 being used: FR
[20885.101361] ath: Regpair used: 0x37
[20885.101362] ath: regdomain 0x80fa dynamically updated by country element
[20885.115453] wlp8s0: Limiting TX power to 23 (23 - 0) dBm as advertised by 6c:99:61:c7:06:34
[20885.228442] IPv6: ADDRCONF(NETDEV_CHANGE): wlp8s0: link becomes ready
[21551.406480] usb 3-2: USB disconnect, device number 3
[21562.189913] usb 3-3: new full-speed USB device number 4 using xhci_hcd
[21562.555734] usb 3-3: New USB device found, idVendor=0b0e, idProduct=0348, bcdDevice= 1.16
[21562.555736] usb 3-3: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[21562.555737] usb 3-3: Product: Jabra UC VOICE 550a MS
[21562.555738] usb 3-3: Manufacturer: Jabra
[21562.555739] usb 3-3: SerialNumber: 000100A0CDEF
[21562.598516] usb 3-3: Warning! Unlikely big volume range (=4096), cval->res is probably wrong.
[21562.598519] usb 3-3: [11] FU [Sidetone Playback Volume] ch = 1, val = 0/4096/1
[21562.750017] input: Jabra Jabra UC VOICE 550a MS as /devices/pci0000:00/0000:00:14.0/usb3/3-3/3-3:1.3/0003:0B0E:0348.0004/input/input20
[21562.814124] jabra 0003:0B0E:0348.0004: input,hiddev1,hidraw2: USB HID v1.00 Device [Jabra Jabra UC VOICE 550a MS] on usb-0000:00:14.0-3/input3
[21563.454542] usb 3-3: 2:1: cannot get freq at ep 0x1
[21563.465584] usb 3-3: 2:1: cannot get freq at ep 0x1
[21563.479756] usb 3-3: 1:1: cannot get freq at ep 0x81
[21563.505268] usb 3-3: USB disconnect, device number 4
[21569.653794] usb 3-3: new full-speed USB device number 5 using xhci_hcd
[21570.015509] usb 3-3: New USB device found, idVendor=0b0e, idProduct=0348, bcdDevice= 1.16
[21570.015511] usb 3-3: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[21570.015512] usb 3-3: Product: Jabra UC VOICE 550a MS
[21570.015513] usb 3-3: Manufacturer: Jabra
[21570.015513] usb 3-3: SerialNumber: 000100A0CDEF
[21570.058449] usb 3-3: Warning! Unlikely big volume range (=4096), cval->res is probably wrong.
[21570.058454] usb 3-3: [11] FU [Sidetone Playback Volume] ch = 1, val = 0/4096/1
[21570.209998] input: Jabra Jabra UC VOICE 550a MS as /devices/pci0000:00/0000:00:14.0/usb3/3-3/3-3:1.3/0003:0B0E:0348.0005/input/input21
[21570.270111] jabra 0003:0B0E:0348.0005: input,hiddev1,hidraw2: USB HID v1.00 Device [Jabra Jabra UC VOICE 550a MS] on usb-0000:00:14.0-3/input3
[21570.899786] usb 3-3: 2:1: cannot get freq at ep 0x1
[21570.921081] usb 3-3: 2:1: cannot get freq at ep 0x1
[21570.931597] usb 3-3: 1:1: cannot get freq at ep 0x81
[34280.003225] pci_bus 0000:07: Allocating resources
[34280.003248] pci_bus 0000:08: Allocating resources
[34280.003261] pci_bus 0000:09: Allocating resources
[34284.448855] PM: suspend entry (deep)
[34284.460597] Filesystems sync: 0.011 seconds
[34284.461326] Freezing user space processes ... (elapsed 0.003 seconds) done.
[34284.465179] OOM killer disabled.
[34284.465180] Freezing remaining freezable tasks ... (elapsed 0.001 seconds) done.
[34284.466773] printk: Suspending console(s) (use no_console_suspend to debug)
[34284.499202] wlp8s0: deauthenticating from 6c:99:61:c7:06:34 by local choice (Reason: 3=DEAUTH_LEAVING)
[34284.519802] sd 1:0:0:0: [sdb] Synchronizing SCSI cache
[34284.520831] sd 1:0:0:0: [sdb] Stopping disk
[34284.522665] sd 0:0:0:0: [sda] Synchronizing SCSI cache
[34284.523013] sd 0:0:0:0: [sda] Stopping disk
[34284.530736] sd 3:0:0:0: [sdc] Synchronizing SCSI cache
[34284.533720] sd 3:0:0:0: [sdc] Stopping disk
[34285.483415] ACPI: EC: interrupt blocked
[34285.523038] ACPI: Preparing to enter system sleep state S3
[34285.523929] ACPI: EC: event blocked
[34285.523930] ACPI: EC: EC stopped
[34285.523930] PM: Saving platform NVS memory
[34285.523943] Disabling non-boot CPUs ...
[34285.524734] IRQ 35: no longer affine to CPU1
[34285.525741] smpboot: CPU 1 is now offline
[34285.530267] smpboot: CPU 2 is now offline
[34285.534087] IRQ 34: no longer affine to CPU3
[34285.535119] smpboot: CPU 3 is now offline
[34285.540120] smpboot: CPU 4 is now offline
[34285.543390] IRQ 30: no longer affine to CPU5
[34285.544402] smpboot: CPU 5 is now offline
[34285.546680] IRQ 32: no longer affine to CPU6
[34285.547688] smpboot: CPU 6 is now offline
[34285.550248] IRQ 18: no longer affine to CPU7
[34285.550253] IRQ 19: no longer affine to CPU7
[34285.551292] smpboot: CPU 7 is now offline
[34285.554049] ACPI: Low-level resume complete
[34285.554099] ACPI: EC: EC started
[34285.554100] PM: Restoring platform NVS memory
[34285.555335] Enabling non-boot CPUs ...
[34285.555389] x86: Booting SMP configuration:
[34285.555390] smpboot: Booting Node 0 Processor 1 APIC 0x1
[34285.558541] CPU1 is up
[34285.558594] smpboot: Booting Node 0 Processor 2 APIC 0x2
[34285.562133] CPU2 is up
[34285.562202] smpboot: Booting Node 0 Processor 3 APIC 0x3
[34285.565161] CPU3 is up
[34285.565229] smpboot: Booting Node 0 Processor 4 APIC 0x4
[34285.568871] CPU4 is up
[34285.568934] smpboot: Booting Node 0 Processor 5 APIC 0x5
[34285.571859] CPU5 is up
[34285.571933] smpboot: Booting Node 0 Processor 6 APIC 0x6
[34285.575530] CPU6 is up
[34285.575605] smpboot: Booting Node 0 Processor 7 APIC 0x7
[34285.578594] CPU7 is up
[34285.581026] ACPI: Waking up from system sleep state S3
[34285.588062] ACPI: EC: interrupt unblocked
[34285.629206] ACPI: EC: event unblocked
[34285.629329] ath: phy0: ASPM enabled: 0x43
[34285.629628] sdhci-pci 0000:09:00.1: Will use DMA mode even though HW doesn't fully claim to support it.
[34285.629648] sdhci-pci 0000:09:00.1: Will use DMA mode even though HW doesn't fully claim to support it.
[34285.639398] sd 3:0:0:0: [sdc] Starting disk
[34285.639406] sd 1:0:0:0: [sdb] Starting disk
[34285.639430] sd 0:0:0:0: [sda] Starting disk
[34285.875416] usb 1-1.5: reset high-speed USB device number 5 using ehci-pci
[34286.001912] ata4: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
[34286.001941] ata2: SATA link up 6.0 Gbps (SStatus 133 SControl 300)
[34286.001973] ata3: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
[34286.002723] ata2.00: ACPI cmd 00/00:00:00:00:00:a0 (NOP) rejected by device (Stat=0x51 Err=0x04)
[34286.002825] ata2.00: supports DRM functions and may not be fully accessible
[34286.003093] ata4.00: configured for UDMA/133
[34286.003249] ata5: SATA link down (SStatus 0 SControl 300)
[34286.006128] ata2.00: ACPI cmd 00/00:00:00:00:00:a0 (NOP) rejected by device (Stat=0x51 Err=0x04)
[34286.006187] ata2.00: supports DRM functions and may not be fully accessible
[34286.008605] ata2.00: configured for UDMA/133
[34286.015722] usb 3-1: reset low-speed USB device number 2 using xhci_hcd
[34286.018859] ata2.00: Enabling discard_zeroes_data
[34286.063499] usb 1-1.1: reset full-speed USB device number 3 using ehci-pci
[34286.104863] ata3.00: configured for UDMA/133
[34286.237139] snd_hda_codec_ca0132 hdaudioC0D0: ca0132 DSP downloaded and running
[34286.311889] input input7: event field not found
[34286.874579] psmouse serio1: synaptics: queried max coordinates: x [..5398], y [..4728]
[34288.553587] OOM killer enabled.
[34288.553589] Restarting tasks ... 
[34288.553813] usb 3-3: USB disconnect, device number 5
[34288.566788] done.
[34288.644055] pci_bus 0000:07: Allocating resources
[34288.644079] pci_bus 0000:08: Allocating resources
[34288.644092] pci_bus 0000:09: Allocating resources
[34288.787938] PM: suspend exit
[34288.891394] ata1: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
[34288.892583] ata1.00: ACPI cmd ef/5a:00:00:00:00:a0 (SET FEATURES) succeeded
[34288.894779] ata1.00: ACPI cmd 00/00:00:00:00:00:a0 (NOP) rejected by device (Stat=0x51 Err=0x04)
[34288.895018] ata1.00: configured for UDMA/133
[34293.081582] wlp8s0: authenticate with 6c:99:61:c7:06:34
[34293.092749] wlp8s0: send auth to 6c:99:61:c7:06:34 (try 1/3)
[34293.094203] wlp8s0: authenticated
[34293.099342] wlp8s0: associate with 6c:99:61:c7:06:34 (try 1/3)
[34293.102472] wlp8s0: RX AssocResp from 6c:99:61:c7:06:34 (capab=0x511 status=0 aid=57)
[34293.102608] wlp8s0: associated
[34293.102736] ath: EEPROM regdomain: 0x80fa
[34293.102737] ath: EEPROM indicates we should expect a country code
[34293.102737] ath: doing EEPROM country->regdmn map search
[34293.102738] ath: country maps to regdmn code: 0x37
[34293.102739] ath: Country alpha2 being used: FR
[34293.102739] ath: Regpair used: 0x37
[34293.102740] ath: regdomain 0x80fa dynamically updated by country element
[34293.108684] wlp8s0: Limiting TX power to 23 (23 - 0) dBm as advertised by 6c:99:61:c7:06:34
[34293.210583] IPv6: ADDRCONF(NETDEV_CHANGE): wlp8s0: link becomes ready
[34307.124317] mmc1: cannot verify signal voltage switch
[34307.241785] mmc1: new ultra high speed SDR50 SDHC card at address 0001
[34307.245136] mmcblk1: mmc1:0001 00000 29.3 GiB 
[34307.270974]  mmcblk1: p1
[34481.807414] mmc1: card 0001 removed
[34514.523168] FAT-fs (mmcblk1p1): unable to read boot sector to mark fs as dirty
[34603.605239] SGI XFS with ACLs, security attributes, realtime, no debug enabled
[34603.612608] JFS: nTxBlock = 8192, nTxLock = 65536
[34603.624497] ntfs: driver 2.1.32 [Flags: R/O MODULE].
[34603.639185] QNX4 filesystem 0.2.3 registered.
[34603.691669] raid6: sse2x4   gen() 14188 MB/s
[34603.739668] raid6: sse2x4   xor()  9878 MB/s
[34603.787675] raid6: sse2x2   gen() 12225 MB/s
[34603.835682] raid6: sse2x2   xor()  8290 MB/s
[34603.883683] raid6: sse2x1   gen() 10377 MB/s
[34603.931681] raid6: sse2x1   xor()  7388 MB/s
[34603.931683] raid6: using algorithm sse2x4 gen() 14188 MB/s
[34603.931683] raid6: .... xor() 9878 MB/s, rmw enabled
[34603.931684] raid6: using ssse3x2 recovery algorithm
[34603.935674] xor: automatically using best checksumming function   avx       
[34603.955595] Btrfs loaded, crc32c=crc32c-intel
[34638.338813] audit: type=1400 audit(1600590701.665:56): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="snap.gnome-calculator.gnome-calculator" pid=81718 comm="apparmor_parser"
[34638.641358] audit: type=1400 audit(1600590701.966:57): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="snap-update-ns.gnome-calculator" pid=81717 comm="apparmor_parser"
[34638.653610] audit: type=1400 audit(1600590701.982:58): apparmor="STATUS" operation="profile_replace" info="same as current profile, skipping" profile="unconfined" name="/snap/core/9993/usr/lib/snapd/snap-confine" pid=81720 comm="apparmor_parser"
[34638.653614] audit: type=1400 audit(1600590701.982:59): apparmor="STATUS" operation="profile_replace" info="same as current profile, skipping" profile="unconfined" name="/snap/core/9993/usr/lib/snapd/snap-confine//mount-namespace-capture-helper" pid=81720 comm="apparmor_parser"
[34638.658460] audit: type=1400 audit(1600590701.986:60): apparmor="STATUS" operation="profile_replace" info="same as current profile, skipping" profile="unconfined" name="snap-update-ns.core" pid=81722 comm="apparmor_parser"
[34638.658623] audit: type=1400 audit(1600590701.986:61): apparmor="STATUS" operation="profile_replace" info="same as current profile, skipping" profile="unconfined" name="snap.core.hook.configure" pid=81723 comm="apparmor_parser"
[34638.939187] audit: type=1400 audit(1600590702.266:62): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="snap.gnome-calculator.gnome-calculator" pid=81732 comm="apparmor_parser"
[34639.172757] audit: type=1400 audit(1600590702.498:63): apparmor="STATUS" operation="profile_replace" info="same as current profile, skipping" profile="unconfined" name="snap-update-ns.gnome-calculator" pid=81731 comm="apparmor_parser"
[34639.181373] audit: type=1400 audit(1600590702.506:64): apparmor="STATUS" operation="profile_replace" info="same as current profile, skipping" profile="unconfined" name="/snap/core/9993/usr/lib/snapd/snap-confine" pid=81734 comm="apparmor_parser"
[34639.181376] audit: type=1400 audit(1600590702.506:65): apparmor="STATUS" operation="profile_replace" info="same as current profile, skipping" profile="unconfined" name="/snap/core/9993/usr/lib/snapd/snap-confine//mount-namespace-capture-helper" pid=81734 comm="apparmor_parser"
[34643.446142] kauditd_printk_skb: 34 callbacks suppressed
[34643.446144] audit: type=1400 audit(1600590706.774:100): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="snap.gnome-characters.gnome-characters" pid=81872 comm="apparmor_parser"
[34643.602240] audit: type=1400 audit(1600590706.930:101): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="snap-update-ns.gnome-characters" pid=81871 comm="apparmor_parser"
[34643.904372] audit: type=1400 audit(1600590707.230:102): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="snap.gnome-characters.gnome-characters" pid=81874 comm="apparmor_parser"
[34643.910338] audit: type=1400 audit(1600590707.238:103): apparmor="STATUS" operation="profile_replace" info="same as current profile, skipping" profile="unconfined" name="snap-update-ns.gnome-characters" pid=81876 comm="apparmor_parser"
[34643.914881] audit: type=1400 audit(1600590707.242:104): apparmor="STATUS" operation="profile_replace" info="same as current profile, skipping" profile="unconfined" name="/snap/core/9993/usr/lib/snapd/snap-confine" pid=81878 comm="apparmor_parser"
[34643.914884] audit: type=1400 audit(1600590707.242:105): apparmor="STATUS" operation="profile_replace" info="same as current profile, skipping" profile="unconfined" name="/snap/core/9993/usr/lib/snapd/snap-confine//mount-namespace-capture-helper" pid=81878 comm="apparmor_parser"
[34643.918602] audit: type=1400 audit(1600590707.246:106): apparmor="STATUS" operation="profile_replace" info="same as current profile, skipping" profile="unconfined" name="snap-update-ns.core" pid=81880 comm="apparmor_parser"
[34643.919303] audit: type=1400 audit(1600590707.246:107): apparmor="STATUS" operation="profile_replace" info="same as current profile, skipping" profile="unconfined" name="snap.core.hook.configure" pid=81881 comm="apparmor_parser"
[34644.218861] audit: type=1400 audit(1600590707.546:108): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="snap.gnome-characters.gnome-characters" pid=81883 comm="apparmor_parser"
[34644.224849] audit: type=1400 audit(1600590707.550:109): apparmor="STATUS" operation="profile_replace" info="same as current profile, skipping" profile="unconfined" name="snap-update-ns.gnome-characters" pid=81885 comm="apparmor_parser"
[34648.664450] kauditd_printk_skb: 46 callbacks suppressed
[34648.664451] audit: type=1400 audit(1600590711.990:156): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="snap.gnome-logs.gnome-logs" pid=82064 comm="apparmor_parser"
[34648.864026] audit: type=1400 audit(1600590712.190:157): apparmor="STATUS" operation="profile_replace" info="same as current profile, skipping" profile="unconfined" name="snap-update-ns.gnome-logs" pid=82063 comm="apparmor_parser"
[34648.872429] audit: type=1400 audit(1600590712.198:158): apparmor="STATUS" operation="profile_replace" info="same as current profile, skipping" profile="unconfined" name="/snap/core/9993/usr/lib/snapd/snap-confine" pid=82066 comm="apparmor_parser"
[34648.872434] audit: type=1400 audit(1600590712.198:159): apparmor="STATUS" operation="profile_replace" info="same as current profile, skipping" profile="unconfined" name="/snap/core/9993/usr/lib/snapd/snap-confine//mount-namespace-capture-helper" pid=82066 comm="apparmor_parser"
[34648.876041] audit: type=1400 audit(1600590712.202:160): apparmor="STATUS" operation="profile_replace" info="same as current profile, skipping" profile="unconfined" name="snap-update-ns.core" pid=82068 comm="apparmor_parser"
[34648.876692] audit: type=1400 audit(1600590712.202:161): apparmor="STATUS" operation="profile_replace" info="same as current profile, skipping" profile="unconfined" name="snap.core.hook.configure" pid=82069 comm="apparmor_parser"
[34649.176991] audit: type=1400 audit(1600590712.506:162): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="snap.gnome-logs.gnome-logs" pid=82072 comm="apparmor_parser"
[34649.375365] audit: type=1400 audit(1600590712.702:163): apparmor="STATUS" operation="profile_replace" info="same as current profile, skipping" profile="unconfined" name="snap-update-ns.gnome-logs" pid=82071 comm="apparmor_parser"
[34649.383311] audit: type=1400 audit(1600590712.710:164): apparmor="STATUS" operation="profile_replace" info="same as current profile, skipping" profile="unconfined" name="/snap/core/9993/usr/lib/snapd/snap-confine" pid=82076 comm="apparmor_parser"
[34649.383316] audit: type=1400 audit(1600590712.710:165): apparmor="STATUS" operation="profile_replace" info="same as current profile, skipping" profile="unconfined" name="/snap/core/9993/usr/lib/snapd/snap-confine//mount-namespace-capture-helper" pid=82076 comm="apparmor_parser"
divano@divano-M17xR4:/var/log$ 
divano@divano-M17xR4:/var/log$ journalctl -b -p err
-- Logs begin at Mon 2020-09-14 12:02:58 CEST, end at Sun 2020-09-20 10:39:28 CEST. --
sept. 17 17:30:32 divano-M17xR4 kernel: ipmi:dmi: Base address is zero, assuming no IPMI interface
sept. 17 17:30:33 divano-M17xR4 kernel: ACPI Error: Field [VBS1] Base+Offset+Width 4+0+4 is beyond end of region [VBOR] (length 4) (20190816/exfldio-163)
sept. 17 17:30:33 divano-M17xR4 kernel: ACPI Error: Aborting method \_SB.PCI0.PEG0.PEGP._ROM due to previous error (AE_AML_REGION_LIMIT) (20190816/psparse-529)
sept. 17 17:30:34 divano-M17xR4 kernel: usb 3-2: 2:1: cannot get freq at ep 0x1
sept. 17 17:30:35 divano-M17xR4 pulseaudio[1675]: No UCM verb is valid for hw:1
sept. 17 17:30:36 divano-M17xR4 kernel: usb 3-2: 2:1: cannot get freq at ep 0x1
sept. 17 17:30:36 divano-M17xR4 kernel: usb 3-2: 2:1: cannot get freq at ep 0x1
sept. 17 17:30:36 divano-M17xR4 pulseaudio[1675]: No UCM verb is valid for hw:0
sept. 17 17:30:50 divano-M17xR4 gdm-password][2683]: gkr-pam: unable to locate daemon control file
sept. 17 17:30:51 divano-M17xR4 pulseaudio[2716]: No UCM verb is valid for hw:1
sept. 17 17:30:51 divano-M17xR4 pulseaudio[2716]: No UCM verb is valid for hw:0
sept. 18 12:45:19 divano-M17xR4 systemd[1]: Failed to start Refresh fwupd metadata and update motd.
sept. 18 12:56:42 divano-M17xR4 kernel: usb 3-3: 2:1: cannot get freq at ep 0x1
sept. 18 12:56:42 divano-M17xR4 kernel: usb 3-3: 2:1: cannot get freq at ep 0x1
sept. 18 12:56:42 divano-M17xR4 kernel: usb 3-3: 1:1: cannot get freq at ep 0x81
sept. 18 12:56:42 divano-M17xR4 pulseaudio[2716]: Failed to get card object.
sept. 18 12:56:50 divano-M17xR4 kernel: usb 3-3: 2:1: cannot get freq at ep 0x1
sept. 18 12:56:50 divano-M17xR4 kernel: usb 3-3: 2:1: cannot get freq at ep 0x1
sept. 18 12:56:50 divano-M17xR4 kernel: usb 3-3: 1:1: cannot get freq at ep 0x81
sept. 18 14:29:37 divano-M17xR4 pulseaudio[2716]: ALSA woke us up to write new data to the device, but there was actually nothing to write.
sept. 18 14:29:37 divano-M17xR4 pulseaudio[2716]: Most likely this is a bug in the ALSA driver 'snd_usb_audio'. Please report this issue to the ALSA developers.
sept. 18 14:29:37 divano-M17xR4 pulseaudio[2716]: We were woken up with POLLOUT set -- however a subsequent snd_pcm_avail() returned 0 or another value < min_avail.
sept. 20 10:25:52 divano-M17xR4 systemd[1]: Failed to start Refresh fwupd metadata and update motd.
sept. 20 10:29:37 divano-M17xR4 kernel: FAT-fs (mmcblk1p1): unable to read boot sector to mark fs as dirty
divano@divano-M17xR4:/var/log$ 

Du coup, dans tout ce "charabia", comment trouver ce qui cause le problème... hmm
Vous pouvez m'aider ? Est-ce que ce que je vous fournis vous permet de diagnostiquer ?

En parallèle, est-ce que je peux faire les étapes C) D) et E) ?


Merci beaucoup pour votre aide !

Hors ligne

#12 Le 20/09/2020, à 10:55

iznobe

Re : Upgrade de Ubuntu 18.04 à 20.04 - Etendre partition de boot

Bonjour ,

ce qui cause le probleme , est une journalisation anormale .

en suivant les etapes et les commandes données par geole , si j' ai bien compris la logique , ca te permet de repartir avec un creation des fichiers journaux a " neuf " .

Sans vraiment savoir ce qui a causé l ' erreur dans les parametres des journaux , en repartant avec des parametres de base , ca devrait resoudre le probleme .

Il te suffit juste de finir les commandes données par geole dans son message #5 , et bien sur de le tenir informer des resultats , afin qu ' il puisse verifier que tout se passe bien .

A+

Dernière modification par iznobe (Le 20/09/2020, à 10:56)


retour utilisable de commande
MSI Z490A-pro , i7 10700 , 32 GB RAM .

Hors ligne

#13 Le 20/09/2020, à 11:14

geole

Re : Upgrade de Ubuntu 18.04 à 20.04 - Etendre partition de boot

Bonjour
Pas de chance pour la collecte des 200 derniers évènements, cela trace une mise en sommeil qui est très prolifique.
Il faudrait que tu refasses la commande

dmesg | tail -200

Il n'y a pas de messages graves.

Tu peux faire  les étapes C D E

Nota, l'étape C va supprimer la collecte  en double des erreurs dans le vieux format    /var/log/syslog et /var/log/kern.log qui peut remplir la totalité de la partition et ne conserver que la collecte dans le nouveau format /var/log/journal qui sait s'auto-limiter à une taille maxima de 4 Go qui peut d'ailleurs devenir plus faible  ( 100 Mo environ) si l'espace disponible se réduit considérablement.

Dernière modification par geole (Le 20/09/2020, à 11:15)


Les grilles de l'installateur https://doc.ubuntu-fr.org/tutoriel/inst … _subiquity
"gedit admin:///etc/fstab" est proscrit,  utilisez "pkexec env DISPLAY=$DISPLAY XAUTHORITY=$XAUTHORITY xdg-open /etc/fstab" Voir  https://doc.ubuntu-fr.org/gedit
Les partitions EXT4 des disques externes => https://forum.ubuntu-fr.org/viewtopic.p … #p22697248

Hors ligne

#14 Le 20/09/2020, à 15:28

divano62

Re : Upgrade de Ubuntu 18.04 à 20.04 - Etendre partition de boot

OK iznobe, et comme le suggère aussi geole, je vais donc procéder aux étapes C D et E ;-)

Geole, j'ai relancé la commande et voici le résultat :

divano@divano-M17xR4:~$ dmesg | tail -200
[43170.506231] printk: Suspending console(s) (use no_console_suspend to debug)
[43170.550465] wlp8s0: deauthenticating from 6c:99:61:c7:06:34 by local choice (Reason: 3=DEAUTH_LEAVING)
[43170.573948] sd 1:0:0:0: [sdb] Synchronizing SCSI cache
[43170.574026] sd 3:0:0:0: [sdc] Synchronizing SCSI cache
[43170.575091] sd 1:0:0:0: [sdb] Stopping disk
[43170.577049] sd 3:0:0:0: [sdc] Stopping disk
[43170.577922] sd 0:0:0:0: [sda] Synchronizing SCSI cache
[43170.578301] sd 0:0:0:0: [sda] Stopping disk
[43171.514761] ACPI: EC: interrupt blocked
[43171.554342] ACPI: Preparing to enter system sleep state S3
[43171.555349] ACPI: EC: event blocked
[43171.555350] ACPI: EC: EC stopped
[43171.555351] PM: Saving platform NVS memory
[43171.555368] Disabling non-boot CPUs ...
[43171.556288] IRQ 35: no longer affine to CPU1
[43171.557736] smpboot: CPU 1 is now offline
[43171.562779] smpboot: CPU 2 is now offline
[43171.566835] IRQ 34: no longer affine to CPU3
[43171.567840] smpboot: CPU 3 is now offline
[43171.571494] smpboot: CPU 4 is now offline
[43171.573793] IRQ 30: no longer affine to CPU5
[43171.574808] smpboot: CPU 5 is now offline
[43171.577111] IRQ 32: no longer affine to CPU6
[43171.578128] smpboot: CPU 6 is now offline
[43171.580446] IRQ 18: no longer affine to CPU7
[43171.580451] IRQ 19: no longer affine to CPU7
[43171.581476] smpboot: CPU 7 is now offline
[43171.584444] ACPI: Low-level resume complete
[43171.584493] ACPI: EC: EC started
[43171.584494] PM: Restoring platform NVS memory
[43171.585728] Enabling non-boot CPUs ...
[43171.585782] x86: Booting SMP configuration:
[43171.585783] smpboot: Booting Node 0 Processor 1 APIC 0x1
[43171.589193] CPU1 is up
[43171.589267] smpboot: Booting Node 0 Processor 2 APIC 0x2
[43171.593089] CPU2 is up
[43171.593160] smpboot: Booting Node 0 Processor 3 APIC 0x3
[43171.596457] CPU3 is up
[43171.596521] smpboot: Booting Node 0 Processor 4 APIC 0x4
[43171.600370] CPU4 is up
[43171.600434] smpboot: Booting Node 0 Processor 5 APIC 0x5
[43171.603418] CPU5 is up
[43171.603481] smpboot: Booting Node 0 Processor 6 APIC 0x6
[43171.607174] CPU6 is up
[43171.607236] smpboot: Booting Node 0 Processor 7 APIC 0x7
[43171.610340] CPU7 is up
[43171.612757] ACPI: Waking up from system sleep state S3
[43171.622901] ACPI: button: The lid device is not compliant to SW_LID.
[43171.623311] ACPI: EC: interrupt unblocked
[43171.664480] ACPI: EC: event unblocked
[43171.665848] sdhci-pci 0000:09:00.1: Will use DMA mode even though HW doesn't fully claim to support it.
[43171.665880] sdhci-pci 0000:09:00.1: Will use DMA mode even though HW doesn't fully claim to support it.
[43171.665905] ath: phy0: ASPM enabled: 0x43
[43171.674840] sd 1:0:0:0: [sdb] Starting disk
[43171.674850] sd 0:0:0:0: [sda] Starting disk
[43171.674866] sd 3:0:0:0: [sdc] Starting disk
[43171.764873] input input7: event field not found
[43171.910661] usb 1-1.5: reset high-speed USB device number 5 using ehci-pci
[43172.037049] ata5: SATA link down (SStatus 0 SControl 300)
[43172.037101] ata4: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
[43172.037130] ata2: SATA link up 6.0 Gbps (SStatus 133 SControl 300)
[43172.037383] ata3: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
[43172.037796] ata2.00: ACPI cmd 00/00:00:00:00:00:a0 (NOP) rejected by device (Stat=0x51 Err=0x04)
[43172.037876] ata2.00: supports DRM functions and may not be fully accessible
[43172.038289] ata4.00: configured for UDMA/133
[43172.041257] ata2.00: ACPI cmd 00/00:00:00:00:00:a0 (NOP) rejected by device (Stat=0x51 Err=0x04)
[43172.041317] ata2.00: supports DRM functions and may not be fully accessible
[43172.043780] ata2.00: configured for UDMA/133
[43172.054040] ata2.00: Enabling discard_zeroes_data
[43172.102740] usb 1-1.1: reset full-speed USB device number 3 using ehci-pci
[43172.145650] ata3.00: configured for UDMA/133
[43172.323081] snd_hda_codec_ca0132 hdaudioC0D0: ca0132 DSP downloaded and running
[43172.362222] OOM killer enabled.
[43172.362224] Restarting tasks ... done.
[43172.578747] PM: suspend exit
[43172.875105] psmouse serio1: synaptics: queried max coordinates: x [..5398], y [..4728]
[43174.978671] ata1: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
[43174.980218] ata1.00: ACPI cmd ef/5a:00:00:00:00:a0 (SET FEATURES) succeeded
[43174.982760] ata1.00: ACPI cmd 00/00:00:00:00:00:a0 (NOP) rejected by device (Stat=0x51 Err=0x04)
[43174.983032] ata1.00: configured for UDMA/133
[43177.235622] pci_bus 0000:07: Allocating resources
[43177.235691] pci_bus 0000:08: Allocating resources
[43177.235713] pci_bus 0000:09: Allocating resources
[43179.082199] wlp8s0: authenticate with 6c:99:61:c7:06:34
[43179.093332] wlp8s0: send auth to 6c:99:61:c7:06:34 (try 1/3)
[43179.094631] wlp8s0: authenticated
[43179.098536] wlp8s0: associate with 6c:99:61:c7:06:34 (try 1/3)
[43179.101784] wlp8s0: RX AssocResp from 6c:99:61:c7:06:34 (capab=0x511 status=0 aid=59)
[43179.101944] wlp8s0: associated
[43179.102118] ath: EEPROM regdomain: 0x80fa
[43179.102119] ath: EEPROM indicates we should expect a country code
[43179.102120] ath: doing EEPROM country->regdmn map search
[43179.102120] ath: country maps to regdmn code: 0x37
[43179.102121] ath: Country alpha2 being used: FR
[43179.102122] ath: Regpair used: 0x37
[43179.102123] ath: regdomain 0x80fa dynamically updated by country element
[43179.138825] wlp8s0: Limiting TX power to 23 (23 - 0) dBm as advertised by 6c:99:61:c7:06:34
[43179.213768] IPv6: ADDRCONF(NETDEV_CHANGE): wlp8s0: link becomes ready
[43200.639143] PM: suspend entry (deep)
[43200.644097] Filesystems sync: 0.004 seconds
[43200.645081] Freezing user space processes ... (elapsed 0.033 seconds) done.
[43200.678913] OOM killer disabled.
[43200.678915] Freezing remaining freezable tasks ... (elapsed 0.001 seconds) done.
[43200.680756] printk: Suspending console(s) (use no_console_suspend to debug)
[43200.698970] wlp8s0: deauthenticating from 6c:99:61:c7:06:34 by local choice (Reason: 3=DEAUTH_LEAVING)
[43200.718199] sd 3:0:0:0: [sdc] Synchronizing SCSI cache
[43200.721087] sd 3:0:0:0: [sdc] Stopping disk
[43200.731696] sd 0:0:0:0: [sda] Synchronizing SCSI cache
[43200.731734] sd 1:0:0:0: [sdb] Synchronizing SCSI cache
[43200.732067] sd 0:0:0:0: [sda] Stopping disk
[43200.732887] sd 1:0:0:0: [sdb] Stopping disk
[43201.662930] ACPI: EC: interrupt blocked
[43201.702602] ACPI: Preparing to enter system sleep state S3
[43201.703598] ACPI: EC: event blocked
[43201.703599] ACPI: EC: EC stopped
[43201.703600] PM: Saving platform NVS memory
[43201.703615] Disabling non-boot CPUs ...
[43201.704469] IRQ 35: no longer affine to CPU1
[43201.705933] smpboot: CPU 1 is now offline
[43201.710184] smpboot: CPU 2 is now offline
[43201.713056] IRQ 30: no longer affine to CPU3
[43201.713062] IRQ 34: no longer affine to CPU3
[43201.714095] smpboot: CPU 3 is now offline
[43201.717968] smpboot: CPU 4 is now offline
[43201.721961] smpboot: CPU 5 is now offline
[43201.724895] IRQ 32: no longer affine to CPU6
[43201.725900] smpboot: CPU 6 is now offline
[43201.727648] IRQ 18: no longer affine to CPU7
[43201.727653] IRQ 19: no longer affine to CPU7
[43201.728675] smpboot: CPU 7 is now offline
[43201.730569] ACPI: Low-level resume complete
[43201.730618] ACPI: EC: EC started
[43201.730619] PM: Restoring platform NVS memory
[43201.731952] Enabling non-boot CPUs ...
[43201.732007] x86: Booting SMP configuration:
[43201.732008] smpboot: Booting Node 0 Processor 1 APIC 0x1
[43201.735073] CPU1 is up
[43201.735145] smpboot: Booting Node 0 Processor 2 APIC 0x2
[43201.738928] CPU2 is up
[43201.738992] smpboot: Booting Node 0 Processor 3 APIC 0x3
[43201.742207] CPU3 is up
[43201.742270] smpboot: Booting Node 0 Processor 4 APIC 0x4
[43201.746154] CPU4 is up
[43201.746216] smpboot: Booting Node 0 Processor 5 APIC 0x5
[43201.749229] CPU5 is up
[43201.749307] smpboot: Booting Node 0 Processor 6 APIC 0x6
[43201.752990] CPU6 is up
[43201.753046] smpboot: Booting Node 0 Processor 7 APIC 0x7
[43201.756173] CPU7 is up
[43201.758601] ACPI: Waking up from system sleep state S3
[43201.771565] ACPI: EC: interrupt unblocked
[43201.812535] ACPI: EC: event unblocked
[43201.813913] ath: phy0: ASPM enabled: 0x43
[43201.813925] sdhci-pci 0000:09:00.1: Will use DMA mode even though HW doesn't fully claim to support it.
[43201.813935] sdhci-pci 0000:09:00.1: Will use DMA mode even though HW doesn't fully claim to support it.
[43201.823015] sd 1:0:0:0: [sdb] Starting disk
[43201.823542] sd 0:0:0:0: [sda] Starting disk
[43201.823549] sd 3:0:0:0: [sdc] Starting disk
[43201.909634] input input7: event field not found
[43202.058912] usb 1-1.1: reset full-speed USB device number 3 using ehci-pci
[43202.185355] ata5: SATA link down (SStatus 0 SControl 300)
[43202.186733] ata2: SATA link up 6.0 Gbps (SStatus 133 SControl 300)
[43202.186762] ata4: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
[43202.187308] ata3: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
[43202.187342] ata2.00: ACPI cmd 00/00:00:00:00:00:a0 (NOP) rejected by device (Stat=0x51 Err=0x04)
[43202.187473] ata2.00: supports DRM functions and may not be fully accessible
[43202.187886] ata4.00: configured for UDMA/133
[43202.190569] ata2.00: ACPI cmd 00/00:00:00:00:00:a0 (NOP) rejected by device (Stat=0x51 Err=0x04)
[43202.190612] ata2.00: supports DRM functions and may not be fully accessible
[43202.192929] ata2.00: configured for UDMA/133
[43202.203384] ata2.00: Enabling discard_zeroes_data
[43202.247009] usb 1-1.5: reset high-speed USB device number 5 using ehci-pci
[43202.278355] ata3.00: configured for UDMA/133
[43202.467379] snd_hda_codec_ca0132 hdaudioC0D0: ca0132 DSP downloaded and running
[43202.506960] OOM killer enabled.
[43202.506962] Restarting tasks ... done.
[43202.603378] pci_bus 0000:07: Allocating resources
[43202.603399] pci_bus 0000:08: Allocating resources
[43202.603412] pci_bus 0000:09: Allocating resources
[43202.743035] PM: suspend exit
[43203.053216] psmouse serio1: synaptics: queried max coordinates: x [..5398], y [..4728]
[43205.070956] ata1: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
[43205.072530] ata1.00: ACPI cmd ef/5a:00:00:00:00:a0 (SET FEATURES) succeeded
[43205.075229] ata1.00: ACPI cmd 00/00:00:00:00:00:a0 (NOP) rejected by device (Stat=0x51 Err=0x04)
[43205.075518] ata1.00: configured for UDMA/133
[43209.138693] wlp8s0: authenticate with 6c:99:61:c7:06:34
[43209.149926] wlp8s0: send auth to 6c:99:61:c7:06:34 (try 1/3)
[43209.151251] wlp8s0: authenticated
[43209.158777] wlp8s0: associate with 6c:99:61:c7:06:34 (try 1/3)
[43209.162063] wlp8s0: RX AssocResp from 6c:99:61:c7:06:34 (capab=0x511 status=0 aid=63)
[43209.162212] wlp8s0: associated
[43209.162394] ath: EEPROM regdomain: 0x80fa
[43209.162394] ath: EEPROM indicates we should expect a country code
[43209.162395] ath: doing EEPROM country->regdmn map search
[43209.162396] ath: country maps to regdmn code: 0x37
[43209.162397] ath: Country alpha2 being used: FR
[43209.162397] ath: Regpair used: 0x37
[43209.162398] ath: regdomain 0x80fa dynamically updated by country element
[43209.195556] wlp8s0: Limiting TX power to 23 (23 - 0) dBm as advertised by 6c:99:61:c7:06:34
[43209.279694] IPv6: ADDRCONF(NETDEV_CHANGE): wlp8s0: link becomes ready
divano@divano-M17xR4:~$ 

Et voici le résultat de la commande après les étapes C - D et E et le reboot :

divano@divano-M17xR4:~$ dmesg | tail -200
[    3.674029] systemd[1]: Starting Create Static Device Nodes in /dev...
[    3.683278] systemd[1]: Finished Apply Kernel Variables.
[    3.687554] systemd[1]: Finished Create Static Device Nodes in /dev.
[    3.688478] systemd[1]: Starting udev Kernel Device Manager...
[    3.728702] systemd[1]: Finished Set the console keyboard layout.
[    3.728823] systemd[1]: Reached target Local File Systems (Pre).
[    3.731027] systemd[1]: Mounting Mount unit for core, revision 9804...
[    3.732410] systemd[1]: Mounting Mount unit for core, revision 9993...
[    3.734032] systemd[1]: Mounting Mount unit for core18, revision 1880...
[    3.736034] systemd[1]: Mounting Mount unit for core18, revision 1885...
[    3.737551] systemd[1]: Mounting Mount unit for discographer, revision 6...
[    3.738741] systemd[1]: Mounting Mount unit for discographer, revision 8...
[    3.740039] systemd[1]: Mounting Mount unit for gnome-3-28-1804, revision 116...
[    3.741554] systemd[1]: Mounting Mount unit for gnome-3-28-1804, revision 128...
[    3.742616] systemd[1]: Mounting Mount unit for gnome-3-34-1804, revision 33...
[    3.743565] systemd[1]: Mounting Mount unit for gnome-3-34-1804, revision 36...
[    3.744899] systemd[1]: Mounting Mount unit for gnome-system-monitor, revision 145...
[    3.746599] systemd[1]: Mounting Mount unit for gnome-system-monitor, revision 148...
[    3.748459] systemd[1]: Mounting Mount unit for gtk-common-themes, revision 1502...
[    3.749565] systemd[1]: Mounting Mount unit for gtk-common-themes, revision 1506...
[    3.751173] systemd[1]: Mounting Mount unit for phpstorm, revision 175...
[    3.752080] systemd[1]: Mounting Mount unit for phpstorm, revision 178...
[    3.753478] systemd[1]: Mounting Mount unit for ramboxpro, revision 20...
[    3.754505] systemd[1]: Mounting Mount unit for speedy-duplicate-finder, revision 27...
[    3.755521] systemd[1]: Mounting Mount unit for speedy-duplicate-finder, revision 28...
[    3.756810] systemd[1]: Mounting Mount unit for wine-platform-3-stable, revision 6...
[    3.758348] systemd[1]: Mounting Mount unit for wine-platform-runtime, revision 136...
[    3.759294] systemd[1]: Mounting Mount unit for wine-platform-runtime, revision 145...
[    3.760345] systemd[1]: Mounting Mount unit for youtube-dl, revision 2840...
[    3.762404] systemd[1]: Mounting Mount unit for youtube-dl, revision 2846...
[    3.763165] systemd[1]: Started Journal Service.
[    3.764601] Adding 2097148k swap on /swapfile.  Priority:-2 extents:6 across:2260988k SSFS
[    3.773537] systemd-journald[306]: Received client request to flush runtime journal.
[    4.111871] cfg80211: Loading compiled-in X.509 certificates for regulatory database
[    4.114445] cfg80211: Loaded X.509 cert 'sforshee: 00b28ddf47aef9cea7'
[    4.165132] dcdbas dcdbas: Dell Systems Management Base Driver (version 5.6.0-3.3)
[    4.176620] input: Dell WMI hotkeys as /devices/platform/PNP0C14:00/wmi_bus/wmi_bus-PNP0C14:00/9DBB5994-A997-11DA-B012-B622A1EF5492/input/input8
[    4.178860] checking generic (c0000000 7f0000) vs hw (c0000000 10000000)
[    4.178862] fb0: switching to inteldrmfb from VESA VGA
[    4.178958] Console: switching to colour dummy device 80x25
[    4.179008] i915 0000:00:02.0: vgaarb: deactivate vga console
[    4.179843] [drm] Supports vblank timestamp caching Rev 2 (21.10.2013).
[    4.179844] [drm] Driver supports precise vblank timestamp query.
[    4.182120] i915 0000:00:02.0: vgaarb: changed VGA decodes: olddecodes=io+mem,decodes=none:owns=io+mem
[    4.195267] RAPL PMU: API unit is 2^-32 Joules, 3 fixed counters, 163840 ms ovfl timer
[    4.195269] RAPL PMU: hw unit of domain pp0-core 2^-16 Joules
[    4.195270] RAPL PMU: hw unit of domain package 2^-16 Joules
[    4.195270] RAPL PMU: hw unit of domain pp1-gpu 2^-16 Joules
[    4.198055] ath: phy0: Killer Wireless card detected
[    4.200421] cryptd: max_cpu_qlen set to 1000
[    4.204472] ACPI Warning: \_SB.PCI0.GFX0._DSM: Argument #4 type mismatch - Found [Buffer], ACPI requires [Package] (20190816/nsarguments-59)
[    4.204577] ACPI Warning: \_SB.PCI0.PEG0.PEGP._DSM: Argument #4 type mismatch - Found [Buffer], ACPI requires [Package] (20190816/nsarguments-59)
[    4.204960] pci 0000:01:00.0: optimus capabilities: enabled, status dynamic power, hda bios codec supported
[    4.204967] VGA switcheroo: detected Optimus DSM method \_SB_.PCI0.PEG0.PEGP handle
[    4.204994] nouveau 0000:01:00.0: enabling device (0006 -> 0007)
[    4.205178] nouveau 0000:01:00.0: NVIDIA GK104 (0e4200a2)
[    4.207641] AVX version of gcm_enc/dec engaged.
[    4.207642] AES CTR mode by8 optimization enabled
[    4.213087] [drm] LVDS was detected, not registering eDP
[    4.218242] ath: phy0: ASPM enabled: 0x43
[    4.218245] ath: EEPROM regdomain: 0x60
[    4.218245] ath: EEPROM indicates we should expect a direct regpair map
[    4.218247] ath: Country alpha2 being used: 00
[    4.218248] ath: Regpair used: 0x60
[    4.218899] ieee80211 phy0: Selected rate control algorithm 'minstrel_ht'
[    4.219363] ieee80211 phy0: Atheros AR9300 Rev:3 mem=0xffffbe42c08e0000, irq=18
[    4.259118] [drm] Initialized i915 1.6.0 20190822 for 0000:00:02.0 on minor 0
[    4.259240] [Firmware Bug]: ACPI(PEGP) defines _DOD but not _DOS
[    4.259625] ACPI: Video Device [PEGP] (multi-head: yes  rom: yes  post: no)
[    4.259976] input: Video Bus as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:3c/LNXVIDEO:00/input/input9
[    4.263577] ACPI: Video Device [GFX0] (multi-head: yes  rom: no  post: no)
[    4.263825] input: Video Bus as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/LNXVIDEO:01/input/input10
[    4.276986] ACPI Error: Field [VBS1] Base+Offset+Width 4+0+4 is beyond end of region [VBOR] (length 4) (20190816/exfldio-163)
[    4.276996] 
               Initialized Local Variables for Method [_ROM]:
[    4.276997]   Local0: 00000000d0e8c63e <Obj>           Integer 0000000000000000
[    4.277002]   Local1: 00000000b553fa4a <Obj>           Integer 0000000000000000
[    4.277005]   Local2: 000000006e39958a <Obj>           Integer 0000000000001000
[    4.277010] Initialized Arguments for Method [_ROM]:  (2 arguments defined for method invocation)
[    4.277011]   Arg0:   000000003e162976 <Obj>           Integer 0000000000000000
[    4.277014]   Arg1:   00000000f5baed97 <Obj>           Integer 0000000000001000
[    4.277018] ACPI Error: Aborting method \_SB.PCI0.PEG0.PEGP._ROM due to previous error (AE_AML_REGION_LIMIT) (20190816/psparse-529)
[    4.277029] failed to evaluate ROM got AE_AML_REGION_LIMIT
[    4.277198] nouveau 0000:01:00.0: bios: version 80.04.33.00.32
[    4.279853] fbcon: i915drmfb (fb0) is primary device
[    4.279921] Console: switching to colour frame buffer device 240x67
[    4.279943] i915 0000:00:02.0: fb0: i915drmfb frame buffer device
[    4.281839] nouveau 0000:01:00.0: mxm: BIOS version 3.0
[    4.351042] snd_hda_intel 0000:01:00.1: Disabling MSI
[    4.351049] snd_hda_intel 0000:01:00.1: Handle vga_switcheroo audio client
[    4.538446] nouveau 0000:01:00.0: fb: 2048 MiB GDDR5
[    4.584720] ath9k 0000:08:00.0 wlp8s0: renamed from wlan0
[    4.602930] vga_switcheroo: enabled
[    4.602990] [TTM] Zone  kernel: Available graphics memory: 12255032 KiB
[    4.602991] [TTM] Zone   dma32: Available graphics memory: 2097152 KiB
[    4.602992] [TTM] Initializing pool allocator
[    4.602997] [TTM] Initializing DMA pool allocator
[    4.603010] nouveau 0000:01:00.0: DRM: VRAM: 2048 MiB
[    4.603011] nouveau 0000:01:00.0: DRM: GART: 1048576 MiB
[    4.603014] nouveau 0000:01:00.0: DRM: TMDS table version 2.0
[    4.603015] nouveau 0000:01:00.0: DRM: DCB version 4.0
[    4.603016] nouveau 0000:01:00.0: DRM: DCB outp 03: 08015fd6 0f420020
[    4.603017] nouveau 0000:01:00.0: DRM: DCB outp 04: 08015f92 00020020
[    4.603019] nouveau 0000:01:00.0: DRM: DCB conn 00: 00000040
[    4.603019] nouveau 0000:01:00.0: DRM: DCB conn 01: 00001161
[    4.603020] nouveau 0000:01:00.0: DRM: DCB conn 02: 00001231
[    4.603021] nouveau 0000:01:00.0: DRM: DCB conn 03: 01000331
[    4.603021] nouveau 0000:01:00.0: DRM: DCB conn 04: 01000446
[    4.603022] nouveau 0000:01:00.0: DRM: DCB conn 05: 02000546
[    4.603023] nouveau 0000:01:00.0: DRM: DCB conn 06: 00010631
[    4.603023] nouveau 0000:01:00.0: DRM: DCB conn 07: 00010746
[    4.603024] nouveau 0000:01:00.0: DRM: DCB conn 08: 00020846
[    4.603025] nouveau 0000:01:00.0: DRM: DCB conn 09: 00000900
[    4.604740] nouveau 0000:01:00.0: DRM: MM: using COPY for buffer copies
[    4.625175] [drm] Supports vblank timestamp caching Rev 2 (21.10.2013).
[    4.625177] [drm] Driver supports precise vblank timestamp query.
[    4.633248] intel_rapl_common: Found RAPL domain package
[    4.633250] intel_rapl_common: Found RAPL domain core
[    4.633251] intel_rapl_common: Found RAPL domain uncore
[    4.633256] intel_rapl_common: RAPL package-0 domain package locked by BIOS
[    4.688554] [drm] Cannot find any crtc or sizes
[    4.689942] [drm] Initialized nouveau 1.3.1 20120801 for 0000:01:00.0 on minor 1
[    4.752536] [drm] Cannot find any crtc or sizes
[    4.928683] EXT4-fs (sdb2): mounted filesystem with ordered data mode. Opts: (null)
[    4.989454] input: HDA NVidia HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:01.0/0000:01:00.1/sound/card1/input11
[    5.196639] snd_hda_intel 0000:00:1b.0: bound 0000:00:02.0 (ops i915_audio_component_bind_ops [i915])
[    5.218181] snd_hda_codec_ca0132 hdaudioC0D0: autoconfig for CA0132: line_outs=1 (0xb/0x0/0x0/0x0/0x0) type:speaker
[    5.218183] snd_hda_codec_ca0132 hdaudioC0D0:    speaker_outs=0 (0x0/0x0/0x0/0x0/0x0)
[    5.218184] snd_hda_codec_ca0132 hdaudioC0D0:    hp_outs=1 (0x10/0x0/0x0/0x0/0x0)
[    5.218185] snd_hda_codec_ca0132 hdaudioC0D0:    mono: mono_out=0x0
[    5.218185] snd_hda_codec_ca0132 hdaudioC0D0:    dig-out=0xc/0x0
[    5.218186] snd_hda_codec_ca0132 hdaudioC0D0:    inputs:
[    5.218187] snd_hda_codec_ca0132 hdaudioC0D0:      Mic=0x12
[    5.218188] snd_hda_codec_ca0132 hdaudioC0D0:      Line=0x11
[    5.218189] snd_hda_codec_ca0132 hdaudioC0D0:    dig-in=0xe
[    5.393452] audit: type=1400 audit(1600612258.128:2): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/sbin/cups-browsed" pid=1172 comm="apparmor_parser"
[    5.394065] audit: type=1400 audit(1600612258.128:3): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/sbin/tcpdump" pid=1164 comm="apparmor_parser"
[    5.394132] audit: type=1400 audit(1600612258.128:4): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/snapd/snap-confine" pid=1170 comm="apparmor_parser"
[    5.394135] audit: type=1400 audit(1600612258.128:5): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/snapd/snap-confine//mount-namespace-capture-helper" pid=1170 comm="apparmor_parser"
[    5.395712] audit: type=1400 audit(1600612258.128:6): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/bin/man" pid=1161 comm="apparmor_parser"
[    5.395715] audit: type=1400 audit(1600612258.128:7): apparmor="STATUS" operation="profile_load" profile="unconfined" name="man_filter" pid=1161 comm="apparmor_parser"
[    5.395717] audit: type=1400 audit(1600612258.128:8): apparmor="STATUS" operation="profile_load" profile="unconfined" name="man_groff" pid=1161 comm="apparmor_parser"
[    5.400353] audit: type=1400 audit(1600612258.132:9): apparmor="STATUS" operation="profile_load" profile="unconfined" name="lsb_release" pid=1168 comm="apparmor_parser"
[    5.402384] audit: type=1400 audit(1600612258.136:10): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/sbin/mysqld" pid=1178 comm="apparmor_parser"
[    5.404562] audit: type=1400 audit(1600612258.140:11): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/cups/backend/cups-pdf" pid=1166 comm="apparmor_parser"
[    5.837925] snd_hda_codec_ca0132 hdaudioC0D0: ca0132 DSP downloaded and running
[    5.914975] input: HDA Intel PCH Front Line Out as /devices/pci0000:00/0000:00:1b.0/sound/card0/input12
[    5.915041] input: HDA Intel PCH Line Out as /devices/pci0000:00/0000:00:1b.0/sound/card0/input13
[    5.915094] input: HDA Intel PCH Front Headphone as /devices/pci0000:00/0000:00:1b.0/sound/card0/input14
[    5.915152] input: HDA Intel PCH HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:1b.0/sound/card0/input15
[    5.915226] input: HDA Intel PCH HDMI/DP,pcm=7 as /devices/pci0000:00/0000:00:1b.0/sound/card0/input16
[    5.915288] input: HDA Intel PCH HDMI/DP,pcm=8 as /devices/pci0000:00/0000:00:1b.0/sound/card0/input17
[    5.997237] mc: Linux media interface: v0.10
[    6.072030] videodev: Linux video capture interface: v2.00
[    6.170727] Bluetooth: Core ver 2.22
[    6.170749] NET: Registered protocol family 31
[    6.170749] Bluetooth: HCI device and connection manager initialized
[    6.170753] Bluetooth: HCI socket layer initialized
[    6.170755] Bluetooth: L2CAP socket layer initialized
[    6.170757] Bluetooth: SCO socket layer initialized
[    6.206196] usbcore: registered new interface driver btusb
[    6.221059] aufs 5.4.3-20200302
[    6.221097] uvcvideo: Found UVC 1.00 device Laptop_Integrated_Webcam_FHD (064e:8127)
[    6.272443] Bluetooth: BNEP (Ethernet Emulation) ver 1.3
[    6.272444] Bluetooth: BNEP filters: protocol multicast
[    6.272448] Bluetooth: BNEP socket layer initialized
[    6.280117] NET: Registered protocol family 38
[    6.363004] uvcvideo: No streaming interface found for terminal 9.
[    6.363009] uvcvideo 1-1.5:1.0: Entity type for entity Extension 4 was not initialized!
[    6.363011] uvcvideo 1-1.5:1.0: Entity type for entity Extension 3 was not initialized!
[    6.363013] uvcvideo 1-1.5:1.0: Entity type for entity Processing 2 was not initialized!
[    6.363015] uvcvideo 1-1.5:1.0: Entity type for entity Camera 1 was not initialized!
[    6.363107] input: Laptop_Integrated_Webcam_FHD: I as /devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.5/1-1.5:1.0/input/input18
[    6.363245] usbcore: registered new interface driver uvcvideo
[    6.363246] USB Video Class driver (1.1.1)
[    8.435393] rfkill: input handler disabled
[   10.062472] wlp8s0: authenticate with 6c:99:61:c7:06:34
[   10.073710] wlp8s0: send auth to 6c:99:61:c7:06:34 (try 1/3)
[   10.075047] wlp8s0: authenticated
[   10.080625] wlp8s0: associate with 6c:99:61:c7:06:34 (try 1/3)
[   10.083860] wlp8s0: RX AssocResp from 6c:99:61:c7:06:34 (capab=0x511 status=0 aid=65)
[   10.084002] wlp8s0: associated
[   10.084099] ath: EEPROM regdomain: 0x80fa
[   10.084100] ath: EEPROM indicates we should expect a country code
[   10.084100] ath: doing EEPROM country->regdmn map search
[   10.084101] ath: country maps to regdmn code: 0x37
[   10.084102] ath: Country alpha2 being used: FR
[   10.084102] ath: Regpair used: 0x37
[   10.084103] ath: regdomain 0x80fa dynamically updated by country element
[   10.125842] wlp8s0: Limiting TX power to 23 (23 - 0) dBm as advertised by 6c:99:61:c7:06:34
[   10.213616] IPv6: ADDRCONF(NETDEV_CHANGE): wlp8s0: link becomes ready
[   12.464858] kauditd_printk_skb: 36 callbacks suppressed
[   12.464859] audit: type=1400 audit(1600612265.200:48): apparmor="STATUS" operation="profile_load" profile="unconfined" name="docker-default" pid=2136 comm="apparmor_parser"
[   12.652643] bridge: filtering via arp/ip/ip6tables is no longer available by default. Update your scripts to load br_netfilter if you need this.
[   12.654346] Bridge firewalling registered
[   12.660258] bpfilter: Loaded bpfilter_umh pid 2144
[   12.660775] Started bpfilter
[   12.752017] Initializing XFRM netlink socket
[   13.396088] rfkill: input handler enabled
[   15.751529] rfkill: input handler disabled
divano@divano-M17xR4:~$ 

Je reviendrai vers vous pour vous tenir informé au fil du temps si besoin ;-)

Au fait, au final, est-ce que j'ai besoin d'augmenter l'espace disque de ma partition " /dev/sdb1/ " ?

Merci pour votre aide big_smile

Dernière modification par divano62 (Le 20/09/2020, à 15:37)

Hors ligne

#15 Le 20/09/2020, à 16:05

geole

Re : Upgrade de Ubuntu 18.04 à 20.04 - Etendre partition de boot

Tu ne devrais pas avoir besoin d agrandir SDB1  sauf si tu installes des logiciels de gestion mathématique ou pas mal de snap qui sont assez gourmands en place disque
Pour un suivi

df   -h  | egrep   -v "loop|tmpfs|udev"

Les grilles de l'installateur https://doc.ubuntu-fr.org/tutoriel/inst … _subiquity
"gedit admin:///etc/fstab" est proscrit,  utilisez "pkexec env DISPLAY=$DISPLAY XAUTHORITY=$XAUTHORITY xdg-open /etc/fstab" Voir  https://doc.ubuntu-fr.org/gedit
Les partitions EXT4 des disques externes => https://forum.ubuntu-fr.org/viewtopic.p … #p22697248

Hors ligne

#16 Le 20/09/2020, à 16:17

divano62

Re : Upgrade de Ubuntu 18.04 à 20.04 - Etendre partition de boot

Non pas du tout, je ne suis pas un "matheux" lol

Et pour snap, je pense que ça serait dans le cas où je n'aurai vraiment pas le choix.

J'utilise les dépôts de manière standard Ubuntu ;-)

En tout cas, un grand merci à toi geole wink, à iznobe wink et à Qid wink pour votre aide !!!

Et merci pour la petite commande de suivi tongue

Hors ligne