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.

#26 Le 16/07/2026, à 21:18

Lami

Re : [Résolu] Nouvel ordinateur multidisque sans utiliser les UUID

Est-il possible de simplement réinstaller grub, est-ce qu'il récupérera les deux modifications ou est-ce qu'il écrasera tout ?

Mon protocole, mais avec vos correctifs ???

Cordialement,

Dernière modification par Lami (Le 16/07/2026, à 21:19)


L'ami René
Tous pour un et un pour tous !
Linux Kubuntu 26.04

Hors ligne

#27 Le 16/07/2026, à 21:41

Lami

Re : [Résolu] Nouvel ordinateur multidisque sans utiliser les UUID

Mais j'y pense, mais pourquoi l'installation et le redémarrage se passe bien et que c'est quand je fais le passage aux étiquettes, que cela dérappe ?

Si mon protocole n'est pas bon, il est bon, l'installation est réussie, temps que je ne touche pas aux étiquettes ?!?

Cordialement,

Dernière modification par Lami (Le 16/07/2026, à 21:42)


L'ami René
Tous pour un et un pour tous !
Linux Kubuntu 26.04

Hors ligne

#28 Le 16/07/2026, à 23:33

geole

Re : [Résolu] Nouvel ordinateur multidisque sans utiliser les UUID

Bonsoir.

Lami a écrit :

  Et redémarrage du système, mais évidemment, ça ne démarre plus.

En absence de message d’erreur fourni, il n’est pas facile de donner une piste.

Dernière modification par geole (Le 17/07/2026, à 08:27)


Les écrans de l'installateur 26.04 https://doc.ubuntu-fr.org/tutoriel/inst … _subiquity

Les partitions EXT4 des disques externes => https://forum.ubuntu-fr.org/viewtopic.p … #p22697248

Hors ligne

#29 Le 17/07/2026, à 01:07

Lami

Re : [Résolu] Nouvel ordinateur multidisque sans utiliser les UUID

Bonsoir,

Voici le début du message :

You are in emergency mode. After logging in, type "journalctl -xb" to view... 

Voici le contenu du fichiers « journalctl » que j'ai trouvé sur la partition « 0Sa2To-syst » :

# shellcheck shell=bash
# journalctl(1) completion                                -*- shell-script -*-
# SPDX-License-Identifier: LGPL-2.1-or-later
#
# This file is part of systemd.
#
# Copyright © 2010 Ran Benita
#
# systemd is free software; you can redistribute it and/or modify it
# under the terms of the GNU Lesser General Public License as published by
# the Free Software Foundation; either version 2.1 of the License, or
# (at your option) any later version.
#
# systemd is distributed in the hope that it will be useful, but
# WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
# General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public License
# along with systemd; If not, see <https://www.gnu.org/licenses/>.

__contains_word () {
    local w word=$1; shift
    for w in "$@"; do
        [[ $w = "$word" ]] && return
    done
}

__get_machines() {
    local a b
    { machinectl list --full --max-addresses=0 --no-legend --no-pager 2>/dev/null; echo ".host"; } |
        { while read -r a b; do echo " $a"; done; } |
        sort -u
}

__syslog_priorities=(emerg alert crit err warning notice info debug)
__syslog_facilities=(kern user mail daemon auth syslog lpr news uucp cron authpriv ftp local0 local1 local2 local3 local4 local5 local6 local7)

_journalctl() {
    local field_vals= cur=${COMP_WORDS[COMP_CWORD]} prev=${COMP_WORDS[COMP_CWORD-1]}
    local -A OPTS=(
        [STANDALONE]='-a --all --full --system --user
                      --disk-usage -f --follow --header
                      -h --help -l --local -m --merge --no-pager
                      --no-tail -q --quiet --setup-keys --verify
                      --version --list-catalog --update-catalog --list-boots
                      --show-cursor --dmesg -k --pager-end -e -r --reverse
                      --utc -x --catalog --no-full --force --dump-catalog
                      --flush --rotate --sync --relinquish-var
                      --smart-relinquish-var --no-hostname -W -N --fields
                      --list-namespaces --list-invocations -I -v --verbose'
        [ARG]='-b --boot -D --directory -i --file -F --field -t --identifier
                      -T --exclude-identifier --facility -M --machine -o --output
                      -u --unit --user-unit -p --priority --root --case-sensitive
                      --namespace --invocation'
        [ARGUNKNOWN]='-c --cursor --interval -n --lines -S --since -U --until
                      --after-cursor --cursor-file --verify-key -g --grep
                      --vacuum-size --vacuum-time --vacuum-files --output-fields'
    )

    # Use the default completion for shell redirect operators
    if __contains_word "$prev" '>' '>>' '&>'; then
        compopt -o filenames
        COMPREPLY=( $(compgen -f -- "$cur") )
        return 0
    fi

    if __contains_word "$prev" ${OPTS[ARG]} ${OPTS[ARGUNKNOWN]}; then
        case $prev in
            --boot|-b)
                comps=$(journalctl -F '_BOOT_ID' 2>/dev/null)
                ;;
            --directory|-D|--root)
                comps=$(compgen -d -- "$cur")
                compopt -o filenames
                ;;
            --file|-i)
                comps=$(compgen -f -- "$cur")
                compopt -o filenames
                ;;
            --output|-o)
                comps=$( journalctl --output=help 2>/dev/null )
                ;;
            --field|-F)
                comps=$(journalctl --fields 2>/dev/null | sort)
                ;;
            --machine|-M)
                comps=$( __get_machines )
                ;;
            --facility)
                comps=${__syslog_facilities[*]}
                ;;
            --priority|-p)
                comps=${__syslog_priorities[*]}
                compopt -o nosort
                ;;
            --unit|-u)
                if __contains_word "--user" ${COMP_WORDS[*]}; then
                    comps=$(journalctl -F '_SYSTEMD_USER_UNIT' 2>/dev/null)
                else
                    comps=$(journalctl -F '_SYSTEMD_UNIT' 2>/dev/null)
                fi
                # Similarly to systemctl, we need to distinguish between
                # escaped and unescaped names in order to be able to correctly
                # complete them. In this particular case, if the name we're
                # trying to complete is unescaped (i.e. foo\x2dbaz), escape
                # it first, so the compgen below works as expected. For more
                # information about these shenanigans see the systemctl
                # completion file
                if ! [[ $cur =~ '\\' ]]; then
                    cur="$(printf '%q' $cur)"
                fi
                compopt -o filenames
                ;;
            --user-unit)
                comps=$(journalctl -F '_SYSTEMD_USER_UNIT' 2>/dev/null)
                if ! [[ $cur =~ '\\' ]]; then
                    cur="$(printf '%q' $cur)"
                fi
                compopt -o filenames
                ;;
            --identifier|-t|--exclude-identifier|-T)
                comps=$(journalctl -F 'SYSLOG_IDENTIFIER' 2>/dev/null)
                ;;
            --case-sensitive)
                comps='yes no'
                ;;
            --namespace)
                comps=$(journalctl --list-namespaces --output=cat 2>/dev/null)
                ;;
            *)
                return 0
                ;;
        esac
        COMPREPLY=( $(compgen -o filenames -W '$comps' -- "$cur") )
        return 0
    fi

    if [[ $cur = -* ]]; then
        COMPREPLY=( $(compgen -W '${OPTS[*]}' -- "$cur") )
        return 0
    elif [[ $cur = *=* ]]; then
        mapfile -t field_vals < <(journalctl -F "${prev%=}" 2>/dev/null)
        COMPREPLY=( $(compgen -W '${field_vals[*]}' -- "${cur#=}") )
    elif [[ $cur = /dev* ]]; then
        compopt -o filenames
        COMPREPLY=( $(compgen -f -- "${cur}") )
    elif [[ $cur = /* ]]; then
        # Append /dev/ to the list of completions, so that
        # after typing /<TAB><TAB> the user sees /dev/ as one
        # of the alternatives. Later on the rule above will
        # take care of showing device files in /dev/.
        mapfile -t field_vals < <(journalctl -F "_EXE" 2>/dev/null; echo '/dev/')
        COMPREPLY=( $(compgen -W '${field_vals[*]}' -- "${cur}") )
        if [[ "${COMPREPLY[@]}" = '/dev/' ]]; then
            compopt -o filenames
            COMPREPLY=( $(compgen -f -- "${cur}") )
        fi
    elif [[ $prev = '=' ]]; then
        mapfile -t field_vals < <(journalctl -F "${COMP_WORDS[COMP_CWORD-2]}" 2>/dev/null)
        COMPREPLY=( $(compgen -W '${field_vals[*]}' -- "$cur") )
    else
        mapfile -t field_vals < <(journalctl --fields 2>/dev/null)
        compopt -o nospace
        COMPREPLY=( $(compgen -W '${field_vals[*]}' -S= -- "$cur") )
    fi
}

complete -F _journalctl journalctl

Je laisse l'ordinateur ouvert en clé USB Live, si vous voulez d'autre fichier ?

Cordialement,

Dernière modification par Lami (Le 17/07/2026, à 01:08)


L'ami René
Tous pour un et un pour tous !
Linux Kubuntu 26.04

Hors ligne

#30 Le 17/07/2026, à 08:31

geole

Re : [Résolu] Nouvel ordinateur multidisque sans utiliser les UUID

You are in emergency mode. After logging in, type "journalctl -xb" to view...

Du grand classique. Obéis à l’injonction ou plutôt frappe cette commande qui est suffisante dans 99% des cas.

journalctl -b  -p err

Et regarde dans les lignes rouges les pistes possibles de plantage.
  Il te faudra certainement frapper Ctrl d pour pouvoir frapper la commande.

Ajout. Ce que tu as fournis en live-usb n’a rien à voir avec un journal.
En live-usb, il faut.
1) Monter la partition contenant le logiciel à inspecter. Par exemple

sudo mount /dev/disk/by-label/0Sa2To-syst   /mnt

2) Lancer la commande en indiquant le point de montage du journal. Par exemple.

journalctl  -D /mnt/var/log/journal  --no-pager -b -p err

Dernière modification par geole (Le 17/07/2026, à 09:06)


Les écrans de l'installateur 26.04 https://doc.ubuntu-fr.org/tutoriel/inst … _subiquity

Les partitions EXT4 des disques externes => https://forum.ubuntu-fr.org/viewtopic.p … #p22697248

Hors ligne

#31 Le 17/07/2026, à 14:29

Lami

Re : [Résolu] Nouvel ordinateur multidisque sans utiliser les UUID

Bonjour geole,

Merci pour votre aide !

Voici les résulta de ces dernière commande :

kubuntu@kubuntu:~$ journalctl  -D /mnt/var/log/journal  --no-pager -b -p err
jui 17 09:41:58 Ordinateur01 systemd-udevd[535]: /usr/lib/udev/rules.d/60-i2c-tools.rules:1 Failed to resolve group 'i2c', ignoring: Unknown group
jui 17 09:41:58 Ordinateur01 kernel: snd_hda_intel 0000:00:1f.3: no codecs found!
jui 17 09:41:58 Ordinateur01 kernel: nouveau 0000:01:00.0: drm: failed to create ce channel, -22
kubuntu@kubuntu:~$ journalctl -b  -p err
jui 17 10:03:18 kubuntu org_kde_powerdevil[5627]: [  5627] Error(s) opening ddc devices
jui 17 10:03:18 kubuntu org_kde_powerdevil[5627]: [  5627] Error EACCES(-13): Permission denied opening /dev/>
jui 17 10:03:18 kubuntu org_kde_powerdevil[5627]: [  5627] Error EACCES(-13): Permission denied opening /dev/>
jui 17 10:03:18 kubuntu org_kde_powerdevil[5627]: [  5627] Error EACCES(-13): Permission denied opening /dev/>
jui 17 10:03:18 kubuntu org_kde_powerdevil[5627]: [  5627] Error EACCES(-13): Permission denied opening /dev/>
jui 17 10:03:18 kubuntu org_kde_powerdevil[5627]: [  5627] Error EACCES(-13): Permission denied opening /dev/>
jui 17 10:03:18 kubuntu org_kde_powerdevil[5627]: [  5627] Error EACCES(-13): Permission denied opening /dev/>
jui 17 10:03:18 kubuntu org_kde_powerdevil[5627]: [  5627] Error EACCES(-13): Permission denied opening /dev/>
jui 17 10:03:18 kubuntu org_kde_powerdevil[5627]: [  5627] Error EACCES(-13): Permission denied opening /dev/>
jui 17 10:03:18 kubuntu org_kde_powerdevil[5627]: [  5627] Error EACCES(-13): Permission denied opening /dev/>
jui 17 10:03:18 kubuntu org_kde_powerdevil[5627]: [  5627] Error EACCES(-13): Permission denied opening /dev/>
jui 17 10:03:23 kubuntu obexd[6041]: Unable to acquire registry: Error calling StartServiceByName for org.gno>
jui 17 10:03:23 kubuntu obexd[6041]: Unable to acquire registry: Error calling StartServiceByName for org.gno>
jui 17 12:21:26 kubuntu kernel: sd 12:0:0:0: [sdb] Asking for cache data failed
lines 1-14/14 (END)

Cordialement,


L'ami René
Tous pour un et un pour tous !
Linux Kubuntu 26.04

Hors ligne

#32 Le 17/07/2026, à 15:18

geole

Re : [Résolu] Nouvel ordinateur multidisque sans utiliser les UUID

Lami a écrit :

Voici les résultat de ces dernière commande :

kubuntu@kubuntu:~$ journalctl  -D /mnt/var/log/journal  --no-pager -b -p err
jui 17 09:41:58 Ordinateur01 systemd-udevd[535]: /usr/lib/udev/rules.d/60-i2c-tools.rules:1 Failed to resolve group 'i2c', ignoring: Unknown group
jui 17 09:41:58 Ordinateur01 kernel: snd_hda_intel 0000:00:1f.3: no codecs found!
jui 17 09:41:58 Ordinateur01 kernel: nouveau 0000:01:00.0: drm: failed to create ce channel, -22

Cordialement,

Je ne pense pas que la premiere erreur soit grave.
Pas d’idée pour les deux autres.

As-tu tenté un boot en mode recovery?
   Si oui, as-tu vu la grille de choix des actions de recovery?
      Si oui, essaie d’abord resume


Les écrans de l'installateur 26.04 https://doc.ubuntu-fr.org/tutoriel/inst … _subiquity

Les partitions EXT4 des disques externes => https://forum.ubuntu-fr.org/viewtopic.p … #p22697248

Hors ligne

#33 Le 17/07/2026, à 15:39

Lami

Re : [Résolu] Nouvel ordinateur multidisque sans utiliser les UUID

Bonjour geole,

Merci pour la sérénité que m'apportent tes aides !

Je viens d'essayer et je n'ai pas accès au menu grub, je tombe directement dans le « Minimal BASH-like line is supported. ...».

Cordialement,


L'ami René
Tous pour un et un pour tous !
Linux Kubuntu 26.04

Hors ligne

#34 Le 17/07/2026, à 16:47

geole

Re : [Résolu] Nouvel ordinateur multidisque sans utiliser les UUID

On  va regarder le contenu de la partie EFI.
1) Avec le support d’installation , choisis  "essayer avant d’installer"
2) Monte la structure de boot EFI. Rectifie si je me trompe dans son nom.

sudo mount /dev/disk/by-label/0Sa2To-BOOT   /mnt

3) Liste le contenu

sudo ls -rtl /mnt

Donne le contenu du fichier de paramétrage du grub EFI.  Rectifie si je me trompe dans son nom.

cat /mnt/EFI/ubuntu/grub.cfg

Puis donne aussi le contenu de la NVRAM

efibootmgr

et publie l intégralité de la fin de la trace

sudo umount /mnt
sudo mount /dev/disk/by-label/0Sa2To-syst   /mnt
journalctl  -D /mnt/var/log/journal  --no-pager -bx -n 500

Dernière modification par geole (Le 17/07/2026, à 16:52)


Les écrans de l'installateur 26.04 https://doc.ubuntu-fr.org/tutoriel/inst … _subiquity

Les partitions EXT4 des disques externes => https://forum.ubuntu-fr.org/viewtopic.p … #p22697248

Hors ligne

#35 Le 17/07/2026, à 17:41

Lami

Re : [Résolu] Nouvel ordinateur multidisque sans utiliser les UUID

Merci geole de me faire progresser !

C'est super ce truc des dossiers, je ne connaissais pas « /dev/disk/... » !

kubuntu@kubuntu:~$ sudo mount /dev/disk/by-label/0Sa2To-BOOT   /mnt
mount: /mnt: special device /dev/disk/by-label/0Sa2To-BOOT does not exist.
       dmesg(1) may have more information after failed mount system call.
kubuntu@kubuntu:~$ sudo mount /dev/disk/by-label/0Sa2To-boot   /mnt
kubuntu@kubuntu:~$ sudo ls -rtl /mnt
total 4
drwxr-xr-x 4 root root 4096 Jul 13 14:35 EFI
kubuntu@kubuntu:~$ cat /mnt/EFI/ubuntu/grub.cfg
cat: /mnt/EFI/ubuntu/grub.cfg: No such file or directory
kubuntu@kubuntu:~$ efibootmgr
BootCurrent: 0005
Timeout: 1 seconds
BootOrder: 0004,0005
Boot0004* debian        HD(1,MBR,0xf262b247,0x800,0x96000)/\EFI\DEBIAN\SHIMX64.EFI0000424f
Boot0005* UEFI: KingstonDataTraveler G3 PMAP, Partition 2       PciRoot(0x0)/Pci(0x14,0x0)/USB(8,0)/HD(2,GPT,c6acf484-c9b0-415b-91d9-9402cbea775e,0x96e56c,0x2838)0000424f
kubuntu@kubuntu:~$ sudo umount /mnt
kubuntu@kubuntu:~$ sudo mount /dev/disk/by-label/0Sa2To-syst   /mnt
kubuntu@kubuntu:~$ journalctl  -D /mnt/var/log/journal  --no-pager -bx -n 500
Failed to parse boot descriptor 'x'

Cordialement,


L'ami René
Tous pour un et un pour tous !
Linux Kubuntu 26.04

Hors ligne

#36 Le 17/07/2026, à 19:55

geole

Re : [Résolu] Nouvel ordinateur multidisque sans utiliser les UUID

J ai commis quelques erreurs.   On recommence
On  va regarder le contenu de la partie EFI.
1) Avec le support d’installation , choisis  "essayer avant d’installer"
2) Monte la structure de boot EFI. Rectifie si je me trompe dans son nom.

sudo mount /dev/disk/by-label/0Sa2To-boot   /mnt

3) Liste le contenu

sudo ls -Rtl /mnt

et publie l intégralité de la fin de la trace

sudo umount /mnt
sudo mount /dev/disk/by-label/0Sa2To-syst   /mnt
journalctl  -D /mnt/var/log/journal  --no-pager -xb -n 500

A priori,  ton installation UBUNTU serait  en mode LEGACY. car pas vu dans la commande efibootmgr
  Je ne serais pas disponible ce soir et certainement demain


Les écrans de l'installateur 26.04 https://doc.ubuntu-fr.org/tutoriel/inst … _subiquity

Les partitions EXT4 des disques externes => https://forum.ubuntu-fr.org/viewtopic.p … #p22697248

Hors ligne

#37 Le 17/07/2026, à 20:27

Lami

Re : [Résolu] Nouvel ordinateur multidisque sans utiliser les UUID

Bonsoir

OK, votre générosité n'est plus à démontrer !

Alors merci et à demain !

kubuntu@kubuntu:~$ sudo mount /dev/disk/by-label/0Sa2To-boot   /mnt
kubuntu@kubuntu:~$ sudo ls -Rtl /mnt
/mnt:
total 4
drwxr-xr-x 4 root root 4096 Jul 13 14:35 EFI

/mnt/EFI:
total 8
drwxr-xr-x 2 root root 4096 Jul 13 14:35 Debian
drwxr-xr-x 2 root root 4096 Jul 13 14:35 boot

/mnt/EFI/Debian:
total 4620
-rwxr-xr-x 1 root root 1036152 Jul 13 14:35 shimx64.efi
-rwxr-xr-x 1 root root 2684352 Jul 13 14:35 grubx64.efi
-rwxr-xr-x 1 root root  873904 Jul 13 14:35 mmx64.efi
-rwxr-xr-x 1 root root  118832 Jul 13 14:35 fbx64.efi
-rwxr-xr-x 1 root root     108 Jul 13 14:35 BOOTX64.CSV
-rwxr-xr-x 1 root root     117 Jul 13 14:35 grub.cfg

/mnt/EFI/boot:
total 2624
-rwxr-xr-x 1 root root 2684352 Jul 13 14:35 bootx64.efi
kubuntu@kubuntu:~$ sudo umount /mnt
kubuntu@kubuntu:~$ sudo mount /dev/disk/by-label/0Sa2To-syst   /mnt
kubuntu@kubuntu:~$ journalctl  -D /mnt/var/log/journal  --no-pager -xb -n 500
jui 17 09:41:58 Ordinateur01 kernel: ata8: SATA max UDMA/133 abar m2048@0x91202000 port 0x91202480 irq 156 lpm-pol 3
jui 17 09:41:58 Ordinateur01 kernel: intel-lpss 0000:00:15.1: enabling device (0004 -> 0006)
jui 17 09:41:58 Ordinateur01 kernel: ahci 0000:06:00.0: SSS flag set, parallel bus scan disabled
jui 17 09:41:58 Ordinateur01 kernel: ahci 0000:06:00.0: AHCI vers 0001.0200, 32 command slots, 6 Gbps, SATA mode
jui 17 09:41:58 Ordinateur01 kernel: ahci 0000:06:00.0: 2/2 ports implemented (port mask 0x3)
jui 17 09:41:58 Ordinateur01 kernel: ahci 0000:06:00.0: flags: 64bit ncq sntf stag led clo pmp pio slum part ccc
jui 17 09:41:58 Ordinateur01 kernel: idma64 idma64.1: Found Intel integrated DMA 64-bit
jui 17 09:41:58 Ordinateur01 kernel: scsi host8: ahci
jui 17 09:41:58 Ordinateur01 kernel: scsi host9: ahci
jui 17 09:41:58 Ordinateur01 kernel: ata9: SATA max UDMA/133 abar m512@0x90e00000 port 0x90e00100 irq 157 lpm-pol 3
jui 17 09:41:58 Ordinateur01 kernel: ata10: SATA max UDMA/133 abar m512@0x90e00000 port 0x90e00180 irq 157 lpm-pol 3
jui 17 09:41:58 Ordinateur01 kernel: nvme 0000:02:00.0: platform quirk: setting simple suspend
jui 17 09:41:58 Ordinateur01 kernel: nvme 0000:03:00.0: platform quirk: setting simple suspend
jui 17 09:41:58 Ordinateur01 kernel: nvme 0000:04:00.0: platform quirk: setting simple suspend
jui 17 09:41:58 Ordinateur01 kernel: nvme 0000:08:00.0: platform quirk: setting simple suspend
jui 17 09:41:58 Ordinateur01 kernel: nvme nvme0: pci function 0000:02:00.0
jui 17 09:41:58 Ordinateur01 kernel: nvme nvme1: pci function 0000:03:00.0
jui 17 09:41:58 Ordinateur01 kernel: nvme nvme2: pci function 0000:04:00.0
jui 17 09:41:58 Ordinateur01 kernel: nvme nvme3: pci function 0000:08:00.0
jui 17 09:41:58 Ordinateur01 kernel: nvme nvme0: missing or invalid SUBNQN field.
jui 17 09:41:58 Ordinateur01 kernel: intel-lpss 0000:00:15.2: enabling device (0004 -> 0006)
jui 17 09:41:58 Ordinateur01 kernel: nvme nvme0: D3 entry latency set to 10 seconds
jui 17 09:41:58 Ordinateur01 kernel: idma64 idma64.2: Found Intel integrated DMA 64-bit
jui 17 09:41:58 Ordinateur01 kernel: nvme nvme3: missing or invalid SUBNQN field.
jui 17 09:41:58 Ordinateur01 kernel: nvme nvme1: missing or invalid SUBNQN field.
jui 17 09:41:58 Ordinateur01 kernel: nvme nvme3: D3 entry latency set to 10 seconds
jui 17 09:41:58 Ordinateur01 kernel: nvme nvme1: D3 entry latency set to 10 seconds
jui 17 09:41:58 Ordinateur01 kernel: Intel(R) 2.5G Ethernet Linux Driver
jui 17 09:41:58 Ordinateur01 kernel: Copyright(c) 2018 Intel Corporation.
jui 17 09:41:58 Ordinateur01 kernel: igc 0000:07:00.0: PTM enabled, 4ns granularity
jui 17 09:41:58 Ordinateur01 kernel: nvme nvme2: missing or invalid SUBNQN field.
jui 17 09:41:58 Ordinateur01 kernel: nvme nvme2: D3 entry latency set to 10 seconds
jui 17 09:41:58 Ordinateur01 kernel: nvme nvme0: 20/0/0 default/read/poll queues
jui 17 09:41:58 Ordinateur01 kernel: nvme nvme3: 20/0/0 default/read/poll queues
jui 17 09:41:58 Ordinateur01 kernel: nvme nvme1: 20/0/0 default/read/poll queues
jui 17 09:41:58 Ordinateur01 kernel: nvme nvme2: 20/0/0 default/read/poll queues
jui 17 09:41:58 Ordinateur01 kernel:  nvme0n1: p1 p2 p3 p4
jui 17 09:41:58 Ordinateur01 kernel:  nvme3n1: p1 p2 p3 p4
jui 17 09:41:58 Ordinateur01 kernel:  nvme1n1: p1 p2 p3 p4
jui 17 09:41:58 Ordinateur01 kernel:  nvme2n1: p1 p2 p3 p4
jui 17 09:41:58 Ordinateur01 kernel: igc 0000:07:00.0 (unnamed net_device) (uninitialized): PHC added
jui 17 09:41:58 Ordinateur01 kernel: igc 0000:07:00.0: 4.000 Gb/s available PCIe bandwidth (5.0 GT/s PCIe x1 link)
jui 17 09:41:58 Ordinateur01 kernel: igc 0000:07:00.0 eth0: MAC: 58:11:22:06:69:54
jui 17 09:41:58 Ordinateur01 kernel: ata8: SATA link down (SStatus 4 SControl 300)
jui 17 09:41:58 Ordinateur01 kernel: ata9: SATA link down (SStatus 0 SControl 300)
jui 17 09:41:58 Ordinateur01 kernel: ata7: SATA link down (SStatus 4 SControl 300)
jui 17 09:41:58 Ordinateur01 kernel: ata5: SATA link down (SStatus 4 SControl 300)
jui 17 09:41:58 Ordinateur01 kernel: ata6: SATA link down (SStatus 4 SControl 300)
jui 17 09:41:58 Ordinateur01 kernel: ata10: SATA link down (SStatus 0 SControl 300)
jui 17 09:41:58 Ordinateur01 kernel: igc 0000:07:00.0 enp7s0: renamed from eth0
jui 17 09:41:58 Ordinateur01 kernel: usb 2-8: new SuperSpeed USB device number 2 using xhci_hcd
jui 17 09:41:58 Ordinateur01 kernel: usb 2-8: New USB device found, idVendor=174c, idProduct=3074, bcdDevice= 0.01
jui 17 09:41:58 Ordinateur01 kernel: usb 2-8: New USB device strings: Mfr=2, Product=3, SerialNumber=0
jui 17 09:41:58 Ordinateur01 kernel: usb 2-8: Product: ASM107x
jui 17 09:41:58 Ordinateur01 kernel: usb 2-8: Manufacturer: ASUS TEK.
jui 17 09:41:58 Ordinateur01 kernel: hub 2-8:1.0: USB hub found
jui 17 09:41:58 Ordinateur01 kernel: hub 2-8:1.0: 4 ports detected
jui 17 09:41:58 Ordinateur01 kernel: usb 1-2: New USB device found, idVendor=0b05, idProduct=1a16, bcdDevice= 0.03
jui 17 09:41:58 Ordinateur01 kernel: usb 1-2: New USB device strings: Mfr=3, Product=1, SerialNumber=0
jui 17 09:41:58 Ordinateur01 kernel: usb 1-2: Product: USB Audio
jui 17 09:41:58 Ordinateur01 kernel: usb 1-2: Manufacturer: Generic
jui 17 09:41:58 Ordinateur01 kernel: usb 1-4: new full-speed USB device number 3 using xhci_hcd
jui 17 09:41:58 Ordinateur01 kernel: usb 1-4: config 1 has an invalid interface number: 2 but max is 1
jui 17 09:41:58 Ordinateur01 kernel: usb 1-4: config 1 has no interface number 1
jui 17 09:41:58 Ordinateur01 kernel: usb 1-4: New USB device found, idVendor=0b05, idProduct=19af, bcdDevice= 1.00
jui 17 09:41:58 Ordinateur01 kernel: usb 1-4: New USB device strings: Mfr=1, Product=2, SerialNumber=3
jui 17 09:41:58 Ordinateur01 kernel: usb 1-4: Product: AURA LED Controller
jui 17 09:41:58 Ordinateur01 kernel: usb 1-4: Manufacturer: AsusTek Computer Inc.
jui 17 09:41:58 Ordinateur01 kernel: usb 1-4: SerialNumber: 9876543210
jui 17 09:41:58 Ordinateur01 kernel: usb 1-10: new high-speed USB device number 4 using xhci_hcd
jui 17 09:41:58 Ordinateur01 kernel: usb 1-10: New USB device found, idVendor=174c, idProduct=2074, bcdDevice= 0.01
jui 17 09:41:58 Ordinateur01 kernel: usb 1-10: New USB device strings: Mfr=2, Product=3, SerialNumber=0
jui 17 09:41:58 Ordinateur01 kernel: usb 1-10: Product: ASM107x
jui 17 09:41:58 Ordinateur01 kernel: usb 1-10: Manufacturer: ASUS TEK.
jui 17 09:41:58 Ordinateur01 kernel: hub 1-10:1.0: USB hub found
jui 17 09:41:58 Ordinateur01 kernel: hub 1-10:1.0: 4 ports detected
jui 17 09:41:58 Ordinateur01 kernel: usb 1-13: new high-speed USB device number 5 using xhci_hcd
jui 17 09:41:58 Ordinateur01 kernel: usb 1-13: New USB device found, idVendor=058f, idProduct=6254, bcdDevice= 1.00
jui 17 09:41:58 Ordinateur01 kernel: usb 1-13: New USB device strings: Mfr=0, Product=0, SerialNumber=0
jui 17 09:41:58 Ordinateur01 kernel: hub 1-13:1.0: USB hub found
jui 17 09:41:58 Ordinateur01 kernel: hub 1-13:1.0: 4 ports detected
jui 17 09:41:58 Ordinateur01 kernel: usb 1-10.1: new full-speed USB device number 6 using xhci_hcd
jui 17 09:41:58 Ordinateur01 kernel: usb 1-10.1: New USB device found, idVendor=413c, idProduct=1005, bcdDevice=59.00
jui 17 09:41:58 Ordinateur01 kernel: usb 1-10.1: New USB device strings: Mfr=1, Product=2, SerialNumber=0
jui 17 09:41:58 Ordinateur01 kernel: usb 1-10.1: Product: Dell Multimedia Pro Keyboard Hub
jui 17 09:41:58 Ordinateur01 kernel: usb 1-10.1: Manufacturer: Dell
jui 17 09:41:58 Ordinateur01 kernel: hub 1-10.1:1.0: USB hub found
jui 17 09:41:58 Ordinateur01 kernel: hub 1-10.1:1.0: 3 ports detected
jui 17 09:41:58 Ordinateur01 kernel: usb 1-14: new full-speed USB device number 7 using xhci_hcd
jui 17 09:41:58 Ordinateur01 kernel: usb 1-14: New USB device found, idVendor=8087, idProduct=0026, bcdDevice= 0.02
jui 17 09:41:58 Ordinateur01 kernel: usb 1-14: New USB device strings: Mfr=0, Product=0, SerialNumber=0
jui 17 09:41:58 Ordinateur01 kernel: hid: raw HID events driver (C) Jiri Kosina
jui 17 09:41:58 Ordinateur01 kernel: usbcore: registered new interface driver usbhid
jui 17 09:41:58 Ordinateur01 kernel: usbhid: USB HID core driver
jui 17 09:41:58 Ordinateur01 kernel: hid-generic 0003:0B05:1A16.0001: hiddev0,hidraw0: USB HID v1.11 Device [Generic USB Audio] on usb-0000:00:14.0-2/input7
jui 17 09:41:58 Ordinateur01 kernel: hid-generic 0003:0B05:19AF.0002: hiddev1,hidraw1: USB HID v1.11 Device [AsusTek Computer Inc. AURA LED Controller] on usb-0000:00:14.0-4/input2
jui 17 09:41:58 Ordinateur01 kernel: usb 1-10.2: new full-speed USB device number 8 using xhci_hcd
jui 17 09:41:58 Ordinateur01 kernel: usb 1-10.2: New USB device found, idVendor=046d, idProduct=c52b, bcdDevice=12.11
jui 17 09:41:58 Ordinateur01 kernel: usb 1-10.2: New USB device strings: Mfr=1, Product=2, SerialNumber=0
jui 17 09:41:58 Ordinateur01 kernel: usb 1-10.2: Product: USB Receiver
jui 17 09:41:58 Ordinateur01 kernel: usb 1-10.2: Manufacturer: Logitech
jui 17 09:41:58 Ordinateur01 kernel: input: Logitech USB Receiver as /devices/pci0000:00/0000:00:14.0/usb1/1-10/1-10.2/1-10.2:1.0/0003:046D:C52B.0003/input/input3
jui 17 09:41:58 Ordinateur01 kernel: usb 1-10.1.1: new low-speed USB device number 9 using xhci_hcd
jui 17 09:41:58 Ordinateur01 kernel: hid-generic 0003:046D:C52B.0003: input,hidraw2: USB HID v1.11 Keyboard [Logitech USB Receiver] on usb-0000:00:14.0-10.2/input0
jui 17 09:41:58 Ordinateur01 kernel: input: Logitech USB Receiver Mouse as /devices/pci0000:00/0000:00:14.0/usb1/1-10/1-10.2/1-10.2:1.1/0003:046D:C52B.0004/input/input4
jui 17 09:41:58 Ordinateur01 kernel: input: Logitech USB Receiver Consumer Control as /devices/pci0000:00/0000:00:14.0/usb1/1-10/1-10.2/1-10.2:1.1/0003:046D:C52B.0004/input/input5
jui 17 09:41:58 Ordinateur01 kernel: input: Logitech USB Receiver System Control as /devices/pci0000:00/0000:00:14.0/usb1/1-10/1-10.2/1-10.2:1.1/0003:046D:C52B.0004/input/input6
jui 17 09:41:58 Ordinateur01 kernel: hid-generic 0003:046D:C52B.0004: input,hiddev2,hidraw3: USB HID v1.11 Mouse [Logitech USB Receiver] on usb-0000:00:14.0-10.2/input1
jui 17 09:41:58 Ordinateur01 kernel: hid-generic 0003:046D:C52B.0005: hiddev3,hidraw4: USB HID v1.11 Device [Logitech USB Receiver] on usb-0000:00:14.0-10.2/input2
jui 17 09:41:58 Ordinateur01 kernel: usb 1-10.1.1: New USB device found, idVendor=413c, idProduct=2011, bcdDevice=59.00
jui 17 09:41:58 Ordinateur01 kernel: usb 1-10.1.1: New USB device strings: Mfr=1, Product=2, SerialNumber=0
jui 17 09:41:58 Ordinateur01 kernel: usb 1-10.1.1: Product: Dell Multimedia Pro Keyboard
jui 17 09:41:58 Ordinateur01 kernel: usb 1-10.1.1: Manufacturer: Dell
jui 17 09:41:58 Ordinateur01 kernel: input: Dell Dell Multimedia Pro Keyboard as /devices/pci0000:00/0000:00:14.0/usb1/1-10/1-10.1/1-10.1.1/1-10.1.1:1.0/0003:413C:2011.0006/input/input8
jui 17 09:41:58 Ordinateur01 kernel: hid-generic 0003:413C:2011.0006: input,hidraw2: USB HID v1.10 Keyboard [Dell Dell Multimedia Pro Keyboard] on usb-0000:00:14.0-10.1.1/input0
jui 17 09:41:58 Ordinateur01 kernel: input: Dell Dell Multimedia Pro Keyboard Consumer Control as /devices/pci0000:00/0000:00:14.0/usb1/1-10/1-10.1/1-10.1.1/1-10.1.1:1.1/0003:413C:2011.0007/input/input9
jui 17 09:41:58 Ordinateur01 kernel: input: Dell Dell Multimedia Pro Keyboard System Control as /devices/pci0000:00/0000:00:14.0/usb1/1-10/1-10.1/1-10.1.1/1-10.1.1:1.1/0003:413C:2011.0007/input/input10
jui 17 09:41:58 Ordinateur01 kernel: hid-generic 0003:413C:2011.0007: input,hidraw5: USB HID v1.10 Device [Dell Dell Multimedia Pro Keyboard] on usb-0000:00:14.0-10.1.1/input1
jui 17 09:41:58 Ordinateur01 kernel: logitech-djreceiver 0003:046D:C52B.0005: hiddev2,hidraw3: USB HID v1.11 Device [Logitech USB Receiver] on usb-0000:00:14.0-10.2/input2
jui 17 09:41:58 Ordinateur01 kernel: input: Logitech Wireless Device PID:405e Keyboard as /devices/pci0000:00/0000:00:14.0/usb1/1-10/1-10.2/1-10.2:1.2/0003:046D:C52B.0005/0003:046D:405E.0008/input/input11
jui 17 09:41:58 Ordinateur01 kernel: input: Logitech Wireless Device PID:405e Mouse as /devices/pci0000:00/0000:00:14.0/usb1/1-10/1-10.2/1-10.2:1.2/0003:046D:C52B.0005/0003:046D:405E.0008/input/input12
jui 17 09:41:58 Ordinateur01 kernel: hid-generic 0003:046D:405E.0008: input,hidraw4: USB HID v1.11 Keyboard [Logitech Wireless Device PID:405e] on usb-0000:00:14.0-10.2/input2:1
jui 17 09:41:58 Ordinateur01 kernel: input: Logitech M720 Triathlon as /devices/pci0000:00/0000:00:14.0/usb1/1-10/1-10.2/1-10.2:1.2/0003:046D:C52B.0005/0003:046D:405E.0008/input/input16
jui 17 09:41:58 Ordinateur01 kernel: logitech-hidpp-device 0003:046D:405E.0008: input,hidraw4: USB HID v1.11 Keyboard [Logitech M720 Triathlon] on usb-0000:00:14.0-10.2/input2:1
jui 17 09:41:58 Ordinateur01 kernel: raid6: avx2x4   gen() 16426 MB/s
jui 17 09:41:58 Ordinateur01 kernel: raid6: avx2x2   gen() 46658 MB/s
jui 17 09:41:58 Ordinateur01 kernel: raid6: avx2x1   gen() 47712 MB/s
jui 17 09:41:58 Ordinateur01 kernel: raid6: using algorithm avx2x1 gen() 47712 MB/s
jui 17 09:41:58 Ordinateur01 kernel: raid6: .... xor() 29934 MB/s, rmw enabled
jui 17 09:41:58 Ordinateur01 kernel: raid6: using avx2x2 recovery algorithm
jui 17 09:41:58 Ordinateur01 kernel: xor: automatically using best checksumming function   avx
jui 17 09:41:58 Ordinateur01 kernel: async_tx: api initialized (async)
jui 17 09:41:58 Ordinateur01 kernel: Btrfs loaded, zoned=yes, fsverity=yes
jui 17 09:41:58 Ordinateur01 kernel: EXT4-fs (nvme0n1p2): orphan cleanup on readonly fs
jui 17 09:41:58 Ordinateur01 kernel: EXT4-fs (nvme0n1p2): mounted filesystem c8c7dfab-04f3-4bb1-a35d-ba4f5e6cc6bf ro with ordered data mode. Quota mode: none.
jui 17 09:41:58 Ordinateur01 systemd[1]: Inserted module 'autofs4'
jui 17 09:41:58 Ordinateur01 systemd[1]: systemd 259.5-0ubuntu3 running in system mode (+PAM +AUDIT +SELINUX +APPARMOR +IMA +IPE +SMACK +SECCOMP +GCRYPT -GNUTLS +OPENSSL +ACL +BLKID +CURL +ELFUTILS +FIDO2 +IDN2 -IDN +KMOD +LIBCRYPTSETUP +LIBCRYPTSETUP_PLUGINS +LIBFDISK +PCRE2 +PWQUALITY +P11KIT +QRENCODE +TPM2 +BZIP2 +LZ4 +XZ +ZLIB +ZSTD +BPF_FRAMEWORK +BTF -XKBCOMMON -UTMP +SYSVINIT +LIBARCHIVE)
jui 17 09:41:58 Ordinateur01 systemd[1]: Detected architecture x86-64.
jui 17 09:41:58 Ordinateur01 systemd[1]: Hostname set to <Ordinateur01>.
jui 17 09:41:58 Ordinateur01 systemd[1]: bpf-restrict-fs: BPF LSM hook not enabled in the kernel, BPF LSM not supported.
jui 17 09:41:58 Ordinateur01 systemd[1]: /usr/lib/systemd/system/system-xfs_scrub.slice:15: Support for option CPUAccounting= has been removed and it is ignored
jui 17 09:41:58 Ordinateur01 systemd[1]: /usr/lib/systemd/system/xfs_scrub_all.service:26: Support for option CPUAccounting= has been removed and it is ignored
jui 17 09:41:58 Ordinateur01 systemd[1]: Queued start job for default target graphical.target.
jui 17 09:41:58 Ordinateur01 systemd[1]: Created slice machine.slice - Virtual Machine and Container Slice.
jui 17 09:41:58 Ordinateur01 systemd[1]: Created slice system-cups.slice - CUPS Slice.
jui 17 09:41:58 Ordinateur01 systemd[1]: Created slice system-modprobe.slice - Slice /system/modprobe.
jui 17 09:41:58 Ordinateur01 systemd[1]: Created slice system-systemd\x2dfsck.slice - Slice /system/systemd-fsck.
jui 17 09:41:58 Ordinateur01 systemd[1]: Created slice system-xfs_scrub.slice - xfs_scrub background service slice.
jui 17 09:41:58 Ordinateur01 systemd[1]: Created slice user.slice - User and Session Slice.
jui 17 09:41:58 Ordinateur01 systemd[1]: Started systemd-ask-password-wall.path - Forward Password Requests to Wall Directory Watch.
jui 17 09:41:58 Ordinateur01 systemd[1]: Set up automount proc-sys-fs-binfmt_misc.automount - Arbitrary Executable File Formats File System Automount Point.
jui 17 09:41:58 Ordinateur01 systemd[1]: Expecting device dev-disk-by\x2dlabel-0Sa2To\x2dBOOT.device - /dev/disk/by-label/0Sa2To-BOOT...
jui 17 09:41:58 Ordinateur01 systemd[1]: Expecting device dev-disk-by\x2dlabel-0Sa2To\x2ddata.device - /dev/disk/by-label/0Sa2To-data...
jui 17 09:41:58 Ordinateur01 systemd[1]: Expecting device dev-disk-by\x2dlabel-0Sa2To\x2dhome.device - /dev/disk/by-label/0Sa2To-home...
jui 17 09:41:58 Ordinateur01 systemd[1]: Reached target imports.target - Image Downloads.
jui 17 09:41:58 Ordinateur01 systemd[1]: Reached target integritysetup.target - Local Integrity Protected Volumes.
jui 17 09:41:58 Ordinateur01 systemd[1]: Reached target slices.target - Slice Units.
jui 17 09:41:58 Ordinateur01 systemd[1]: Reached target snapd.mounts-pre.target - Mounting snaps.
jui 17 09:41:58 Ordinateur01 systemd[1]: Reached target time-set.target - System Time Set.
jui 17 09:41:58 Ordinateur01 systemd[1]: Reached target veritysetup.target - Local Verity Protected Volumes.
jui 17 09:41:58 Ordinateur01 systemd[1]: Reached target virt-guest-shutdown.target - libvirt guests shutdown target.
jui 17 09:41:58 Ordinateur01 systemd[1]: Listening on dm-event.socket - Device-mapper event daemon FIFOs.
jui 17 09:41:58 Ordinateur01 systemd[1]: Listening on lvm2-lvmpolld.socket - LVM2 poll daemon socket.
jui 17 09:41:58 Ordinateur01 systemd[1]: Listening on syslog.socket - Syslog Socket.
jui 17 09:41:58 Ordinateur01 systemd[1]: Listening on systemd-ask-password.socket - Query the User Interactively for a Password.
jui 17 09:41:58 Ordinateur01 systemd[1]: Listening on systemd-coredump.socket - Process Core Dump Socket.
jui 17 09:41:58 Ordinateur01 systemd[1]: Listening on systemd-creds.socket - Credential Encryption/Decryption.
jui 17 09:41:58 Ordinateur01 systemd[1]: Listening on systemd-factory-reset.socket - Factory Reset Management.
jui 17 09:41:58 Ordinateur01 systemd[1]: Listening on systemd-initctl.socket - initctl Compatibility Named Pipe.
jui 17 09:41:58 Ordinateur01 systemd[1]: Listening on systemd-journald-dev-log.socket - Journal Socket (/dev/log).
jui 17 09:41:58 Ordinateur01 systemd[1]: Listening on systemd-journald.socket - Journal Sockets.
jui 17 09:41:58 Ordinateur01 systemd[1]: Listening on systemd-mute-console.socket - Console Output Muting Service Socket.
jui 17 09:41:58 Ordinateur01 systemd[1]: systemd-pcrextend.socket - TPM PCR Measurements skipped, unmet condition check ConditionSecurity=measured-uki
jui 17 09:41:58 Ordinateur01 systemd[1]: systemd-pcrlock.socket - Make TPM PCR Policy skipped, unmet condition check ConditionSecurity=measured-uki
jui 17 09:41:58 Ordinateur01 systemd[1]: Listening on systemd-resolved-monitor.socket - Resolve Monitor Varlink Socket.
jui 17 09:41:58 Ordinateur01 systemd[1]: Listening on systemd-resolved-varlink.socket - Resolve Service Varlink Socket.
jui 17 09:41:58 Ordinateur01 systemd[1]: Listening on systemd-udevd-control.socket - udev Control Socket.
jui 17 09:41:58 Ordinateur01 systemd[1]: Listening on systemd-udevd-kernel.socket - udev Kernel Socket.
jui 17 09:41:58 Ordinateur01 systemd[1]: Listening on systemd-udevd-varlink.socket - udev Varlink Socket.
jui 17 09:41:58 Ordinateur01 systemd[1]: Mounting dev-hugepages.mount - Huge Pages File System...
jui 17 09:41:58 Ordinateur01 systemd[1]: Mounting dev-mqueue.mount - POSIX Message Queue File System...
jui 17 09:41:58 Ordinateur01 systemd[1]: Mounting run-lock.mount - Legacy Locks Directory /run/lock...
jui 17 09:41:58 Ordinateur01 systemd[1]: Mounting sys-kernel-debug.mount - Kernel Debug File System...
jui 17 09:41:58 Ordinateur01 systemd[1]: Mounting sys-kernel-tracing.mount - Kernel Trace File System...
jui 17 09:41:58 Ordinateur01 systemd[1]: Starting systemd-journald.service - Journal Service...
jui 17 09:41:58 Ordinateur01 systemd[1]: Starting keyboard-setup.service - Set the console keyboard layout...
jui 17 09:41:58 Ordinateur01 systemd[1]: Starting kmod-static-nodes.service - Create List of Static Device Nodes...
jui 17 09:41:58 Ordinateur01 systemd[1]: Starting lvm2-monitor.service - Monitoring of LVM2 mirrors, snapshots etc. using dmeventd or progress polling...
jui 17 09:41:58 Ordinateur01 systemd[1]: modprobe@configfs.service - Load Kernel Module configfs skipped, unmet condition check ConditionKernelModuleLoaded=!configfs
jui 17 09:41:58 Ordinateur01 systemd[1]: Mounting sys-kernel-config.mount - Kernel Configuration File System...
jui 17 09:41:58 Ordinateur01 systemd[1]: modprobe@drm.service - Load Kernel Module drm skipped, unmet condition check ConditionKernelModuleLoaded=!drm
jui 17 09:41:58 Ordinateur01 systemd[1]: Starting modprobe@efi_pstore.service - Load Kernel Module efi_pstore...
jui 17 09:41:58 Ordinateur01 systemd[1]: modprobe@fuse.service - Load Kernel Module fuse skipped, unmet condition check ConditionKernelModuleLoaded=!fuse
jui 17 09:41:58 Ordinateur01 systemd[1]: Mounting sys-fs-fuse-connections.mount - FUSE Control File System...
jui 17 09:41:58 Ordinateur01 systemd[1]: systemd-fsck-root.service - File System Check on Root Device skipped, unmet condition check ConditionPathExists=!/run/initramfs/fsck-root
jui 17 09:41:58 Ordinateur01 systemd[1]: systemd-hibernate-clear.service - Clear Stale Hibernate Storage Info skipped, unmet condition check ConditionPathExists=/sys/firmware/efi/efivars/HibernateLocation-8cf2644b-4b0b-428f-9387-6d876050dc67
jui 17 09:41:58 Ordinateur01 systemd[1]: Starting systemd-modules-load.service - Load Kernel Modules...
jui 17 09:41:58 Ordinateur01 systemd[1]: systemd-pcrmachine.service - TPM PCR Machine ID Measurement skipped, unmet condition check ConditionSecurity=measured-uki
jui 17 09:41:58 Ordinateur01 systemd[1]: systemd-pcrproduct.service - TPM NvPCR Product ID Measurement skipped, unmet condition check ConditionSecurity=measured-uki
jui 17 09:41:58 Ordinateur01 systemd[1]: Starting systemd-remount-fs.service - Remount Root and Kernel File Systems...
jui 17 09:41:58 Ordinateur01 systemd[1]: systemd-tpm2-setup-early.service - Early TPM SRK Setup skipped, unmet condition check ConditionSecurity=measured-uki
jui 17 09:41:58 Ordinateur01 systemd[1]: Starting systemd-udev-load-credentials.service - Load udev Rules from Credentials...
jui 17 09:41:58 Ordinateur01 systemd[1]: Starting systemd-udev-trigger.service - Coldplug All udev Devices...
jui 17 09:41:58 Ordinateur01 systemd[1]: Mounted dev-hugepages.mount - Huge Pages File System.
jui 17 09:41:58 Ordinateur01 systemd[1]: Mounted dev-mqueue.mount - POSIX Message Queue File System.
jui 17 09:41:58 Ordinateur01 systemd[1]: Mounted run-lock.mount - Legacy Locks Directory /run/lock.
jui 17 09:41:58 Ordinateur01 systemd[1]: Mounted sys-kernel-debug.mount - Kernel Debug File System.
jui 17 09:41:58 Ordinateur01 systemd[1]: Mounted sys-kernel-tracing.mount - Kernel Trace File System.
jui 17 09:41:58 Ordinateur01 systemd[1]: Finished keyboard-setup.service - Set the console keyboard layout.
jui 17 09:41:58 Ordinateur01 systemd[1]: Finished kmod-static-nodes.service - Create List of Static Device Nodes.
jui 17 09:41:58 Ordinateur01 systemd[1]: Mounted sys-kernel-config.mount - Kernel Configuration File System.
jui 17 09:41:58 Ordinateur01 systemd[1]: modprobe@efi_pstore.service: Deactivated successfully.
jui 17 09:41:58 Ordinateur01 systemd[1]: Finished modprobe@efi_pstore.service - Load Kernel Module efi_pstore.
jui 17 09:41:58 Ordinateur01 systemd[1]: Mounted sys-fs-fuse-connections.mount - FUSE Control File System.
jui 17 09:41:58 Ordinateur01 systemd[1]: Starting systemd-tmpfiles-setup-dev-early.service - Create Static Device Nodes in /dev gracefully...
jui 17 09:41:58 Ordinateur01 systemd-journald[504]: Collecting audit messages is disabled.
jui 17 09:41:58 Ordinateur01 systemd[1]: Finished systemd-udev-load-credentials.service - Load udev Rules from Credentials.
jui 17 09:41:58 Ordinateur01 kernel: lp: driver loaded but no devices found
jui 17 09:41:58 Ordinateur01 kernel: ppdev: user-space parallel port driver
jui 17 09:41:58 Ordinateur01 systemd[1]: Finished systemd-modules-load.service - Load Kernel Modules.
jui 17 09:41:58 Ordinateur01 systemd[1]: Starting systemd-sysctl.service - Apply Kernel Variables...
jui 17 09:41:58 Ordinateur01 systemd[1]: Finished systemd-tmpfiles-setup-dev-early.service - Create Static Device Nodes in /dev gracefully.
jui 17 09:41:58 Ordinateur01 systemd[1]: Finished systemd-sysctl.service - Apply Kernel Variables.
jui 17 09:41:58 Ordinateur01 kernel: EXT4-fs (nvme0n1p2): re-mounted c8c7dfab-04f3-4bb1-a35d-ba4f5e6cc6bf r/w.
jui 17 09:41:58 Ordinateur01 systemd[1]: Finished systemd-remount-fs.service - Remount Root and Kernel File Systems.
jui 17 09:41:58 Ordinateur01 systemd[1]: Activating swap swapfile.swap - /swapfile...
jui 17 09:41:58 Ordinateur01 systemd[1]: systemd-hwdb-update.service - Rebuild Hardware Database skipped, unmet condition check ConditionNeedsUpdate=/etc
jui 17 09:41:58 Ordinateur01 systemd[1]: systemd-pstore.service - Platform Persistent Storage Archival skipped, unmet condition check ConditionDirectoryNotEmpty=/sys/fs/pstore
jui 17 09:41:58 Ordinateur01 systemd[1]: Starting systemd-random-seed.service - Load/Save OS Random Seed...
jui 17 09:41:58 Ordinateur01 systemd[1]: systemd-sysusers.service - Create System Users skipped, no trigger condition checks were met.
jui 17 09:41:58 Ordinateur01 systemd[1]: Starting systemd-resolved.service - Network Name Resolution...
jui 17 09:41:58 Ordinateur01 systemd[1]: Starting systemd-tmpfiles-setup-dev.service - Create Static Device Nodes in /dev...
jui 17 09:41:58 Ordinateur01 systemd[1]: systemd-tpm2-setup.service - TPM SRK Setup skipped, unmet condition check ConditionSecurity=measured-uki
jui 17 09:41:58 Ordinateur01 systemd[1]: systemd-pcrnvdone.service - TPM PCR NvPCR Initialization Separator skipped, unmet condition check ConditionSecurity=measured-uki
jui 17 09:41:58 Ordinateur01 kernel: Adding 524284k swap on /swapfile.  Priority:-1 extents:1 across:524284k SS
jui 17 09:41:58 Ordinateur01 systemd[1]: Activated swap swapfile.swap - /swapfile.
jui 17 09:41:58 Ordinateur01 systemd[1]: Reached target swap.target - Swaps.
jui 17 09:41:58 Ordinateur01 systemd[1]: Finished systemd-tmpfiles-setup-dev.service - Create Static Device Nodes in /dev.
jui 17 09:41:58 Ordinateur01 systemd[1]: Starting systemd-udevd.service - Rule-based Manager for Device Events and Files...
jui 17 09:41:58 Ordinateur01 systemd[1]: Finished systemd-random-seed.service - Load/Save OS Random Seed.
jui 17 09:41:58 Ordinateur01 systemd-journald[504]: Journal started
░░ Subject: Le journal a été démarré
░░ Defined-By: systemd
░░ Support: http://www.ubuntu.com/support
░░
░░ Le processus du journal système a démarré, ouvert ses fichiers en écriture
░░ et est prêt à traiter les requêtes.
jui 17 09:41:58 Ordinateur01 systemd-journald[504]: [?] Runtime Journal (/run/log/journal/bbca37592b424f22a8b647bc883f43cb) is 8M, max 1.2G, 1.2G free.
░░ Subject: Espace disque utilisé par le journal
░░ Defined-By: systemd
░░ Support: http://www.ubuntu.com/support
░░ Documentation: man:journald.conf(5)
░░
░░ Runtime Journal (/run/log/journal/bbca37592b424f22a8b647bc883f43cb) utilise actuellement 8M.
░░ Le maximum autorisé est défini à 1.2G.
░░ Au moins 643M doivent être laissés libres
░░ (sur 12.5G d'espace disque actuellement libre).
░░ La limite appliquée est donc 1.2G, dont 1.2G
░░ sont toujours disponibles.
░░
░░ Les limites définissant la quantité d'espace disque que peut utiliser le
░░ journal peuvent être configurées avec les paramètres SystemMaxUse=,
░░ SystemKeepFree=, SystemMaxFileSize=, RuntimeMaxUse=, RuntimeKeepFree=,
░░ RuntimeMaxFileSize= dans le fichier /etc/systemd/journald.conf.
░░ Voir journald.conf(5) pour plus de détails.
jui 17 09:41:58 Ordinateur01 systemd-modules-load[512]: Using 4 probe threads
jui 17 09:41:58 Ordinateur01 systemd-modules-load[512]: Module 'i2c_dev' is built in
jui 17 09:41:58 Ordinateur01 systemd-modules-load[512]: Inserted module 'msr'
jui 17 09:41:58 Ordinateur01 systemd[1]: Started systemd-journald.service - Journal Service.
jui 17 09:41:58 Ordinateur01 systemd-modules-load[512]: Inserted module 'lp'
jui 17 09:41:58 Ordinateur01 systemd-modules-load[512]: Inserted module 'ppdev'
jui 17 09:41:58 Ordinateur01 systemd-resolved[531]: Positive Trust Anchors:
jui 17 09:41:58 Ordinateur01 systemd-resolved[531]: . IN DS 20326 8 2 e06d44b80b8f1d39a95c0b0d7c65d08458e880409bbc683457104237c7f8ec8d
jui 17 09:41:58 Ordinateur01 systemd-resolved[531]: . IN DS 38696 8 2 683d2d0acb8c9b712a1948b27f741219298d0a450d612c483af444a4c0fb2b16
jui 17 09:41:58 Ordinateur01 systemd-resolved[531]: Negative trust anchors: home.arpa 10.in-addr.arpa 16.172.in-addr.arpa 17.172.in-addr.arpa 18.172.in-addr.arpa 19.172.in-addr.arpa 20.172.in-addr.arpa 21.172.in-addr.arpa 22.172.in-addr.arpa 23.172.in-addr.arpa 24.172.in-addr.arpa 25.172.in-addr.arpa 26.172.in-addr.arpa 27.172.in-addr.arpa 28.172.in-addr.arpa 29.172.in-addr.arpa 30.172.in-addr.arpa 31.172.in-addr.arpa 170.0.0.192.in-addr.arpa 171.0.0.192.in-addr.arpa 168.192.in-addr.arpa d.f.ip6.arpa ipv4only.arpa resolver.arpa corp home internal intranet lan local private test
jui 17 09:41:58 Ordinateur01 systemd[1]: Starting systemd-journal-flush.service - Flush Journal to Persistent Storage...
░░ Subject: L'unité (unit) systemd-journal-flush.service a commencé à démarrer
░░ Defined-By: systemd
░░ Support: http://www.ubuntu.com/support
░░
░░ L'unité (unit) systemd-journal-flush.service a commencé à démarrer.
jui 17 09:41:58 Ordinateur01 systemd-journald[504]: Time spent on flushing to /var/log/journal/bbca37592b424f22a8b647bc883f43cb is 5.073ms for 1129 entries.
jui 17 09:41:58 Ordinateur01 systemd-journald[504]: [?] System Journal (/var/log/journal/bbca37592b424f22a8b647bc883f43cb) is 48M, max 4G, 3.9G free.
░░ Subject: Espace disque utilisé par le journal
░░ Defined-By: systemd
░░ Support: http://www.ubuntu.com/support
░░ Documentation: man:journald.conf(5)
░░
░░ System Journal (/var/log/journal/bbca37592b424f22a8b647bc883f43cb) utilise actuellement 48M.
░░ Le maximum autorisé est défini à 4G.
░░ Au moins 4G doivent être laissés libres
░░ (sur 93.6G d'espace disque actuellement libre).
░░ La limite appliquée est donc 4G, dont 3.9G
░░ sont toujours disponibles.
░░
░░ Les limites définissant la quantité d'espace disque que peut utiliser le
░░ journal peuvent être configurées avec les paramètres SystemMaxUse=,
░░ SystemKeepFree=, SystemMaxFileSize=, RuntimeMaxUse=, RuntimeKeepFree=,
░░ RuntimeMaxFileSize= dans le fichier /etc/systemd/journald.conf.
░░ Voir journald.conf(5) pour plus de détails.
jui 17 09:41:58 Ordinateur01 systemd-journald[504]: Received client request to flush runtime journal.
jui 17 09:41:58 Ordinateur01 systemd-udevd[535]: Using default interface naming scheme 'v259'.
jui 17 09:41:58 Ordinateur01 systemd-journald[504]: File /var/log/journal/bbca37592b424f22a8b647bc883f43cb/system.journal corrupted or uncleanly shut down, renaming and replacing.
jui 17 09:41:58 Ordinateur01 systemd[1]: Finished lvm2-monitor.service - Monitoring of LVM2 mirrors, snapshots etc. using dmeventd or progress polling.
░░ Subject: L'unité (unit) lvm2-monitor.service a terminé son démarrage
░░ Defined-By: systemd
░░ Support: http://www.ubuntu.com/support
░░
░░ L'unité (unit) lvm2-monitor.service a terminé son démarrage, avec le résultat done.
jui 17 09:41:58 Ordinateur01 systemd[1]: Reached target local-fs-pre.target - Preparation for Local File Systems.
░░ Subject: L'unité (unit) local-fs-pre.target a terminé son démarrage
░░ Defined-By: systemd
░░ Support: http://www.ubuntu.com/support
░░
░░ L'unité (unit) local-fs-pre.target a terminé son démarrage, avec le résultat done.
jui 17 09:41:58 Ordinateur01 systemd-resolved[531]: Using system hostname 'Ordinateur01'.
jui 17 09:41:58 Ordinateur01 systemd[1]: Started systemd-resolved.service - Network Name Resolution.
░░ Subject: L'unité (unit) systemd-resolved.service a terminé son démarrage
░░ Defined-By: systemd
░░ Support: http://www.ubuntu.com/support
░░
░░ L'unité (unit) systemd-resolved.service a terminé son démarrage, avec le résultat done.
jui 17 09:41:58 Ordinateur01 systemd[1]: Reached target nss-lookup.target - Host and Network Name Lookups.
░░ Subject: L'unité (unit) nss-lookup.target a terminé son démarrage
░░ Defined-By: systemd
░░ Support: http://www.ubuntu.com/support
░░
░░ L'unité (unit) nss-lookup.target a terminé son démarrage, avec le résultat done.
jui 17 09:41:58 Ordinateur01 systemd[1]: Finished systemd-journal-flush.service - Flush Journal to Persistent Storage.
░░ Subject: L'unité (unit) systemd-journal-flush.service a terminé son démarrage
░░ Defined-By: systemd
░░ Support: http://www.ubuntu.com/support
░░
░░ L'unité (unit) systemd-journal-flush.service a terminé son démarrage, avec le résultat done.
jui 17 09:41:58 Ordinateur01 systemd-udevd[535]: /usr/lib/udev/rules.d/60-i2c-tools.rules:1 Failed to resolve group 'i2c', ignoring: Unknown group
jui 17 09:41:58 Ordinateur01 systemd[1]: Started systemd-udevd.service - Rule-based Manager for Device Events and Files.
░░ Subject: L'unité (unit) systemd-udevd.service a terminé son démarrage
░░ Defined-By: systemd
░░ Support: http://www.ubuntu.com/support
░░
░░ L'unité (unit) systemd-udevd.service a terminé son démarrage, avec le résultat done.
jui 17 09:41:58 Ordinateur01 systemd[1]: Finished systemd-udev-trigger.service - Coldplug All udev Devices.
░░ Subject: L'unité (unit) systemd-udev-trigger.service a terminé son démarrage
░░ Defined-By: systemd
░░ Support: http://www.ubuntu.com/support
░░
░░ L'unité (unit) systemd-udev-trigger.service a terminé son démarrage, avec le résultat done.
jui 17 09:41:58 Ordinateur01 systemd[1]: Starting ifupdown-pre.service - Helper to synchronize boot up for ifupdown...
░░ Subject: L'unité (unit) ifupdown-pre.service a commencé à démarrer
░░ Defined-By: systemd
░░ Support: http://www.ubuntu.com/support
░░
░░ L'unité (unit) ifupdown-pre.service a commencé à démarrer.
jui 17 09:41:58 Ordinateur01 systemd[1]: Starting plymouth-start.service - Show Plymouth Boot Screen...
░░ Subject: L'unité (unit) plymouth-start.service a commencé à démarrer
░░ Defined-By: systemd
░░ Support: http://www.ubuntu.com/support
░░
░░ L'unité (unit) plymouth-start.service a commencé à démarrer.
jui 17 09:41:58 Ordinateur01 systemd[1]: Finished ifupdown-pre.service - Helper to synchronize boot up for ifupdown.
░░ Subject: L'unité (unit) ifupdown-pre.service a terminé son démarrage
░░ Defined-By: systemd
░░ Support: http://www.ubuntu.com/support
░░
░░ L'unité (unit) ifupdown-pre.service a terminé son démarrage, avec le résultat done.
jui 17 09:41:58 Ordinateur01 systemd[1]: Condition check resulted in dev-tpmrm0.device - /dev/tpmrm0 being skipped.
░░ Subject: L'unité (unit) dev-tpmrm0.device a terminé son démarrage
░░ Defined-By: systemd
░░ Support: http://www.ubuntu.com/support
░░
░░ L'unité (unit) dev-tpmrm0.device a terminé son démarrage, avec le résultat done.
jui 17 09:41:58 Ordinateur01 systemd[1]: Expecting device dev-tpm0.device - /dev/tpm0...
░░ Subject: L'unité (unit) dev-tpm0.device a commencé à démarrer
░░ Defined-By: systemd
░░ Support: http://www.ubuntu.com/support
░░
░░ L'unité (unit) dev-tpm0.device a commencé à démarrer.
jui 17 09:41:58 Ordinateur01 systemd[1]: Started plymouth-start.service - Show Plymouth Boot Screen.
░░ Subject: L'unité (unit) plymouth-start.service a terminé son démarrage
░░ Defined-By: systemd
░░ Support: http://www.ubuntu.com/support
░░
░░ L'unité (unit) plymouth-start.service a terminé son démarrage, avec le résultat done.
jui 17 09:41:58 Ordinateur01 systemd[1]: systemd-ask-password-console.path - Dispatch Password Requests to Console Directory Watch skipped, unmet condition check ConditionPathExists=!/run/plymouth/pid
░░ Subject: L'unité (unit) systemd-ask-password-console.path a terminé son démarrage
░░ Defined-By: systemd
░░ Support: http://www.ubuntu.com/support
░░
░░ L'unité (unit) systemd-ask-password-console.path a terminé son démarrage, avec le résultat done.
jui 17 09:41:58 Ordinateur01 systemd[1]: Started systemd-ask-password-plymouth.path - Forward Password Requests to Plymouth Directory Watch.
░░ Subject: L'unité (unit) systemd-ask-password-plymouth.path a terminé son démarrage
░░ Defined-By: systemd
░░ Support: http://www.ubuntu.com/support
░░
░░ L'unité (unit) systemd-ask-password-plymouth.path a terminé son démarrage, avec le résultat done.
jui 17 09:41:58 Ordinateur01 systemd[1]: Reached target cryptsetup.target - Local Encrypted Volumes.
░░ Subject: L'unité (unit) cryptsetup.target a terminé son démarrage
░░ Defined-By: systemd
░░ Support: http://www.ubuntu.com/support
░░
░░ L'unité (unit) cryptsetup.target a terminé son démarrage, avec le résultat done.
jui 17 09:41:58 Ordinateur01 mtp-probe[641]: checking bus 1, device 9: "/sys/devices/pci0000:00/0000:00:14.0/usb1/1-10/1-10.1/1-10.1.1"
jui 17 09:41:58 Ordinateur01 mtp-probe[639]: checking bus 1, device 8: "/sys/devices/pci0000:00/0000:00:14.0/usb1/1-10/1-10.2"
jui 17 09:41:58 Ordinateur01 mtp-probe[639]: bus: 1, device: 8 was not an MTP device
jui 17 09:41:58 Ordinateur01 mtp-probe[641]: bus: 1, device: 9 was not an MTP device
jui 17 09:41:58 Ordinateur01 systemd[1]: Found device dev-disk-by\x2dlabel-0Sa2To\x2dhome.device - Sabrent Rocket 4.0 Plus 0Sa2To-home.
░░ Subject: L'unité (unit) dev-disk-by\x2dlabel-0Sa2To\x2dhome.device a terminé son démarrage
░░ Defined-By: systemd
░░ Support: http://www.ubuntu.com/support
░░
░░ L'unité (unit) dev-disk-by\x2dlabel-0Sa2To\x2dhome.device a terminé son démarrage, avec le résultat done.
jui 17 09:41:58 Ordinateur01 systemd[1]: Found device dev-tpm0.device - /dev/tpm0.
░░ Subject: L'unité (unit) dev-tpm0.device a terminé son démarrage
░░ Defined-By: systemd
░░ Support: http://www.ubuntu.com/support
░░
░░ L'unité (unit) dev-tpm0.device a terminé son démarrage, avec le résultat done.
jui 17 09:41:58 Ordinateur01 systemd[1]: Found device dev-disk-by\x2dlabel-0Sa2To\x2ddata.device - Sabrent Rocket 4.0 Plus 0Sa2To-data.
░░ Subject: L'unité (unit) dev-disk-by\x2dlabel-0Sa2To\x2ddata.device a terminé son démarrage
░░ Defined-By: systemd
░░ Support: http://www.ubuntu.com/support
░░
░░ L'unité (unit) dev-disk-by\x2dlabel-0Sa2To\x2ddata.device a terminé son démarrage, avec le résultat done.
jui 17 09:41:58 Ordinateur01 mtp-probe[651]: checking bus 1, device 3: "/sys/devices/pci0000:00/0000:00:14.0/usb1/1-4"
jui 17 09:41:58 Ordinateur01 kernel: EDAC ie31200: No ECC support
jui 17 09:41:58 Ordinateur01 kernel: EDAC ie31200: No ECC support
jui 17 09:41:58 Ordinateur01 mtp-probe[652]: checking bus 1, device 2: "/sys/devices/pci0000:00/0000:00:14.0/usb1/1-2"
jui 17 09:41:58 Ordinateur01 mtp-probe[651]: bus: 1, device: 3 was not an MTP device
jui 17 09:41:58 Ordinateur01 mtp-probe[652]: bus: 1, device: 2 was not an MTP device
jui 17 09:41:58 Ordinateur01 kernel: cfg80211: Loading compiled-in X.509 certificates for regulatory database
jui 17 09:41:58 Ordinateur01 kernel: Loaded X.509 cert 'sforshee: 00b28ddf47aef9cea7'
jui 17 09:41:58 Ordinateur01 kernel: Loaded X.509 cert 'wens: 61c038651aabdcf94bd0ac7ff06c7248db18c600'
jui 17 09:41:58 Ordinateur01 kernel: intel_pmc_core INT33A1:00:  initialized
jui 17 09:41:58 Ordinateur01 kernel: mc: Linux media interface: v0.10
jui 17 09:41:58 Ordinateur01 kernel: Bluetooth: Core ver 2.22
jui 17 09:41:58 Ordinateur01 kernel: asus_wmi: ASUS WMI generic driver loaded
jui 17 09:41:58 Ordinateur01 kernel: RAPL PMU: API unit is 2^-32 Joules, 2 fixed counters, 655360 ms ovfl timer
jui 17 09:41:58 Ordinateur01 kernel: RAPL PMU: hw unit of domain pp0-core 2^-14 Joules
jui 17 09:41:58 Ordinateur01 kernel: RAPL PMU: hw unit of domain package 2^-14 Joules
jui 17 09:41:58 Ordinateur01 kernel: i801_smbus 0000:00:1f.4: SPD Write Disable is set
jui 17 09:41:58 Ordinateur01 kernel: i801_smbus 0000:00:1f.4: SMBus using PCI interrupt
jui 17 09:41:58 Ordinateur01 kernel: NET: Registered PF_BLUETOOTH protocol family
jui 17 09:41:58 Ordinateur01 kernel: Bluetooth: HCI device and connection manager initialized
jui 17 09:41:58 Ordinateur01 kernel: Bluetooth: HCI socket layer initialized
jui 17 09:41:58 Ordinateur01 kernel: Bluetooth: L2CAP socket layer initialized
jui 17 09:41:58 Ordinateur01 kernel: Bluetooth: SCO socket layer initialized
jui 17 09:41:58 Ordinateur01 kernel: i2c i2c-3: Successfully instantiated SPD at 0x50
jui 17 09:41:58 Ordinateur01 kernel: i2c i2c-3: Successfully instantiated SPD at 0x51
jui 17 09:41:58 Ordinateur01 kernel: mfd-aaeon 97845ED0-4E6D-11DE-8A39-0800200C9A66-1: Legacy driver mfd-aaeon cannot be instantiated multiple times
jui 17 09:41:58 Ordinateur01 kernel: i2c i2c-3: Successfully instantiated SPD at 0x52
jui 17 09:41:58 Ordinateur01 kernel: i2c i2c-3: Successfully instantiated SPD at 0x53
jui 17 09:41:58 Ordinateur01 kernel: asus-ec-sensors asus-ec-sensors: board has 2 EC sensors that span 2 registers
jui 17 09:41:58 Ordinateur01 kernel: asus_wmi: SFUN value: 0x1
jui 17 09:41:58 Ordinateur01 kernel: eeepc-wmi eeepc-wmi: Detected ATK, not ASUSWMI, use DSTS
jui 17 09:41:58 Ordinateur01 kernel: iwlwifi 0000:00:14.3: Detected crf-id 0x1300504, cnv-id 0x80401 wfpm id 0x80000030
jui 17 09:41:58 Ordinateur01 kernel: iwlwifi 0000:00:14.3: PCI dev 7af0/0074, rev=0x430, rfid=0x10a100
jui 17 09:41:58 Ordinateur01 kernel: iwlwifi 0000:00:14.3: Detected Intel(R) Wi-Fi 6 AX201 160MHz
jui 17 09:41:58 Ordinateur01 kernel: input: Eee PC WMI hotkeys as /devices/platform/eeepc-wmi/input/input17
jui 17 09:41:58 Ordinateur01 kernel: iwlwifi 0000:00:14.3: loaded firmware version 89.4d42c933.0 so-a0-hr-b0-89.ucode op_mode iwlmvm
jui 17 09:41:58 Ordinateur01 kernel: ee1004 3-0050: 512 byte EE1004-compliant SPD EEPROM, read-only
jui 17 09:41:58 Ordinateur01 kernel: ee1004 3-0051: 512 byte EE1004-compliant SPD EEPROM, read-only
jui 17 09:41:58 Ordinateur01 kernel: ee1004 3-0052: 512 byte EE1004-compliant SPD EEPROM, read-only
jui 17 09:41:58 Ordinateur01 kernel: ee1004 3-0053: 512 byte EE1004-compliant SPD EEPROM, read-only
jui 17 09:41:58 Ordinateur01 systemd[1]: Reached target tpm2.target - Trusted Platform Module.
░░ Subject: L'unité (unit) tpm2.target a terminé son démarrage
░░ Defined-By: systemd
░░ Support: http://www.ubuntu.com/support
░░
░░ L'unité (unit) tpm2.target a terminé son démarrage, avec le résultat done.
jui 17 09:41:58 Ordinateur01 systemd[1]: Listening on systemd-rfkill.socket - Load/Save RF Kill Switch Status /dev/rfkill Watch.
░░ Subject: L'unité (unit) systemd-rfkill.socket a terminé son démarrage
░░ Defined-By: systemd
░░ Support: http://www.ubuntu.com/support
░░
░░ L'unité (unit) systemd-rfkill.socket a terminé son démarrage, avec le résultat done.
jui 17 09:41:58 Ordinateur01 systemd[1]: Starting systemd-fsck@dev-disk-by\x2dlabel-0Sa2To\x2dhome.service - File System Check on /dev/disk/by-label/0Sa2To-home...
░░ Subject: L'unité (unit) systemd-fsck@dev-disk-by\x2dlabel-0Sa2To\x2dhome.service a commencé à démarrer
░░ Defined-By: systemd
░░ Support: http://www.ubuntu.com/support
░░
░░ L'unité (unit) systemd-fsck@dev-disk-by\x2dlabel-0Sa2To\x2dhome.service a commencé à démarrer.
jui 17 09:41:58 Ordinateur01 kernel: spi-nor spi0.0: supply vcc not found, using dummy regulator
jui 17 09:41:58 Ordinateur01 kernel: Creating 1 MTD partitions on "0000:00:1f.5":
jui 17 09:41:58 Ordinateur01 kernel: 0x000000000000-0x000002000000 : "BIOS"
jui 17 09:41:58 Ordinateur01 kernel: asus_armoury: No matching power limits found for this system
jui 17 09:41:58 Ordinateur01 systemd-fsck[727]: 0Sa2To-home : récupération du journal
jui 17 09:41:58 Ordinateur01 systemd[1]: Starting systemd-rfkill.service - Load/Save RF Kill Switch Status...
░░ Subject: L'unité (unit) systemd-rfkill.service a commencé à démarrer
░░ Defined-By: systemd
░░ Support: http://www.ubuntu.com/support
░░
░░ L'unité (unit) systemd-rfkill.service a commencé à démarrer.
jui 17 09:41:58 Ordinateur01 kernel: Bluetooth: hci0: Device revision is 2
jui 17 09:41:58 Ordinateur01 kernel: Bluetooth: hci0: Secure boot is enabled
jui 17 09:41:58 Ordinateur01 kernel: Bluetooth: hci0: OTP lock is enabled
jui 17 09:41:58 Ordinateur01 kernel: Bluetooth: hci0: API lock is enabled
jui 17 09:41:58 Ordinateur01 kernel: Bluetooth: hci0: Debug lock is disabled
jui 17 09:41:58 Ordinateur01 kernel: Bluetooth: hci0: Minimum firmware build 1 week 10 2014
jui 17 09:41:58 Ordinateur01 kernel: Bluetooth: hci0: Bootloader timestamp 2019.40 buildtype 1 build 38
jui 17 09:41:58 Ordinateur01 kernel: Bluetooth: hci0: DSM reset method type: 0x00
jui 17 09:41:58 Ordinateur01 kernel: usbcore: registered new interface driver btusb
jui 17 09:41:58 Ordinateur01 kernel: Bluetooth: hci0: Found device firmware: intel/ibt-1040-4150.sfi
jui 17 09:41:58 Ordinateur01 kernel: Bluetooth: hci0: Boot Address: 0x100800
jui 17 09:41:58 Ordinateur01 kernel: Bluetooth: hci0: Firmware Version: 200-48.24
jui 17 09:41:58 Ordinateur01 systemd[1]: Started systemd-rfkill.service - Load/Save RF Kill Switch Status.
░░ Subject: L'unité (unit) systemd-rfkill.service a terminé son démarrage
░░ Defined-By: systemd
░░ Support: http://www.ubuntu.com/support
░░
░░ L'unité (unit) systemd-rfkill.service a terminé son démarrage, avec le résultat done.
jui 17 09:41:58 Ordinateur01 systemd[1]: systemd-ask-password-console.path - Dispatch Password Requests to Console Directory Watch skipped, unmet condition check ConditionPathExists=!/run/plymouth/pid
░░ Subject: L'unité (unit) systemd-ask-password-console.path a terminé son démarrage
░░ Defined-By: systemd
░░ Support: http://www.ubuntu.com/support
░░
░░ L'unité (unit) systemd-ask-password-console.path a terminé son démarrage, avec le résultat done.
jui 17 09:41:58 Ordinateur01 systemd[1]: modprobe@efi_pstore.service - Load Kernel Module efi_pstore skipped, unmet condition check ConditionKernelModuleLoaded=!efi_pstore
░░ Subject: L'unité (unit) modprobe@efi_pstore.service a terminé son démarrage
░░ Defined-By: systemd
░░ Support: http://www.ubuntu.com/support
░░
░░ L'unité (unit) modprobe@efi_pstore.service a terminé son démarrage, avec le résultat done.
jui 17 09:41:58 Ordinateur01 systemd[1]: systemd-fsck-root.service - File System Check on Root Device skipped, unmet condition check ConditionPathExists=!/run/initramfs/fsck-root
░░ Subject: L'unité (unit) systemd-fsck-root.service a terminé son démarrage
░░ Defined-By: systemd
░░ Support: http://www.ubuntu.com/support
░░
░░ L'unité (unit) systemd-fsck-root.service a terminé son démarrage, avec le résultat done.
jui 17 09:41:58 Ordinateur01 systemd[1]: systemd-hibernate-clear.service - Clear Stale Hibernate Storage Info skipped, unmet condition check ConditionPathExists=/sys/firmware/efi/efivars/HibernateLocation-8cf2644b-4b0b-428f-9387-6d876050dc67
░░ Subject: L'unité (unit) systemd-hibernate-clear.service a terminé son démarrage
░░ Defined-By: systemd
░░ Support: http://www.ubuntu.com/support
░░
░░ L'unité (unit) systemd-hibernate-clear.service a terminé son démarrage, avec le résultat done.
jui 17 09:41:58 Ordinateur01 systemd[1]: systemd-hwdb-update.service - Rebuild Hardware Database skipped, unmet condition check ConditionNeedsUpdate=/etc
░░ Subject: L'unité (unit) systemd-hwdb-update.service a terminé son démarrage
░░ Defined-By: systemd
░░ Support: http://www.ubuntu.com/support
░░
░░ L'unité (unit) systemd-hwdb-update.service a terminé son démarrage, avec le résultat done.
jui 17 09:41:58 Ordinateur01 systemd[1]: systemd-pcrmachine.service - TPM PCR Machine ID Measurement skipped, unmet condition check ConditionSecurity=measured-uki
░░ Subject: L'unité (unit) systemd-pcrmachine.service a terminé son démarrage
░░ Defined-By: systemd
░░ Support: http://www.ubuntu.com/support
░░
░░ L'unité (unit) systemd-pcrmachine.service a terminé son démarrage, avec le résultat done.
jui 17 09:41:58 Ordinateur01 systemd[1]: systemd-pcrproduct.service - TPM NvPCR Product ID Measurement skipped, unmet condition check ConditionSecurity=measured-uki
░░ Subject: L'unité (unit) systemd-pcrproduct.service a terminé son démarrage
░░ Defined-By: systemd
░░ Support: http://www.ubuntu.com/support
░░
░░ L'unité (unit) systemd-pcrproduct.service a terminé son démarrage, avec le résultat done.
jui 17 09:41:58 Ordinateur01 systemd[1]: systemd-pstore.service - Platform Persistent Storage Archival skipped, unmet condition check ConditionDirectoryNotEmpty=/sys/fs/pstore
░░ Subject: L'unité (unit) systemd-pstore.service a terminé son démarrage
░░ Defined-By: systemd
░░ Support: http://www.ubuntu.com/support
░░
░░ L'unité (unit) systemd-pstore.service a terminé son démarrage, avec le résultat done.
jui 17 09:41:58 Ordinateur01 systemd[1]: systemd-sysusers.service - Create System Users skipped, no trigger condition checks were met.
░░ Subject: L'unité (unit) systemd-sysusers.service a terminé son démarrage
░░ Defined-By: systemd
░░ Support: http://www.ubuntu.com/support
░░
░░ L'unité (unit) systemd-sysusers.service a terminé son démarrage, avec le résultat done.
jui 17 09:41:58 Ordinateur01 systemd[1]: systemd-tpm2-setup-early.service - Early TPM SRK Setup skipped, unmet condition check ConditionSecurity=measured-uki
░░ Subject: L'unité (unit) systemd-tpm2-setup-early.service a terminé son démarrage
░░ Defined-By: systemd
░░ Support: http://www.ubuntu.com/support
░░
░░ L'unité (unit) systemd-tpm2-setup-early.service a terminé son démarrage, avec le résultat done.
jui 17 09:41:58 Ordinateur01 systemd[1]: systemd-tpm2-setup.service - TPM SRK Setup skipped, unmet condition check ConditionSecurity=measured-uki
░░ Subject: L'unité (unit) systemd-tpm2-setup.service a terminé son démarrage
░░ Defined-By: systemd
░░ Support: http://www.ubuntu.com/support
░░
░░ L'unité (unit) systemd-tpm2-setup.service a terminé son démarrage, avec le résultat done.
jui 17 09:41:58 Ordinateur01 systemd[1]: systemd-pcrnvdone.service - TPM PCR NvPCR Initialization Separator skipped, unmet condition check ConditionSecurity=measured-uki
░░ Subject: L'unité (unit) systemd-pcrnvdone.service a terminé son démarrage
░░ Defined-By: systemd
░░ Support: http://www.ubuntu.com/support
░░
░░ L'unité (unit) systemd-pcrnvdone.service a terminé son démarrage, avec le résultat done.
jui 17 09:41:58 Ordinateur01 systemd-fsck[727]: 0Sa2To-home : propre, 10068/6553600 fichiers, 1139635/26214400 blocs
jui 17 09:41:58 Ordinateur01 systemd[1]: Finished systemd-fsck@dev-disk-by\x2dlabel-0Sa2To\x2dhome.service - File System Check on /dev/disk/by-label/0Sa2To-home.
░░ Subject: L'unité (unit) systemd-fsck@dev-disk-by\x2dlabel-0Sa2To\x2dhome.service a terminé son démarrage
░░ Defined-By: systemd
░░ Support: http://www.ubuntu.com/support
░░
░░ L'unité (unit) systemd-fsck@dev-disk-by\x2dlabel-0Sa2To\x2dhome.service a terminé son démarrage, avec le résultat done.
jui 17 09:41:58 Ordinateur01 kernel: ACPI: \_SB_.PC00.PEG1.PEGP: failed to evaluate _DSM
jui 17 09:41:58 Ordinateur01 kernel: nouveau 0000:01:00.0: NVIDIA GF114 (0ce000a1)
jui 17 09:41:58 Ordinateur01 kernel: snd_hda_intel 0000:01:00.1: Disabling MSI
jui 17 09:41:58 Ordinateur01 kernel: snd_hda_intel 0000:01:00.1: Handle vga_switcheroo audio client
jui 17 09:41:58 Ordinateur01 kernel: snd_hda_intel 0000:00:1f.3: no codecs found!
jui 17 09:41:58 Ordinateur01 kernel: intel_tcc_cooling: Programmable TCC Offset detected
jui 17 09:41:58 Ordinateur01 kernel: input: HDA NVidia HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:01.0/0000:01:00.1/sound/card2/input18
jui 17 09:41:58 Ordinateur01 kernel: input: HDA NVidia HDMI/DP,pcm=7 as /devices/pci0000:00/0000:00:01.0/0000:01:00.1/sound/card2/input19
jui 17 09:41:58 Ordinateur01 kernel: input: HDA NVidia HDMI/DP,pcm=8 as /devices/pci0000:00/0000:00:01.0/0000:01:00.1/sound/card2/input20
jui 17 09:41:58 Ordinateur01 kernel: input: HDA NVidia HDMI/DP,pcm=9 as /devices/pci0000:00/0000:00:01.0/0000:01:00.1/sound/card2/input21
jui 17 09:41:58 Ordinateur01 kernel: intel_rapl_msr: PL4 support detected.
jui 17 09:41:58 Ordinateur01 kernel: intel_rapl_common: Found RAPL domain package
jui 17 09:41:58 Ordinateur01 kernel: intel_rapl_common: Found RAPL domain core
jui 17 09:41:58 Ordinateur01 systemd[1]: systemd-ask-password-console.path - Dispatch Password Requests to Console Directory Watch skipped, unmet condition check ConditionPathExists=!/run/plymouth/pid
░░ Subject: L'unité (unit) systemd-ask-password-console.path a terminé son démarrage
░░ Defined-By: systemd
░░ Support: http://www.ubuntu.com/support
░░
░░ L'unité (unit) systemd-ask-password-console.path a terminé son démarrage, avec le résultat done.
jui 17 09:41:58 Ordinateur01 systemd[1]: modprobe@efi_pstore.service - Load Kernel Module efi_pstore skipped, unmet condition check ConditionKernelModuleLoaded=!efi_pstore
░░ Subject: L'unité (unit) modprobe@efi_pstore.service a terminé son démarrage
░░ Defined-By: systemd
░░ Support: http://www.ubuntu.com/support
░░
░░ L'unité (unit) modprobe@efi_pstore.service a terminé son démarrage, avec le résultat done.
jui 17 09:41:58 Ordinateur01 systemd[1]: systemd-fsck-root.service - File System Check on Root Device skipped, unmet condition check ConditionPathExists=!/run/initramfs/fsck-root
░░ Subject: L'unité (unit) systemd-fsck-root.service a terminé son démarrage
░░ Defined-By: systemd
░░ Support: http://www.ubuntu.com/support
░░
░░ L'unité (unit) systemd-fsck-root.service a terminé son démarrage, avec le résultat done.
jui 17 09:41:58 Ordinateur01 systemd[1]: systemd-hibernate-clear.service - Clear Stale Hibernate Storage Info skipped, unmet condition check ConditionPathExists=/sys/firmware/efi/efivars/HibernateLocation-8cf2644b-4b0b-428f-9387-6d876050dc67
░░ Subject: L'unité (unit) systemd-hibernate-clear.service a terminé son démarrage
░░ Defined-By: systemd
░░ Support: http://www.ubuntu.com/support
░░
░░ L'unité (unit) systemd-hibernate-clear.service a terminé son démarrage, avec le résultat done.
jui 17 09:41:58 Ordinateur01 systemd[1]: systemd-hwdb-update.service - Rebuild Hardware Database skipped, unmet condition check ConditionNeedsUpdate=/etc
░░ Subject: L'unité (unit) systemd-hwdb-update.service a terminé son démarrage
░░ Defined-By: systemd
░░ Support: http://www.ubuntu.com/support
░░
░░ L'unité (unit) systemd-hwdb-update.service a terminé son démarrage, avec le résultat done.
jui 17 09:41:58 Ordinateur01 systemd[1]: systemd-pcrmachine.service - TPM PCR Machine ID Measurement skipped, unmet condition check ConditionSecurity=measured-uki
░░ Subject: L'unité (unit) systemd-pcrmachine.service a terminé son démarrage
░░ Defined-By: systemd
░░ Support: http://www.ubuntu.com/support
░░
░░ L'unité (unit) systemd-pcrmachine.service a terminé son démarrage, avec le résultat done.
jui 17 09:41:58 Ordinateur01 systemd[1]: systemd-pcrproduct.service - TPM NvPCR Product ID Measurement skipped, unmet condition check ConditionSecurity=measured-uki
░░ Subject: L'unité (unit) systemd-pcrproduct.service a terminé son démarrage
░░ Defined-By: systemd
░░ Support: http://www.ubuntu.com/support
░░
░░ L'unité (unit) systemd-pcrproduct.service a terminé son démarrage, avec le résultat done.
jui 17 09:41:58 Ordinateur01 systemd[1]: systemd-pstore.service - Platform Persistent Storage Archival skipped, unmet condition check ConditionDirectoryNotEmpty=/sys/fs/pstore
░░ Subject: L'unité (unit) systemd-pstore.service a terminé son démarrage
░░ Defined-By: systemd
░░ Support: http://www.ubuntu.com/support
░░
░░ L'unité (unit) systemd-pstore.service a terminé son démarrage, avec le résultat done.
jui 17 09:41:58 Ordinateur01 systemd[1]: systemd-sysusers.service - Create System Users skipped, no trigger condition checks were met.
░░ Subject: L'unité (unit) systemd-sysusers.service a terminé son démarrage
░░ Defined-By: systemd
░░ Support: http://www.ubuntu.com/support
░░
░░ L'unité (unit) systemd-sysusers.service a terminé son démarrage, avec le résultat done.
jui 17 09:41:58 Ordinateur01 systemd[1]: systemd-tpm2-setup-early.service - Early TPM SRK Setup skipped, unmet condition check ConditionSecurity=measured-uki
░░ Subject: L'unité (unit) systemd-tpm2-setup-early.service a terminé son démarrage
░░ Defined-By: systemd
░░ Support: http://www.ubuntu.com/support
░░
░░ L'unité (unit) systemd-tpm2-setup-early.service a terminé son démarrage, avec le résultat done.
jui 17 09:41:58 Ordinateur01 systemd[1]: systemd-tpm2-setup.service - TPM SRK Setup skipped, unmet condition check ConditionSecurity=measured-uki
░░ Subject: L'unité (unit) systemd-tpm2-setup.service a terminé son démarrage
░░ Defined-By: systemd
░░ Support: http://www.ubuntu.com/support
░░
░░ L'unité (unit) systemd-tpm2-setup.service a terminé son démarrage, avec le résultat done.
jui 17 09:41:58 Ordinateur01 systemd[1]: systemd-pcrnvdone.service - TPM PCR NvPCR Initialization Separator skipped, unmet condition check ConditionSecurity=measured-uki
░░ Subject: L'unité (unit) systemd-pcrnvdone.service a terminé son démarrage
░░ Defined-By: systemd
░░ Support: http://www.ubuntu.com/support
░░
░░ L'unité (unit) systemd-pcrnvdone.service a terminé son démarrage, avec le résultat done.
jui 17 09:41:58 Ordinateur01 systemd[1]: systemd-ask-password-console.path - Dispatch Password Requests to Console Directory Watch skipped, unmet condition check ConditionPathExists=!/run/plymouth/pid
░░ Subject: L'unité (unit) systemd-ask-password-console.path a terminé son démarrage
░░ Defined-By: systemd
░░ Support: http://www.ubuntu.com/support
░░
░░ L'unité (unit) systemd-ask-password-console.path a terminé son démarrage, avec le résultat done.
jui 17 09:41:58 Ordinateur01 systemd[1]: modprobe@efi_pstore.service - Load Kernel Module efi_pstore skipped, unmet condition check ConditionKernelModuleLoaded=!efi_pstore
░░ Subject: L'unité (unit) modprobe@efi_pstore.service a terminé son démarrage
░░ Defined-By: systemd
░░ Support: http://www.ubuntu.com/support
░░
░░ L'unité (unit) modprobe@efi_pstore.service a terminé son démarrage, avec le résultat done.
jui 17 09:41:58 Ordinateur01 systemd[1]: systemd-fsck-root.service - File System Check on Root Device skipped, unmet condition check ConditionPathExists=!/run/initramfs/fsck-root
░░ Subject: L'unité (unit) systemd-fsck-root.service a terminé son démarrage
░░ Defined-By: systemd
░░ Support: http://www.ubuntu.com/support
░░
░░ L'unité (unit) systemd-fsck-root.service a terminé son démarrage, avec le résultat done.
jui 17 09:41:58 Ordinateur01 systemd[1]: systemd-hibernate-clear.service - Clear Stale Hibernate Storage Info skipped, unmet condition check ConditionPathExists=/sys/firmware/efi/efivars/HibernateLocation-8cf2644b-4b0b-428f-9387-6d876050dc67
░░ Subject: L'unité (unit) systemd-hibernate-clear.service a terminé son démarrage
░░ Defined-By: systemd
░░ Support: http://www.ubuntu.com/support
░░
░░ L'unité (unit) systemd-hibernate-clear.service a terminé son démarrage, avec le résultat done.
jui 17 09:41:58 Ordinateur01 systemd[1]: systemd-hwdb-update.service - Rebuild Hardware Database skipped, unmet condition check ConditionNeedsUpdate=/etc
░░ Subject: L'unité (unit) systemd-hwdb-update.service a terminé son démarrage
░░ Defined-By: systemd
░░ Support: http://www.ubuntu.com/support
░░
░░ L'unité (unit) systemd-hwdb-update.service a terminé son démarrage, avec le résultat done.
jui 17 09:41:58 Ordinateur01 systemd[1]: systemd-pcrmachine.service - TPM PCR Machine ID Measurement skipped, unmet condition check ConditionSecurity=measured-uki
░░ Subject: L'unité (unit) systemd-pcrmachine.service a terminé son démarrage
░░ Defined-By: systemd
░░ Support: http://www.ubuntu.com/support
░░
░░ L'unité (unit) systemd-pcrmachine.service a terminé son démarrage, avec le résultat done.
jui 17 09:41:58 Ordinateur01 systemd[1]: systemd-pcrproduct.service - TPM NvPCR Product ID Measurement skipped, unmet condition check ConditionSecurity=measured-uki
░░ Subject: L'unité (unit) systemd-pcrproduct.service a terminé son démarrage
░░ Defined-By: systemd
░░ Support: http://www.ubuntu.com/support
░░
░░ L'unité (unit) systemd-pcrproduct.service a terminé son démarrage, avec le résultat done.
jui 17 09:41:58 Ordinateur01 systemd[1]: systemd-pstore.service - Platform Persistent Storage Archival skipped, unmet condition check ConditionDirectoryNotEmpty=/sys/fs/pstore
░░ Subject: L'unité (unit) systemd-pstore.service a terminé son démarrage
░░ Defined-By: systemd
░░ Support: http://www.ubuntu.com/support
░░
░░ L'unité (unit) systemd-pstore.service a terminé son démarrage, avec le résultat done.
jui 17 09:41:58 Ordinateur01 systemd[1]: systemd-sysusers.service - Create System Users skipped, no trigger condition checks were met.
░░ Subject: L'unité (unit) systemd-sysusers.service a terminé son démarrage
░░ Defined-By: systemd
░░ Support: http://www.ubuntu.com/support
░░
░░ L'unité (unit) systemd-sysusers.service a terminé son démarrage, avec le résultat done.
jui 17 09:41:58 Ordinateur01 systemd[1]: systemd-tpm2-setup-early.service - Early TPM SRK Setup skipped, unmet condition check ConditionSecurity=measured-uki
░░ Subject: L'unité (unit) systemd-tpm2-setup-early.service a terminé son démarrage
░░ Defined-By: systemd
░░ Support: http://www.ubuntu.com/support
░░
░░ L'unité (unit) systemd-tpm2-setup-early.service a terminé son démarrage, avec le résultat done.
jui 17 09:41:58 Ordinateur01 systemd[1]: systemd-tpm2-setup.service - TPM SRK Setup skipped, unmet condition check ConditionSecurity=measured-uki
░░ Subject: L'unité (unit) systemd-tpm2-setup.service a terminé son démarrage
░░ Defined-By: systemd
░░ Support: http://www.ubuntu.com/support
░░
░░ L'unité (unit) systemd-tpm2-setup.service a terminé son démarrage, avec le résultat done.
jui 17 09:41:58 Ordinateur01 systemd[1]: systemd-pcrnvdone.service - TPM PCR NvPCR Initialization Separator skipped, unmet condition check ConditionSecurity=measured-uki
░░ Subject: L'unité (unit) systemd-pcrnvdone.service a terminé son démarrage
░░ Defined-By: systemd
░░ Support: http://www.ubuntu.com/support
░░
░░ L'unité (unit) systemd-pcrnvdone.service a terminé son démarrage, avec le résultat done.
jui 17 09:41:58 Ordinateur01 kernel: iwlwifi 0000:00:14.3: WFPM_UMAC_PD_NOTIFICATION: 0x20
jui 17 09:41:58 Ordinateur01 kernel: iwlwifi 0000:00:14.3: WFPM_LMAC2_PD_NOTIFICATION: 0x1f
jui 17 09:41:58 Ordinateur01 kernel: iwlwifi 0000:00:14.3: WFPM_AUTH_KEY_0: 0x90
jui 17 09:41:58 Ordinateur01 kernel: iwlwifi 0000:00:14.3: CNVI_SCU_SEQ_DATA_DW9: 0x10
jui 17 09:41:58 Ordinateur01 kernel: iwlwifi 0000:00:14.3: Detected RF HR B3, rfid=0x10a100
jui 17 09:41:58 Ordinateur01 kernel: iwlwifi 0000:00:14.3: RFIm is deactivated, reason = 5
jui 17 09:41:58 Ordinateur01 kernel: nouveau 0000:01:00.0: bios: version 70.24.21.00.00
jui 17 09:41:58 Ordinateur01 kernel: nouveau 0000:01:00.0: vgaarb: deactivate vga console
jui 17 09:41:58 Ordinateur01 kernel: Console: switching to colour dummy device 80x25
jui 17 09:41:58 Ordinateur01 kernel: nouveau 0000:01:00.0: fb: 2048 MiB GDDR5
jui 17 09:41:58 Ordinateur01 kernel: iwlwifi 0000:00:14.3: base HW address: f0:57:a6:cc:86:bb
jui 17 09:41:58 Ordinateur01 kernel: iwlwifi 0000:00:14.3 wlo1: renamed from wlan0
jui 17 09:41:58 Ordinateur01 kernel: nouveau 0000:01:00.0: drm: VRAM: 2048 MiB
jui 17 09:41:58 Ordinateur01 kernel: nouveau 0000:01:00.0: drm: GART: 1048576 MiB
jui 17 09:41:58 Ordinateur01 kernel: nouveau 0000:01:00.0: drm: TMDS table version 2.0
jui 17 09:41:58 Ordinateur01 kernel: nouveau 0000:01:00.0: drm: failed to create ce channel, -22
jui 17 09:41:58 Ordinateur01 kernel: nouveau 0000:01:00.0: drm: MM: using M2MF for buffer copies
jui 17 09:41:58 Ordinateur01 kernel: nouveau 0000:01:00.0: [drm] Registered 2 planes with drm panic
jui 17 09:41:58 Ordinateur01 kernel: [drm] Initialized nouveau 1.4.2 for 0000:01:00.0 on minor 0
jui 17 09:41:58 Ordinateur01 kernel: nouveau 0000:01:00.0: [drm] Cannot find any crtc or sizes
jui 17 09:41:58 Ordinateur01 kernel: nouveau 0000:01:00.0: [drm] Cannot find any crtc or sizes
jui 17 09:41:58 Ordinateur01 kernel: nouveau 0000:01:00.0: [drm] Cannot find any crtc or sizes
jui 17 09:41:59 Ordinateur01 systemd[1]: Mounting home.mount - /home...
░░ Subject: L'unité (unit) home.mount a commencé à démarrer
░░ Defined-By: systemd
░░ Support: http://www.ubuntu.com/support
░░
░░ L'unité (unit) home.mount a commencé à démarrer.
jui 17 09:41:59 Ordinateur01 systemd[1]: Mounting snap-bare-5.mount - Mount unit for bare, revision 5...
░░ Subject: L'unité (unit) snap-bare-5.mount a commencé à démarrer
░░ Defined-By: systemd
░░ Support: http://www.ubuntu.com/support
░░
░░ L'unité (unit) snap-bare-5.mount a commencé à démarrer.
jui 17 09:41:59 Ordinateur01 systemd[1]: Mounting snap-core22-2411.mount - Mount unit for core22, revision 2411...
░░ Subject: L'unité (unit) snap-core22-2411.mount a commencé à démarrer
░░ Defined-By: systemd
░░ Support: http://www.ubuntu.com/support
░░
░░ L'unité (unit) snap-core22-2411.mount a commencé à démarrer.
jui 17 09:41:59 Ordinateur01 systemd[1]: Mounting snap-core24-1587.mount - Mount unit for core24, revision 1587...
░░ Subject: L'unité (unit) snap-core24-1587.mount a commencé à démarrer
░░ Defined-By: systemd
░░ Support: http://www.ubuntu.com/support
░░
░░ L'unité (unit) snap-core24-1587.mount a commencé à démarrer.
jui 17 09:41:59 Ordinateur01 systemd[1]: Mounting snap-element\x2ddesktop-203.mount - Mount unit for element-desktop, revision 203...
░░ Subject: L'unité (unit) snap-element\x2ddesktop-203.mount a commencé à démarrer
░░ Defined-By: systemd
░░ Support: http://www.ubuntu.com/support
░░
░░ L'unité (unit) snap-element\x2ddesktop-203.mount a commencé à démarrer.
jui 17 09:41:59 Ordinateur01 systemd[1]: Mounting snap-ffmpeg\x2d2204-150.mount - Mount unit for ffmpeg-2204, revision 150...
░░ Subject: L'unité (unit) snap-ffmpeg\x2d2204-150.mount a commencé à démarrer
░░ Defined-By: systemd
░░ Support: http://www.ubuntu.com/support
░░
░░ L'unité (unit) snap-ffmpeg\x2d2204-150.mount a commencé à démarrer.
jui 17 09:41:59 Ordinateur01 systemd[1]: Mounting snap-firefox-8107.mount - Mount unit for firefox, revision 8107...
░░ Subject: L'unité (unit) snap-firefox-8107.mount a commencé à démarrer
░░ Defined-By: systemd
░░ Support: http://www.ubuntu.com/support
░░
░░ L'unité (unit) snap-firefox-8107.mount a commencé à démarrer.
jui 17 09:41:59 Ordinateur01 systemd[1]: Mounting snap-gnome\x2d46\x2d2404-153.mount - Mount unit for gnome-46-2404, revision 153...
░░ Subject: L'unité (unit) snap-gnome\x2d46\x2d2404-153.mount a commencé à démarrer
░░ Defined-By: systemd
░░ Support: http://www.ubuntu.com/support
░░
░░ L'unité (unit) snap-gnome\x2d46\x2d2404-153.mount a commencé à démarrer.
jui 17 09:41:59 Ordinateur01 systemd[1]: Mounting snap-gtk\x2dcommon\x2dthemes-1535.mount - Mount unit for gtk-common-themes, revision 1535...
░░ Subject: L'unité (unit) snap-gtk\x2dcommon\x2dthemes-1535.mount a commencé à démarrer
░░ Defined-By: systemd
░░ Support: http://www.ubuntu.com/support
░░
░░ L'unité (unit) snap-gtk\x2dcommon\x2dthemes-1535.mount a commencé à démarrer.
jui 17 09:41:59 Ordinateur01 kernel: loop0: detected capacity change from 0 to 8
jui 17 09:41:59 Ordinateur01 kernel: loop1: detected capacity change from 0 to 151512
jui 17 09:41:59 Ordinateur01 systemd[1]: Mounting snap-gtk\x2dtheme\x2dbreeze-8.mount - Mount unit for gtk-theme-breeze, revision 8...
░░ Subject: L'unité (unit) snap-gtk\x2dtheme\x2dbreeze-8.mount a commencé à démarrer
░░ Defined-By: systemd
░░ Support: http://www.ubuntu.com/support
░░
░░ L'unité (unit) snap-gtk\x2dtheme\x2dbreeze-8.mount a commencé à démarrer.
jui 17 09:41:59 Ordinateur01 kernel: loop2: detected capacity change from 0 to 378648
jui 17 09:41:59 Ordinateur01 systemd[1]: Mounting snap-icon\x2dtheme\x2dbreeze-5.mount - Mount unit for icon-theme-breeze, revision 5...
░░ Subject: L'unité (unit) snap-icon\x2dtheme\x2dbreeze-5.mount a commencé à démarrer
░░ Defined-By: systemd
░░ Support: http://www.ubuntu.com/support
░░
░░ L'unité (unit) snap-icon\x2dtheme\x2dbreeze-5.mount a commencé à démarrer.
jui 17 09:41:59 Ordinateur01 kernel: loop3: detected capacity change from 0 to 136904
jui 17 09:41:59 Ordinateur01 kernel: loop4: detected capacity change from 0 to 127464
jui 17 09:41:59 Ordinateur01 kernel: loop5: detected capacity change from 0 to 1241248
jui 17 09:41:59 Ordinateur01 kernel: loop6: detected capacity change from 0 to 560536
jui 17 09:41:59 Ordinateur01 systemd[1]: Mounting snap-kf5\x2dcore22-3.mount - Mount unit for kf5-core22, revision 3...
░░ Subject: L'unité (unit) snap-kf5\x2dcore22-3.mount a commencé à démarrer
░░ Defined-By: systemd
░░ Support: http://www.ubuntu.com/support
░░
░░ L'unité (unit) snap-kf5\x2dcore22-3.mount a commencé à démarrer.
jui 17 09:41:59 Ordinateur01 systemd[1]: Mounting snap-krita-109.mount - Mount unit for krita, revision 109...
░░ Subject: L'unité (unit) snap-krita-109.mount a commencé à démarrer
░░ Defined-By: systemd
░░ Support: http://www.ubuntu.com/support
░░
░░ L'unité (unit) snap-krita-109.mount a commencé à démarrer.
jui 17 09:41:59 Ordinateur01 systemd[1]: Mounting snap-mesa\x2d2404-1165.mount - Mount unit for mesa-2404, revision 1165...
░░ Subject: L'unité (unit) snap-mesa\x2d2404-1165.mount a commencé à démarrer
░░ Defined-By: systemd
░░ Support: http://www.ubuntu.com/support
░░
░░ L'unité (unit) snap-mesa\x2d2404-1165.mount a commencé à démarrer.
jui 17 09:41:59 Ordinateur01 kernel: loop7: detected capacity change from 0 to 187776
jui 17 09:41:59 Ordinateur01 systemd[1]: Mounting snap-snapd-26865.mount - Mount unit for snapd, revision 26865...
░░ Subject: L'unité (unit) snap-snapd-26865.mount a commencé à démarrer
░░ Defined-By: systemd
░░ Support: http://www.ubuntu.com/support
░░
░░ L'unité (unit) snap-snapd-26865.mount a commencé à démarrer.
jui 17 09:41:59 Ordinateur01 systemd[1]: Mounting snap-thunderbird-1057.mount - Mount unit for thunderbird, revision 1057...
░░ Subject: L'unité (unit) snap-thunderbird-1057.mount a commencé à démarrer
░░ Defined-By: systemd
░░ Support: http://www.ubuntu.com/support
░░
░░ L'unité (unit) snap-thunderbird-1057.mount a commencé à démarrer.
jui 17 09:41:59 Ordinateur01 kernel: loop8: detected capacity change from 0 to 528
jui 17 09:41:59 Ordinateur01 kernel: loop9: detected capacity change from 0 to 26968
jui 17 09:41:59 Ordinateur01 systemd[1]: Mounting tmp.mount - /tmp...
░░ Subject: L'unité (unit) tmp.mount a commencé à démarrer
░░ Defined-By: systemd
░░ Support: http://www.ubuntu.com/support
░░
░░ L'unité (unit) tmp.mount a commencé à démarrer.
jui 17 09:41:59 Ordinateur01 systemd[1]: var-lib-machines.mount - Virtual Machine and Container Storage (Compatibility) skipped, unmet condition check ConditionPathExists=/var/lib/machines.raw
░░ Subject: L'unité (unit) var-lib-machines.mount a terminé son démarrage
░░ Defined-By: systemd
░░ Support: http://www.ubuntu.com/support
░░
░░ L'unité (unit) var-lib-machines.mount a terminé son démarrage, avec le résultat done.
jui 17 09:41:59 Ordinateur01 systemd[1]: Reached target machines.target - Virtual Machines and Containers.
░░ Subject: L'unité (unit) machines.target a terminé son démarrage
░░ Defined-By: systemd
░░ Support: http://www.ubuntu.com/support
░░
░░ L'unité (unit) machines.target a terminé son démarrage, avec le résultat done.
jui 17 09:41:59 Ordinateur01 systemd[1]: Listening on systemd-importd.socket - Disk Image Download Service Socket.
░░ Subject: L'unité (unit) systemd-importd.socket a terminé son démarrage
░░ Defined-By: systemd
░░ Support: http://www.ubuntu.com/support
░░
░░ L'unité (unit) systemd-importd.socket a terminé son démarrage, avec le résultat done.
jui 17 09:41:59 Ordinateur01 systemd[1]: Mounted snap-bare-5.mount - Mount unit for bare, revision 5.
░░ Subject: L'unité (unit) snap-bare-5.mount a terminé son démarrage
░░ Defined-By: systemd
░░ Support: http://www.ubuntu.com/support
░░
░░ L'unité (unit) snap-bare-5.mount a terminé son démarrage, avec le résultat done.
jui 17 09:41:59 Ordinateur01 systemd[1]: Mounted snap-core22-2411.mount - Mount unit for core22, revision 2411.
░░ Subject: L'unité (unit) snap-core22-2411.mount a terminé son démarrage
░░ Defined-By: systemd
░░ Support: http://www.ubuntu.com/support
░░
░░ L'unité (unit) snap-core22-2411.mount a terminé son démarrage, avec le résultat done.
jui 17 09:41:59 Ordinateur01 systemd[1]: Mounted snap-core24-1587.mount - Mount unit for core24, revision 1587.
░░ Subject: L'unité (unit) snap-core24-1587.mount a terminé son démarrage
░░ Defined-By: systemd
░░ Support: http://www.ubuntu.com/support
░░
░░ L'unité (unit) snap-core24-1587.mount a terminé son démarrage, avec le résultat done.
jui 17 09:41:59 Ordinateur01 systemd[1]: Mounted snap-element\x2ddesktop-203.mount - Mount unit for element-desktop, revision 203.
░░ Subject: L'unité (unit) snap-element\x2ddesktop-203.mount a terminé son démarrage
░░ Defined-By: systemd
░░ Support: http://www.ubuntu.com/support
░░
░░ L'unité (unit) snap-element\x2ddesktop-203.mount a terminé son démarrage, avec le résultat done.
jui 17 09:41:59 Ordinateur01 systemd[1]: Mounted snap-ffmpeg\x2d2204-150.mount - Mount unit for ffmpeg-2204, revision 150.
░░ Subject: L'unité (unit) snap-ffmpeg\x2d2204-150.mount a terminé son démarrage
░░ Defined-By: systemd
░░ Support: http://www.ubuntu.com/support
░░
░░ L'unité (unit) snap-ffmpeg\x2d2204-150.mount a terminé son démarrage, avec le résultat done.
jui 17 09:41:59 Ordinateur01 systemd[1]: Mounted snap-firefox-8107.mount - Mount unit for firefox, revision 8107.
░░ Subject: L'unité (unit) snap-firefox-8107.mount a terminé son démarrage
░░ Defined-By: systemd
░░ Support: http://www.ubuntu.com/support
░░
░░ L'unité (unit) snap-firefox-8107.mount a terminé son démarrage, avec le résultat done.
jui 17 09:41:59 Ordinateur01 systemd[1]: Mounted snap-gnome\x2d46\x2d2404-153.mount - Mount unit for gnome-46-2404, revision 153.
░░ Subject: L'unité (unit) snap-gnome\x2d46\x2d2404-153.mount a terminé son démarrage
░░ Defined-By: systemd
░░ Support: http://www.ubuntu.com/support
░░
░░ L'unité (unit) snap-gnome\x2d46\x2d2404-153.mount a terminé son démarrage, avec le résultat done.
jui 17 09:41:59 Ordinateur01 systemd[1]: Mounted snap-gtk\x2dcommon\x2dthemes-1535.mount - Mount unit for gtk-common-themes, revision 1535.
░░ Subject: L'unité (unit) snap-gtk\x2dcommon\x2dthemes-1535.mount a terminé son démarrage
░░ Defined-By: systemd
░░ Support: http://www.ubuntu.com/support
░░
░░ L'unité (unit) snap-gtk\x2dcommon\x2dthemes-1535.mount a terminé son démarrage, avec le résultat done.
jui 17 09:41:59 Ordinateur01 systemd[1]: Mounted snap-gtk\x2dtheme\x2dbreeze-8.mount - Mount unit for gtk-theme-breeze, revision 8.
░░ Subject: L'unité (unit) snap-gtk\x2dtheme\x2dbreeze-8.mount a terminé son démarrage
░░ Defined-By: systemd
░░ Support: http://www.ubuntu.com/support
░░
░░ L'unité (unit) snap-gtk\x2dtheme\x2dbreeze-8.mount a terminé son démarrage, avec le résultat done.
jui 17 09:41:59 Ordinateur01 systemd[1]: Mounted snap-icon\x2dtheme\x2dbreeze-5.mount - Mount unit for icon-theme-breeze, revision 5.
░░ Subject: L'unité (unit) snap-icon\x2dtheme\x2dbreeze-5.mount a terminé son démarrage
░░ Defined-By: systemd
░░ Support: http://www.ubuntu.com/support
░░
░░ L'unité (unit) snap-icon\x2dtheme\x2dbreeze-5.mount a terminé son démarrage, avec le résultat done.
jui 17 09:41:59 Ordinateur01 systemd[1]: Mounted snap-kf5\x2dcore22-3.mount - Mount unit for kf5-core22, revision 3.
░░ Subject: L'unité (unit) snap-kf5\x2dcore22-3.mount a terminé son démarrage
░░ Defined-By: systemd
░░ Support: http://www.ubuntu.com/support
░░
░░ L'unité (unit) snap-kf5\x2dcore22-3.mount a terminé son démarrage, avec le résultat done.
jui 17 09:41:59 Ordinateur01 systemd[1]: Mounted snap-krita-109.mount - Mount unit for krita, revision 109.
░░ Subject: L'unité (unit) snap-krita-109.mount a terminé son démarrage
░░ Defined-By: systemd
░░ Support: http://www.ubuntu.com/support
░░
░░ L'unité (unit) snap-krita-109.mount a terminé son démarrage, avec le résultat done.
jui 17 09:41:59 Ordinateur01 systemd[1]: Mounted snap-mesa\x2d2404-1165.mount - Mount unit for mesa-2404, revision 1165.
░░ Subject: L'unité (unit) snap-mesa\x2d2404-1165.mount a terminé son démarrage
░░ Defined-By: systemd
░░ Support: http://www.ubuntu.com/support
░░
░░ L'unité (unit) snap-mesa\x2d2404-1165.mount a terminé son démarrage, avec le résultat done.
jui 17 09:41:59 Ordinateur01 systemd[1]: Mounted snap-snapd-26865.mount - Mount unit for snapd, revision 26865.
░░ Subject: L'unité (unit) snap-snapd-26865.mount a terminé son démarrage
░░ Defined-By: systemd
░░ Support: http://www.ubuntu.com/support
░░
░░ L'unité (unit) snap-snapd-26865.mount a terminé son démarrage, avec le résultat done.
jui 17 09:41:59 Ordinateur01 systemd[1]: Mounted snap-thunderbird-1057.mount - Mount unit for thunderbird, revision 1057.
░░ Subject: L'unité (unit) snap-thunderbird-1057.mount a terminé son démarrage
░░ Defined-By: systemd
░░ Support: http://www.ubuntu.com/support
░░
░░ L'unité (unit) snap-thunderbird-1057.mount a terminé son démarrage, avec le résultat done.
jui 17 09:41:59 Ordinateur01 systemd[1]: Mounted tmp.mount - /tmp.
░░ Subject: L'unité (unit) tmp.mount a terminé son démarrage
░░ Defined-By: systemd
░░ Support: http://www.ubuntu.com/support
░░
░░ L'unité (unit) tmp.mount a terminé son démarrage, avec le résultat done.
jui 17 09:41:59 Ordinateur01 kernel: EXT4-fs (nvme0n1p3): mounted filesystem b3a4cf93-8ebb-4889-b3c2-0d009380d6d2 r/w with ordered data mode. Quota mode: none.
jui 17 09:41:59 Ordinateur01 systemd[1]: Mounted home.mount - /home.
░░ Subject: L'unité (unit) home.mount a terminé son démarrage
░░ Defined-By: systemd
░░ Support: http://www.ubuntu.com/support
░░
░░ L'unité (unit) home.mount a terminé son démarrage, avec le résultat done.
jui 17 09:41:59 Ordinateur01 systemd[1]: Reached target snapd.mounts.target - Mounted snaps.
░░ Subject: L'unité (unit) snapd.mounts.target a terminé son démarrage
░░ Defined-By: systemd
░░ Support: http://www.ubuntu.com/support
░░
░░ L'unité (unit) snapd.mounts.target a terminé son démarrage, avec le résultat done.
jui 17 09:41:59 Ordinateur01 systemd[1]: home-rene-data.mount: Directory /home/rene/data to mount over is not empty, mounting anyway.
░░ Subject: Le point de montage n'est pas vide
░░ Defined-By: systemd
░░ Support: http://www.ubuntu.com/support
░░
░░ Le répertoire /home/rene/data est spécifié comme point de montage (second champ du
░░ fichier /etc/fstab, ou champ Where= dans une unité (unit) systemd) et n'est
░░ pas vide.
░░ Cela ne perturbe pas le montage du système de fichiers, mais les fichiers
░░ préalablement présents dans ce répertoire sont devenus inaccessibles.
░░ Pour atteindre ces fichiers, veuillez monter manuellement le système de
░░ fichiers sous-jacent à un autre emplacement.
jui 17 09:41:59 Ordinateur01 systemd[1]: Mounting home-rene-data.mount - /home/rene/data...
░░ Subject: L'unité (unit) home-rene-data.mount a commencé à démarrer
░░ Defined-By: systemd
░░ Support: http://www.ubuntu.com/support
░░
░░ L'unité (unit) home-rene-data.mount a commencé à démarrer.
jui 17 09:41:59 Ordinateur01 ntfs-3g[897]: Version 2022.10.3 integrated FUSE 28
jui 17 09:41:59 Ordinateur01 ntfs-3g[897]: Mounted /dev/nvme0n1p4 (Read-Write, label "0Sa2To-data", NTFS 3.1)
jui 17 09:41:59 Ordinateur01 ntfs-3g[897]: Cmdline options: rw,uid=1000,gid=1000
jui 17 09:41:59 Ordinateur01 ntfs-3g[897]: Mount options: allow_other,nonempty,relatime,rw,default_permissions,fsname=/dev/nvme0n1p4,blkdev,blksize=4096
jui 17 09:41:59 Ordinateur01 ntfs-3g[897]: Global ownership and permissions enforced, configuration type 7
jui 17 09:41:59 Ordinateur01 systemd[1]: Mounted home-rene-data.mount - /home/rene/data.
░░ Subject: L'unité (unit) home-rene-data.mount a terminé son démarrage
░░ Defined-By: systemd
░░ Support: http://www.ubuntu.com/support
░░
░░ L'unité (unit) home-rene-data.mount a terminé son démarrage, avec le résultat done.
jui 17 09:41:59 Ordinateur01 kernel: Bluetooth: hci0: Waiting for firmware download to complete
jui 17 09:41:59 Ordinateur01 kernel: Bluetooth: hci0: Firmware loaded in 1293115 usecs
jui 17 09:41:59 Ordinateur01 kernel: Bluetooth: hci0: Waiting for device to boot
jui 17 09:41:59 Ordinateur01 kernel: Bluetooth: hci0: Device booted in 14609 usecs
jui 17 09:41:59 Ordinateur01 kernel: Bluetooth: hci0: Found Intel DDC parameters: intel/ibt-1040-4150.ddc
jui 17 09:41:59 Ordinateur01 kernel: Bluetooth: hci0: Applying Intel DDC parameters completed
jui 17 09:41:59 Ordinateur01 kernel: Bluetooth: hci0: Firmware timestamp 2024.48 buildtype 1 build 81864
jui 17 09:41:59 Ordinateur01 kernel: Bluetooth: hci0: Firmware SHA1: 0xc115e35a
jui 17 09:41:59 Ordinateur01 kernel: Bluetooth: hci0: Fseq status: Success (0x00)
jui 17 09:41:59 Ordinateur01 kernel: Bluetooth: hci0: Fseq executed: 00.00.02.41
jui 17 09:41:59 Ordinateur01 kernel: Bluetooth: hci0: Fseq BT Top: 00.00.02.41
jui 17 09:42:02 Ordinateur01 kernel: usbcore: registered new interface driver snd-usb-audio
jui 17 09:42:02 Ordinateur01 systemd[1]: systemd-ask-password-console.path - Dispatch Password Requests to Console Directory Watch skipped, unmet condition check ConditionPathExists=!/run/plymouth/pid
░░ Subject: L'unité (unit) systemd-ask-password-console.path a terminé son démarrage
░░ Defined-By: systemd
░░ Support: http://www.ubuntu.com/support
░░
░░ L'unité (unit) systemd-ask-password-console.path a terminé son démarrage, avec le résultat done.
jui 17 09:42:02 Ordinateur01 systemd[1]: modprobe@efi_pstore.service - Load Kernel Module efi_pstore skipped, unmet condition check ConditionKernelModuleLoaded=!efi_pstore
░░ Subject: L'unité (unit) modprobe@efi_pstore.service a terminé son démarrage
░░ Defined-By: systemd
░░ Support: http://www.ubuntu.com/support
░░
░░ L'unité (unit) modprobe@efi_pstore.service a terminé son démarrage, avec le résultat done.
jui 17 09:42:02 Ordinateur01 systemd[1]: systemd-fsck-root.service - File System Check on Root Device skipped, unmet condition check ConditionPathExists=!/run/initramfs/fsck-root
░░ Subject: L'unité (unit) systemd-fsck-root.service a terminé son démarrage
░░ Defined-By: systemd
░░ Support: http://www.ubuntu.com/support
░░
░░ L'unité (unit) systemd-fsck-root.service a terminé son démarrage, avec le résultat done.
jui 17 09:42:02 Ordinateur01 systemd[1]: systemd-hibernate-clear.service - Clear Stale Hibernate Storage Info skipped, unmet condition check ConditionPathExists=/sys/firmware/efi/efivars/HibernateLocation-8cf2644b-4b0b-428f-9387-6d876050dc67
░░ Subject: L'unité (unit) systemd-hibernate-clear.service a terminé son démarrage
░░ Defined-By: systemd
░░ Support: http://www.ubuntu.com/support
░░
░░ L'unité (unit) systemd-hibernate-clear.service a terminé son démarrage, avec le résultat done.
jui 17 09:42:02 Ordinateur01 systemd[1]: systemd-hwdb-update.service - Rebuild Hardware Database skipped, unmet condition check ConditionNeedsUpdate=/etc
░░ Subject: L'unité (unit) systemd-hwdb-update.service a terminé son démarrage
░░ Defined-By: systemd
░░ Support: http://www.ubuntu.com/support
░░
░░ L'unité (unit) systemd-hwdb-update.service a terminé son démarrage, avec le résultat done.
jui 17 09:42:02 Ordinateur01 systemd[1]: systemd-pcrmachine.service - TPM PCR Machine ID Measurement skipped, unmet condition check ConditionSecurity=measured-uki
░░ Subject: L'unité (unit) systemd-pcrmachine.service a terminé son démarrage
░░ Defined-By: systemd
░░ Support: http://www.ubuntu.com/support
░░
░░ L'unité (unit) systemd-pcrmachine.service a terminé son démarrage, avec le résultat done.
jui 17 09:42:02 Ordinateur01 systemd[1]: systemd-pcrproduct.service - TPM NvPCR Product ID Measurement skipped, unmet condition check ConditionSecurity=measured-uki
░░ Subject: L'unité (unit) systemd-pcrproduct.service a terminé son démarrage
░░ Defined-By: systemd
░░ Support: http://www.ubuntu.com/support
░░
░░ L'unité (unit) systemd-pcrproduct.service a terminé son démarrage, avec le résultat done.
jui 17 09:42:02 Ordinateur01 systemd[1]: systemd-pstore.service - Platform Persistent Storage Archival skipped, unmet condition check ConditionDirectoryNotEmpty=/sys/fs/pstore
░░ Subject: L'unité (unit) systemd-pstore.service a terminé son démarrage
░░ Defined-By: systemd
░░ Support: http://www.ubuntu.com/support
░░
░░ L'unité (unit) systemd-pstore.service a terminé son démarrage, avec le résultat done.
jui 17 09:42:02 Ordinateur01 systemd[1]: systemd-sysusers.service - Create System Users skipped, no trigger condition checks were met.
░░ Subject: L'unité (unit) systemd-sysusers.service a terminé son démarrage
░░ Defined-By: systemd
░░ Support: http://www.ubuntu.com/support
░░
░░ L'unité (unit) systemd-sysusers.service a terminé son démarrage, avec le résultat done.
jui 17 09:42:02 Ordinateur01 systemd[1]: systemd-tpm2-setup-early.service - Early TPM SRK Setup skipped, unmet condition check ConditionSecurity=measured-uki
░░ Subject: L'unité (unit) systemd-tpm2-setup-early.service a terminé son démarrage
░░ Defined-By: systemd
░░ Support: http://www.ubuntu.com/support
░░
░░ L'unité (unit) systemd-tpm2-setup-early.service a terminé son démarrage, avec le résultat done.
jui 17 09:42:02 Ordinateur01 systemd[1]: systemd-tpm2-setup.service - TPM SRK Setup skipped, unmet condition check ConditionSecurity=measured-uki
░░ Subject: L'unité (unit) systemd-tpm2-setup.service a terminé son démarrage
░░ Defined-By: systemd
░░ Support: http://www.ubuntu.com/support
░░
░░ L'unité (unit) systemd-tpm2-setup.service a terminé son démarrage, avec le résultat done.
jui 17 09:42:02 Ordinateur01 systemd[1]: systemd-pcrnvdone.service - TPM PCR NvPCR Initialization Separator skipped, unmet condition check ConditionSecurity=measured-uki
░░ Subject: L'unité (unit) systemd-pcrnvdone.service a terminé son démarrage
░░ Defined-By: systemd
░░ Support: http://www.ubuntu.com/support
░░
░░ L'unité (unit) systemd-pcrnvdone.service a terminé son démarrage, avec le résultat done.
jui 17 09:42:03 Ordinateur01 systemd[1]: systemd-rfkill.service: Deactivated successfully.
░░ Subject: Unit succeeded
░░ Defined-By: systemd
░░ Support: http://www.ubuntu.com/support
░░
░░ The unit systemd-rfkill.service has successfully entered the 'dead' state.
kubuntu@kubuntu:~$
kubuntu@kubuntu:~$ sudo umount /mnt

Cordialement,


L'ami René
Tous pour un et un pour tous !
Linux Kubuntu 26.04

Hors ligne

#38 Le 18/07/2026, à 01:29

Babdu89

Re : [Résolu] Nouvel ordinateur multidisque sans utiliser les UUID

Bonjour.
Je me permet une intervention quand même.
Post#4 de ce sujet geole demande de faire un boot-info pour y voir plus clair dans ton installation.
Je le conseille aussi.
Tu réponds;

Bonjour geole, Babdu89 et le monde,

La procédure « boot-info », c'est trop lourd pour moi et je ne sais pas tout ce que cela rendra disponible pour tout un chacun comme informations.

Je ne panse pas à mal de vous, fournir des infos comme cela a l'aveugle, je ne suis pas chaud.

S'il vous plaît, faisons sans cette procédure.

Ok, mais rien n'empêche que je poste un boot-info d'une de mes installation.

Pour que l'on voit de quoi il en retourne.
Une machine UEFI uniquement avec un SSD interne et deux SSD externes branchés.

      
boot-info-4ppa2088                                              [20260716_1543]

============================== Boot Info Summary ===============================

 => No boot loader is installed in the MBR of /dev/nvme0n1.
 => No boot loader is installed in the MBR of /dev/sda.
 => Grub2 (v1.99-2.00) is installed in the MBR of /dev/sdb and looks at sector 
    1648777216 of the same hard drive for core.img, but core.img can not be 
    found at this location.

nvme0n1p1: _____________________________________________________________________

    File system:       vfat
    Boot sector type:  FAT32
    Boot sector info:  No errors found in the Boot Parameter Block.
    Operating System:  
    Boot files:        /efi/BOOT/bkpbootx64.efi /efi/BOOT/bootx64.efi 
                       /efi/BOOT/fbx64.efi /efi/BOOT/mmx64.efi 
                       /efi/ubuntu/grubx64.efi /efi/ubuntu/mmx64.efi 
                       /efi/ubuntu/shimx64.efi /efi/ubuntu/grub.cfg

nvme0n1p2: _____________________________________________________________________

    File system:       ext4
    Boot sector type:  -
    Boot sector info: 
    Operating System:  Ubuntu 26.04 LTS
    Boot files:        /boot/grub/grub.cfg /etc/fstab /etc/default/grub

nvme0n1p3: _____________________________________________________________________

    File system:       ext4
    Boot sector type:  -
    Boot sector info: 
    Operating System:  Ubuntu 24.04.4 LTS
    Boot files:        /boot/grub/grub.cfg /etc/fstab /etc/default/grub

nvme0n1p4: _____________________________________________________________________

    File system:       ext4
    Boot sector type:  -
    Boot sector info: 
    Boot file info:      Grub2 (v2.00) in the file 
                       /ubuntu-26.04-desktop-amd64.iso looks at sector 0 of 
                       the same hard drive for core.img, but core.img can not 
                       be found at this location.
    Operating System:  
    Boot files:        

nvme0n1p5: _____________________________________________________________________

    File system:       vfat
    Boot sector type:  FAT32
    Boot sector info:  According to the info in the boot sector, nvme0n1p5 
                       starts at sector 2048. But according to the info from 
                       fdisk, nvme0n1p5 starts at sector 739657728.
    Operating System:  
    Boot files:        /efi/BOOT/bootx64.efi /efi/BOOT/fbx64.efi 
                       /efi/BOOT/mmx64.efi /efi/ubuntu/grubx64.efi 
                       /efi/ubuntu/mmx64.efi /efi/ubuntu/shimx64.efi 
                       /efi/ubuntu/grub.cfg

sda1: __________________________________________________________________________

    File system:       vfat
    Boot sector type:  FAT32
    Boot sector info:  No errors found in the Boot Parameter Block.
    Operating System:  
    Boot files:        /efi/BOOT/bkpbootx64.efi /efi/BOOT/bootx64.efi 
                       /efi/BOOT/fbx64.efi /efi/BOOT/mmx64.efi 
                       /efi/ubuntu/grubx64.efi /efi/ubuntu/mmx64.efi 
                       /efi/ubuntu/shimx64.efi /efi/ubuntu/grub.cfg

sda2: __________________________________________________________________________

    File system:       ext4
    Boot sector type:  -
    Boot sector info: 
    Operating System:  Ubuntu 24.04.4 LTS
    Boot files:        /boot/grub/grub.cfg /etc/fstab /etc/default/grub

sda3: __________________________________________________________________________

    File system:       ntfs
    Boot sector type:  Unknown
    Boot sector info:  No errors found in the Boot Parameter Block.
    Operating System:  
    Boot files:        

sda4: __________________________________________________________________________

    File system:       ext4
    Boot sector type:  -
    Boot sector info: 
    Operating System:  Ubuntu 26.04 LTS
    Boot files:        /boot/grub/grub.cfg /etc/fstab /etc/default/grub

sdb1: __________________________________________________________________________

    File system:       ntfs
    Boot sector type:  Unknown
    Boot sector info:  No errors found in the Boot Parameter Block.
    Operating System:  
    Boot files:        

sdb2: __________________________________________________________________________

    File system:       BIOS Boot partition
    Boot sector type:  Grub2's core.img
    Boot sector info: 

sdb3: __________________________________________________________________________

    File system:       ext4
    Boot sector type:  -
    Boot sector info: 
    Operating System:  Ubuntu 24.04.4 LTS
    Boot files:        /boot/grub/grub.cfg /etc/fstab /etc/default/grub

sdb4: __________________________________________________________________________

    File system:       vfat
    Boot sector type:  FAT32
    Boot sector info:  According to the info in the boot sector, sdb4 starts 
                       at sector 1647732736. But according to the info from 
                       fdisk, sdb4 starts at sector 1239095296.
    Operating System:  
    Boot files:        /efi/BOOT/bkpbootx64.efi /efi/BOOT/bootx64.efi 
                       /efi/BOOT/fbx64.efi /efi/BOOT/mmx64.efi 
                       /efi/ubuntu/grubx64.efi /efi/ubuntu/mmx64.efi 
                       /efi/ubuntu/shimx64.efi /efi/ubuntu/grub.cfg


================================ 5 OS detected =================================

OS#1 (linux):   L'OS actuellement utilisé - Ubuntu 26.04 LTS on nvme0n1p2
OS#2 (linux):   Ubuntu 24.04.4 LTS on nvme0n1p3
OS#3 (linux):   Ubuntu 24.04.4 LTS on sda2
OS#4 (linux):   Ubuntu 26.04 LTS on sda4
OS#5 (linux):   Ubuntu 24.04.4 LTS on sdb3

================================ Host/Hardware =================================

CPU architecture: 64-bit
Video: AD107M [GeForce RTX 4050 Max-Q / Mobile] Alder Lake-P Integrated Graphics Controller from NVIDIA Corporation Intel Corporation
BOOT_IMAGE of the installed session in use:
/boot/vmlinuz-7.0.0-27-generic root=UUID=459c0492-aee7-460b-b354-2441ebcece76 ro quiet splash crashkernel=2G-4G:320M,4G-32G:512M,32G-64G:1024M,64G-128G:2048M,128G-:4096M
df -Th / : /dev/nvme0n1p2   ext4   346G    250G   79G  77% /

===================================== UEFI =====================================

BIOS/UEFI firmware: FB03(7.3) from INSYDE Corp.
The firmware is EFI-compatible, and is set in EFI-mode for this installed-session.
SecureBoot disabled (confirmed by mokutil).
BootCurrent: 0000
Timeout: 2 seconds
BootOrder: 0000,0001,0002,2001,2002,2003
Boot0000* Ubuntu	HD(1,GPT,d08d65bf-943a-4621-af98-49ccdd6c82e9,0x800,0xfa000)/\EFI\ubuntu\grubx64.efi
Boot0001* ubuntu	HD(1,GPT,d08d65bf-943a-4621-af98-49ccdd6c82e9,0x800,0xfa000)/\EFI\ubuntu\shimx64.efiRC
Boot0002* ubuntu	HD(5,GPT,0d9c4faf-4faf-4f83-8637-c1f486c95d34,0x2c164800,0xfa000)/\EFI\ubuntu\shimx64.efiRC
Boot2001* EFI USB Device	RC
Boot2002* EFI DVD/CDROM	RC
Boot2003* EFI Network	RC

07e25dcaf57c776875f78fa36827c58e   nvme0n1p5/BOOT/bootx64.efi
6c4ec35ced47a0bfa4cc96d3570d2e17   nvme0n1p5/BOOT/fbx64.efi
9f09ebdacbdc7c46269f99c7754bbfd3   nvme0n1p5/BOOT/mmx64.efi
b63c7618fb96d52520b42b8cc7b124f0   nvme0n1p5/ubuntu/grubx64.efi
9f09ebdacbdc7c46269f99c7754bbfd3   nvme0n1p5/ubuntu/mmx64.efi
211a377300f24895b42f5ce384344a0c   nvme0n1p5/ubuntu/shimx64.efi
b63c7618fb96d52520b42b8cc7b124f0   nvme0n1p1/BOOT/bkpbootx64.efi
b63c7618fb96d52520b42b8cc7b124f0   nvme0n1p1/BOOT/bootx64.efi
6c4ec35ced47a0bfa4cc96d3570d2e17   nvme0n1p1/BOOT/fbx64.efi
9f09ebdacbdc7c46269f99c7754bbfd3   nvme0n1p1/BOOT/mmx64.efi
b63c7618fb96d52520b42b8cc7b124f0   nvme0n1p1/ubuntu/grubx64.efi
9f09ebdacbdc7c46269f99c7754bbfd3   nvme0n1p1/ubuntu/mmx64.efi
211a377300f24895b42f5ce384344a0c   nvme0n1p1/ubuntu/shimx64.efi
07e25dcaf57c776875f78fa36827c58e   sdb4/BOOT/bkpbootx64.efi
07e25dcaf57c776875f78fa36827c58e   sdb4/BOOT/bootx64.efi
39bc76ff6662f4fbe9aa116e4c997b41   sdb4/BOOT/fbx64.efi
4ba5a5aad43c197e9fb58b76b404d287   sdb4/BOOT/mmx64.efi
94c7467f956700d44c5b4dcd3967535c   sdb4/ubuntu/grubx64.efi
4ba5a5aad43c197e9fb58b76b404d287   sdb4/ubuntu/mmx64.efi
07e25dcaf57c776875f78fa36827c58e   sdb4/ubuntu/shimx64.efi
07e25dcaf57c776875f78fa36827c58e   sda1/BOOT/bkpbootx64.efi
b63c7618fb96d52520b42b8cc7b124f0   sda1/BOOT/bootx64.efi
6c4ec35ced47a0bfa4cc96d3570d2e17   sda1/BOOT/fbx64.efi
9f09ebdacbdc7c46269f99c7754bbfd3   sda1/BOOT/mmx64.efi
b63c7618fb96d52520b42b8cc7b124f0   sda1/ubuntu/grubx64.efi
9f09ebdacbdc7c46269f99c7754bbfd3   sda1/ubuntu/mmx64.efi
211a377300f24895b42f5ce384344a0c   sda1/ubuntu/shimx64.efi

============================= Drive/Partition Info =============================

Disks info: ____________________________________________________________________

nvme0n1	: is-GPT,	no-BIOSboot,	has---ESP, 	not-usb,	not-mmc, has-os,	no-wind,	2048 sectors * 512 bytes
sdb	: is-GPT,	hasBIOSboot,	has---ESP, 	usb-disk,	not-mmc, has-os,	no-wind,	2048 sectors * 512 bytes
sda	: is-GPT,	no-BIOSboot,	has---ESP, 	usb-disk,	not-mmc, has-os,	no-wind,	2048 sectors * 512 bytes

Partitions info (1/3): _________________________________________________________

nvme0n1p2	: is-os,	64, apt-get,	signed grub-efi ,	grub2,	grub-install,	grubenv-ng,	update-grub,	end-after-100GB
nvme0n1p5	: no-os,	64, nopakmgr,	no-docgrub,	nogrub,	nogrubinstall,	no-grubenv,	noupdategrub,	end-after-100GB
nvme0n1p3	: is-os,	64, apt-get,	signed grub-efi ,	grub2,	grub-install,	grubenv-ok,	update-grub,	end-after-100GB
nvme0n1p1	: no-os,	64, nopakmgr,	no-docgrub,	nogrub,	nogrubinstall,	no-grubenv,	noupdategrub,	not-far
nvme0n1p4	: no-os,	64, nopakmgr,	no-docgrub,	nogrub,	nogrubinstall,	no-grubenv,	noupdategrub,	end-after-100GB
sdb4	: no-os,	64, nopakmgr,	no-docgrub,	nogrub,	nogrubinstall,	no-grubenv,	noupdategrub,	end-after-100GB
sdb3	: is-os,	64, apt-get,	signed grub-efi ,	grub2,	grub-install,	grubenv-ok,	update-grub,	end-after-100GB
sdb1	: no-os,	64, nopakmgr,	no-docgrub,	nogrub,	nogrubinstall,	no-grubenv,	noupdategrub,	end-after-100GB
sda4	: is-os,	64, apt-get,	signed grub-efi ,	grub2,	grub-install,	grubenv-ok,	update-grub,	end-after-100GB
sda2	: is-os,	64, apt-get,	signed grub-efi ,	grub2,	grub-install,	grubenv-ok,	update-grub,	not-far
sda3	: no-os,	64, nopakmgr,	no-docgrub,	nogrub,	nogrubinstall,	no-grubenv,	noupdategrub,	end-after-100GB
sda1	: no-os,	64, nopakmgr,	no-docgrub,	nogrub,	nogrubinstall,	no-grubenv,	noupdategrub,	not-far

Partitions info (2/3): _________________________________________________________

nvme0n1p2	: isnotESP,	fstab-has-goodEFI,	no-nt,	no-winload,	no-recov-nor-hid,	no-bmgr,	notwinboot, ext4
nvme0n1p5	: isnotESP,	part-has-no-fstab,	no-nt,	no-winload,	no-recov-nor-hid,	no-bmgr,	notwinboot, vfat
nvme0n1p3	: isnotESP,	fstab-has-goodEFI,	no-nt,	no-winload,	no-recov-nor-hid,	no-bmgr,	notwinboot, ext4
nvme0n1p1	: is---ESP,	part-has-no-fstab,	no-nt,	no-winload,	no-recov-nor-hid,	no-bmgr,	notwinboot, vfat
nvme0n1p4	: isnotESP,	part-has-no-fstab,	no-nt,	no-winload,	no-recov-nor-hid,	no-bmgr,	notwinboot, ext4
sdb4	: is---ESP,	part-has-no-fstab,	no-nt,	no-winload,	no-recov-nor-hid,	no-bmgr,	notwinboot, vfat
sdb3	: isnotESP,	fstab-has-goodEFI,	no-nt,	no-winload,	no-recov-nor-hid,	no-bmgr,	notwinboot, ext4
sdb1	: isnotESP,	part-has-no-fstab,	no-nt,	no-winload,	no-recov-nor-hid,	no-bmgr,	notwinboot, ntfs
sda4	: isnotESP,	fstab-has-bad-efi,	no-nt,	no-winload,	no-recov-nor-hid,	no-bmgr,	notwinboot, ext4
sda2	: isnotESP,	fstab-has-goodEFI,	no-nt,	no-winload,	no-recov-nor-hid,	no-bmgr,	notwinboot, ext4
sda3	: isnotESP,	part-has-no-fstab,	no-nt,	no-winload,	no-recov-nor-hid,	no-bmgr,	notwinboot, ntfs
sda1	: is---ESP,	part-has-no-fstab,	no-nt,	no-winload,	no-recov-nor-hid,	no-bmgr,	notwinboot, vfat

Partitions info (3/3): _________________________________________________________

nvme0n1p2	: not--sepboot,	with-boot,	fstab-without-boot,	not-sep-usr,	with--usr,	fstab-without-usr,	std-grub.d,	nvme0n1
nvme0n1p5	: not--sepboot,	no---boot,	part-has-no-fstab,	not-sep-usr,	no---usr,	part-has-no-fstab,	no--grub.d,	nvme0n1
nvme0n1p3	: not--sepboot,	with-boot,	fstab-without-boot,	not-sep-usr,	with--usr,	fstab-without-usr,	std-grub.d,	nvme0n1
nvme0n1p1	: not--sepboot,	no---boot,	part-has-no-fstab,	not-sep-usr,	no---usr,	part-has-no-fstab,	no--grub.d,	nvme0n1
nvme0n1p4	: maybesepboot,	no---boot,	part-has-no-fstab,	not-sep-usr,	no---usr,	part-has-no-fstab,	no--grub.d,	nvme0n1
sdb4	: not--sepboot,	no---boot,	part-has-no-fstab,	not-sep-usr,	no---usr,	part-has-no-fstab,	no--grub.d,	sdb
sdb3	: not--sepboot,	with-boot,	fstab-without-boot,	not-sep-usr,	with--usr,	fstab-without-usr,	std-grub.d,	sdb
sdb1	: not--sepboot,	no---boot,	part-has-no-fstab,	not-sep-usr,	no---usr,	part-has-no-fstab,	no--grub.d,	sdb
sda4	: not--sepboot,	with-boot,	fstab-without-boot,	not-sep-usr,	with--usr,	fstab-without-usr,	std-grub.d,	sda
sda2	: not--sepboot,	with-boot,	fstab-without-boot,	not-sep-usr,	with--usr,	fstab-without-usr,	std-grub.d,	sda
sda3	: not--sepboot,	no---boot,	part-has-no-fstab,	not-sep-usr,	no---usr,	part-has-no-fstab,	no--grub.d,	sda
sda1	: not--sepboot,	no---boot,	part-has-no-fstab,	not-sep-usr,	no---usr,	part-has-no-fstab,	no--grub.d,	sda

fdisk -l (filtered): ___________________________________________________________

Disk nvme0n1: 931.51 GiB, 1000204886016 bytes, 1953525168 sectors
Disk identifier: D61CB442-6082-421B-B7BA-100288BFCF00
              Start        End   Sectors   Size Type
nvme0n1p1       2048    1026047   1024000   500M EFI System
nvme0n1p2    1026048  739657727 738631680 352.2G Linux filesystem
nvme0n1p3  741138432 1018230783 277092352 132.1G Linux filesystem
nvme0n1p4 1018230784 1953523711 935292928   446G Linux filesystem
nvme0n1p5  739657728  740681727   1024000   500M Microsoft basic data
Partition table entries are not in disk order.
Disk sda: 465.76 GiB, 500107862016 bytes, 976773168 sectors
Disk identifier: 27419491-AB7D-478D-86FF-1722124BA5BE
         Start       End   Sectors   Size Type
sda1       2048   1026047   1024000   500M EFI System
sda2    1026048 176660479 175634432  83.7G Linux filesystem
sda3  176660480 743139327 566478848 270.1G Microsoft basic data
sda4  743139328 976773119 233633792 111.4G Linux filesystem
Disk sdb: 931.51 GiB, 1000204886016 bytes, 1953525168 sectors
Disk identifier: D9A21EAA-C6EF-466D-8DE4-A04406FEA730
          Start        End    Sectors   Size Type
sdb1        2048 1239095295 1239093248 590.8G Microsoft basic data
sdb2  1240139776 1240549375     409600   200M BIOS boot
sdb3  1240549376 1953523711  712974336   340G Linux filesystem
sdb4  1239095296 1240139775    1044480   510M EFI System
Partition table entries are not in disk order.

parted -lm (filtered): _________________________________________________________

sda:500GB:scsi:512:512:gpt:Samsung Portable SSD T5:;
1:1049kB:525MB:524MB:fat32::boot, esp;
2:525MB:90.5GB:89.9GB:ext4::;
3:90.5GB:380GB:290GB:ntfs::msftdata;
4:380GB:500GB:120GB:ext4::;
sdb:1000GB:scsi:512:512:gpt:Samsung PSSD T7:;
1:1049kB:634GB:634GB:ntfs::msftdata;
4:634GB:635GB:535MB:fat32::boot, esp;
2:635GB:635GB:210MB:::bios_grub;
3:635GB:1000GB:365GB:ext4::;
nvme0n1:1000GB:nvme:512:512:gpt:KINGSTON SNV2S1000G:;
1:1049kB:525MB:524MB:fat32::boot, esp;
2:525MB:379GB:378GB:ext4::;
5:379GB:379GB:524MB:fat32::msftdata;
3:379GB:521GB:142GB:ext4:ubuntu-24.04:;
4:521GB:1000GB:479GB:ext4:DATA:;

Free space >10MiB: ______________________________________________________________

nvme0n1: 361661MiB:361884MiB:223MiB

blkid (filtered): ______________________________________________________________

NAME        FSTYPE   UUID                                 PARTUUID                             LABEL            PARTLABEL
sda                                                                                                             
├─sda1      vfat     A256-F28F                            5dbc511e-6907-40e8-b1b2-2682662e0294                  
├─sda2      ext4     1f187d1b-8648-4fc8-8792-19bd64e3feb7 8fa6d1d9-44b8-436d-a65f-16b1d748882d ubuntu-24.04-T5  
├─sda3      ntfs     58527C34174B150C                     5c6afd7d-3656-4aed-9edd-46179ffad5af data-T5          
└─sda4      ext4     b4a8b6e0-041a-432c-9603-2b5174765c8b 3b286ad6-2c19-46c6-aabb-6410e594616c ubuntu-26.04-T5  
sdb                                                                                                             
├─sdb1      ntfs     541357EA26F3363A                     49acc8f7-a2ee-40ee-9639-894043a0f5d9 data-T7          
├─sdb2                                                    0788d1ca-3e05-4f30-9823-60bc5daeb5ad                  
├─sdb3      ext4     80180518-d942-430f-a451-02f7f3201007 723cb6f1-1664-4722-9d84-efa7d4870e60 copy-ubu-24.04   
└─sdb4      vfat     78C2-CC8D                            876ca173-5a39-4a67-8812-87afcabbc92d EFI              
nvme0n1                                                                                                         
├─nvme0n1p1 vfat     60E0-BBA3                            d08d65bf-943a-4621-af98-49ccdd6c82e9 EFI              
├─nvme0n1p2 ext4     459c0492-aee7-460b-b354-2441ebcece76 7ce94946-a8fd-4d99-8686-c23ff6be54ef gigab-26.04      
├─nvme0n1p3 ext4     c7757e88-d71f-46fd-8939-852e449cf177 0dff4bbc-3331-4f30-9972-5c2620c88a8a yvonne-ubu-24.04 ubuntu-24.04
├─nvme0n1p4 ext4     078126c9-6945-4e5b-8efd-5e4e5d028521 41e38b0b-8660-4879-b306-b6321c210556 DATA             DATA
└─nvme0n1p5 vfat     A256-F28F                            0d9c4faf-4faf-4f83-8637-c1f486c95d34                  

Mount points (filtered): _______________________________________________________

                        Avail Use% Mounted on
/dev/nvme0n1p1         488.2M   2% /mnt/boot-sav/nvme0n1p1
/dev/nvme0n1p2          78.7G  72% /
/dev/nvme0n1p3          61.7G  47% /mnt/boot-sav/nvme0n1p3
/dev/nvme0n1p4          31.5G  88% /mnt/boot-sav/nvme0n1p4
/dev/nvme0n1p5         492.7M   1% /mnt/boot-sav/nvme0n1p5
/dev/sda1                490M   2% /mnt/boot-sav/sda1
/dev/sda2               21.3G  69% /mnt/boot-sav/sda2
/dev/sda3              202.9G  25% /run/media/bernard/data-T5
/dev/sda4               49.2G  50% /mnt/boot-sav/sda4
/dev/sdb1              102.2G  83% /run/media/bernard/data-T7
/dev/sdb3               68.3G  74% /mnt/boot-sav/sdb3
/dev/sdb4              501.9M   1% /mnt/boot-sav/sdb4
efivarfs                  59K  76% /sys/firmware/efi/efivars

Mount options (filtered): ______________________________________________________

/dev/nvme0n1p1         vfat            rw,relatime,fmask=0002,dmask=0002,allow_utime=0020,codepage=437,iocharset=iso8859-1,shortname=mixed,errors=remount-ro
/dev/nvme0n1p2         ext4            rw,relatime
/dev/nvme0n1p3         ext4            rw,relatime
/dev/nvme0n1p4         ext4            rw,relatime
/dev/nvme0n1p5         vfat            rw,relatime,fmask=0002,dmask=0002,allow_utime=0020,codepage=437,iocharset=iso8859-1,shortname=mixed,errors=remount-ro
/dev/sda1              vfat            rw,relatime,fmask=0002,dmask=0002,allow_utime=0020,codepage=437,iocharset=iso8859-1,shortname=mixed,errors=remount-ro
/dev/sda2              ext4            rw,relatime,stripe=8191
/dev/sda3              ntfs3           rw,nosuid,nodev,relatime,uid=1000,gid=1000,acl,iocharset=utf8,prealloc
/dev/sda4              ext4            rw,relatime,stripe=8191
/dev/sdb1              ntfs3           rw,nosuid,nodev,relatime,uid=1000,gid=1000,acl,iocharset=utf8,prealloc
/dev/sdb3              ext4            rw,relatime,stripe=8191
/dev/sdb4              vfat            rw,relatime,fmask=0002,dmask=0002,allow_utime=0020,codepage=437,iocharset=iso8859-1,shortname=mixed,errors=remount-ro

=================== nvme0n1p1/efi/ubuntu/grub.cfg (filtered) ===================

search.fs_uuid 459c0492-aee7-460b-b354-2441ebcece76 root 
set prefix=($root)'/boot/grub'
configfile $prefix/grub.cfg

=================== nvme0n1p2/boot/grub/grub.cfg (filtered) ====================

Ubuntu   459c0492-aee7-460b-b354-2441ebcece76
Ubuntu 24.04.4 LTS (24.04) (on nvme0n1p3)   c7757e88-d71f-46fd-8939-852e449cf177
Ubuntu 24.04.4 LTS (24.04) (on sda2)   1f187d1b-8648-4fc8-8792-19bd64e3feb7
Ubuntu 26.04 LTS (26.04) (on sda4)   b4a8b6e0-041a-432c-9603-2b5174765c8b
Ubuntu 24.04.4 LTS (24.04) (on sdb3)   80180518-d942-430f-a451-02f7f3201007
### END /etc/grub.d/30_os-prober ###
UEFI Firmware Settings   uefi-firmware
### END /etc/grub.d/30_uefi-firmware ###

======================== nvme0n1p2/etc/fstab (filtered) ========================

# <file system> <mount point>   <type>  <options>       <dump>  <pass>
# / was on /dev/nvme0n1p2 during curtin installation
/dev/disk/by-uuid/459c0492-aee7-460b-b354-2441ebcece76 / ext4 defaults 0 1
# /boot/efi was on /dev/nvme0n1p1 during curtin installation
/swap.img	none	swap	sw	0	0
UUID=60E0-BBA3  /boot/efi       vfat    defaults      0       1

==================== nvme0n1p2/etc/default/grub (filtered) =====================

GRUB_DEFAULT=saved
GRUB_SAVEDEFAULT=true
GRUB_TIMEOUT_STYLE=hidden
GRUB_TIMEOUT=0
GRUB_DISTRIBUTOR=`( . /etc/os-release; echo ${NAME:-Ubuntu} ) 2>/dev/null || echo Ubuntu`
GRUB_CMDLINE_LINUX_DEFAULT="quiet splash"
GRUB_CMDLINE_LINUX=""

================= nvme0n1p2: Location of files loaded by Grub ==================

           GiB - GB             File                                 Fragment(s)
 214,886562347 = 230,732689408  boot/grub/grub.cfg                             1
   0,661128998 = 0,709881856    boot/vmlinuz                                   2
   0,723628998 = 0,776990720    boot/vmlinuz-7.0.0-22-generic                  2
   0,661128998 = 0,709881856    boot/vmlinuz-7.0.0-27-generic                  2
   0,723628998 = 0,776990720    boot/vmlinuz.old                               2
 304,028316498 = 326,447919104  boot/initrd.img                                5
   0,645496368 = 0,693096448    boot/initrd.img-7.0.0-22-generic               2
 304,028316498 = 326,447919104  boot/initrd.img-7.0.0-27-generic               5
   0,645496368 = 0,693096448    boot/initrd.img.old                            2

=================== nvme0n1p2: ls -l /etc/grub.d/ (filtered) ===================

-rwxr-xr-x 1 root root 17611 Mar  6 15:04 10_linux
-rwxr-xr-x 1 root root 42690 Mar  6 15:04 10_linux_zfs
-rwxr-xr-x 1 root root 14430 Mar  6 15:04 20_linux_xen
-rwxr-xr-x 1 root root 13619 Mar  6 15:04 30_os-prober
-rwxr-xr-x 1 root root  1174 Mar  6 15:04 30_uefi-firmware
-rwxr-xr-x 1 root root   214 Mar  6 15:04 40_custom
-rwxr-xr-x 1 root root   215 Mar  6 15:04 41_custom

=================== nvme0n1p3/boot/grub/grub.cfg (filtered) ====================

Ubuntu   c7757e88-d71f-46fd-8939-852e449cf177
Ubuntu 26.04 LTS (26.04) (on nvme0n1p2)   459c0492-aee7-460b-b354-2441ebcece76
Ubuntu 24.04.4 LTS (24.04) (on sda2)   1f187d1b-8648-4fc8-8792-19bd64e3feb7
Ubuntu 26.04 LTS (26.04) (on sda4)   b4a8b6e0-041a-432c-9603-2b5174765c8b
Ubuntu 24.04.4 LTS (24.04) (on sdb3)   80180518-d942-430f-a451-02f7f3201007
### END /etc/grub.d/30_os-prober ###
UEFI Firmware Settings   uefi-firmware
### END /etc/grub.d/30_uefi-firmware ###

======================== nvme0n1p3/etc/fstab (filtered) ========================

# <file system> <mount point>   <type>  <options>       <dump>  <pass>
# / was on /dev/sdb2 during curtin installation
/dev/disk/by-uuid/c7757e88-d71f-46fd-8939-852e449cf177 / ext4 defaults 0 1
# /boot/efi was on /dev/sdb1 during curtin installation
/swap.img	none	swap	sw	0	0
UUID=60E0-BBA3  /boot/efi       vfat    defaults      0       1

==================== nvme0n1p3/etc/default/grub (filtered) =====================

GRUB_DEFAULT=0
GRUB_TIMEOUT_STYLE=menu
GRUB_TIMEOUT=2
GRUB_DISTRIBUTOR=`( . /etc/os-release; echo ${NAME:-Ubuntu} ) 2>/dev/null || echo Ubuntu`
GRUB_CMDLINE_LINUX_DEFAULT="quiet splash"
GRUB_CMDLINE_LINUX=""
GRUB_DISABLE_OS_PROBER=false

================= nvme0n1p3: Location of files loaded by Grub ==================

           GiB - GB             File                                 Fragment(s)
 481,824474335 = 517,355089920  boot/grub/grub.cfg                             1
 379,066402435 = 407,019450368  boot/vmlinuz                                   2
 415,605438232 = 446,252941312  boot/vmlinuz-6.17.0-35-generic                 2
 379,066402435 = 407,019450368  boot/vmlinuz-6.17.0-40-generic                 2
 415,605438232 = 446,252941312  boot/vmlinuz.old                               2
 463,890048981 = 498,098147328  boot/initrd.img                                1
 425,335380554 = 456,700387328  boot/initrd.img-6.17.0-35-generic              3
 463,890048981 = 498,098147328  boot/initrd.img-6.17.0-40-generic              1
 369,377014160 = 396,615548928  boot/initrd.img-6.8.0-41-generic               1
 425,335380554 = 456,700387328  boot/initrd.img.old                            3

=================== nvme0n1p3: ls -l /etc/grub.d/ (filtered) ===================

-rwxr-xr-x 1 root root 18133 Apr  4  2024 10_linux
-rwxr-xr-x 1 root root 43202 Apr  4  2024 10_linux_zfs
-rwxr-xr-x 1 root root 14513 Apr  4  2024 20_linux_xen
-rwxr-xr-x 1 root root   786 Apr  4  2024 25_bli
-rwxr-xr-x 1 root root 13120 Apr  4  2024 30_os-prober
-rwxr-xr-x 1 root root  1174 Apr  4  2024 30_uefi-firmware
-rwxr-xr-x 1 root root   744 Mar 12 12:19 35_fwupd
-rwxr-xr-x 1 root root   214 Apr  4  2024 40_custom
-rwxr-xr-x 1 root root   215 Apr  4  2024 41_custom

=================== nvme0n1p5/efi/ubuntu/grub.cfg (filtered) ===================

search.fs_uuid b4a8b6e0-041a-432c-9603-2b5174765c8b root hd1,gpt4 
set prefix=($root)'/boot/grub'
configfile $prefix/grub.cfg

===================== sda1/efi/ubuntu/grub.cfg (filtered) ======================

search.fs_uuid b4a8b6e0-041a-432c-9603-2b5174765c8b root hd1,gpt4 
set prefix=($root)'/boot/grub'
configfile $prefix/grub.cfg

====================== sda2/boot/grub/grub.cfg (filtered) ======================

Ubuntu   1f187d1b-8648-4fc8-8792-19bd64e3feb7
Ubuntu 26.04 LTS (26.04) (on nvme0n1p2)   459c0492-aee7-460b-b354-2441ebcece76
Ubuntu 24.04.4 LTS (24.04) (on nvme0n1p3)   c7757e88-d71f-46fd-8939-852e449cf177
Ubuntu 26.04 LTS (26.04) (on sda4)   b4a8b6e0-041a-432c-9603-2b5174765c8b
Ubuntu 24.04.4 LTS (24.04) (on sdb3)   80180518-d942-430f-a451-02f7f3201007
### END /etc/grub.d/30_os-prober ###
UEFI Firmware Settings   uefi-firmware
### END /etc/grub.d/30_uefi-firmware ###

========================== sda2/etc/fstab (filtered) ===========================

# <file system> <mount point>   <type>  <options>       <dump>  <pass>
# / was on /dev/sdb2 during curtin installation
/dev/disk/by-uuid/1f187d1b-8648-4fc8-8792-19bd64e3feb7 / ext4 defaults 0 1
# /boot/efi was on /dev/sdb1 during curtin installation
/swap.img	none	swap	sw	0	0
UUID=A256-F28F  /boot/efi       vfat    defaults      0       1

======================= sda2/etc/default/grub (filtered) =======================

GRUB_DEFAULT=0
GRUB_TIMEOUT_STYLE=menu
GRUB_TIMEOUT=10
GRUB_DISTRIBUTOR=`( . /etc/os-release; echo ${NAME:-Ubuntu} ) 2>/dev/null || echo Ubuntu`
GRUB_CMDLINE_LINUX_DEFAULT="quiet splash"
GRUB_CMDLINE_LINUX=""
GRUB_DISABLE_OS_PROBER=false

==================== sda2: Location of files loaded by Grub ====================

           GiB - GB             File                                 Fragment(s)
  32,614700317 = 35,019767808   boot/grub/grub.cfg                             1
  79,364223480 = 85,216686080   boot/vmlinuz                                   2
  80,332977295 = 86,256877568   boot/vmlinuz-6.17.0-35-generic                 2
  79,364223480 = 85,216686080   boot/vmlinuz-6.17.0-40-generic                 2
  80,332977295 = 86,256877568   boot/vmlinuz.old                               2
  66,187889099 = 71,068704768   boot/initrd.img                                6
  83,817378998 = 89,998225408   boot/initrd.img-6.17.0-35-generic              5
  66,187889099 = 71,068704768   boot/initrd.img-6.17.0-40-generic              6
  16,268615723 = 17,468293120   boot/initrd.img-6.8.0-41-generic               1
  83,817378998 = 89,998225408   boot/initrd.img.old                            5

===================== sda2: ls -l /etc/grub.d/ (filtered) ======================

-rwxr-xr-x 1 root root 18133 Apr  4  2024 10_linux
-rwxr-xr-x 1 root root 43202 Apr  4  2024 10_linux_zfs
-rwxr-xr-x 1 root root 14513 Apr  4  2024 20_linux_xen
-rwxr-xr-x 1 root root   786 Apr  4  2024 25_bli
-rwxr-xr-x 1 root root 13120 Apr  4  2024 30_os-prober
-rwxr-xr-x 1 root root  1174 Apr  4  2024 30_uefi-firmware
-rwxr-xr-x 1 root root   744 Mar 12 12:19 35_fwupd
-rwxr-xr-x 1 root root   214 Apr  4  2024 40_custom
-rwxr-xr-x 1 root root   215 Apr  4  2024 41_custom

====================== sda4/boot/grub/grub.cfg (filtered) ======================

Ubuntu   b4a8b6e0-041a-432c-9603-2b5174765c8b
Ubuntu 24.04.4 LTS (24.04) (on nvme0n1p2)   bd8f5e89-ca48-4118-a769-c09c8bf3b3d3
Ubuntu 24.04.4 LTS (24.04) (on nvme0n1p3)   c7757e88-d71f-46fd-8939-852e449cf177
Ubuntu 24.04.4 LTS (24.04) (on sda2)   1f187d1b-8648-4fc8-8792-19bd64e3feb7
### END /etc/grub.d/30_os-prober ###
UEFI Firmware Settings   uefi-firmware
### END /etc/grub.d/30_uefi-firmware ###

========================== sda4/etc/fstab (filtered) ===========================

# <file system> <mount point>   <type>  <options>       <dump>  <pass>
# / was on /dev/sdb4 during curtin installation
/dev/disk/by-uuid/b4a8b6e0-041a-432c-9603-2b5174765c8b / ext4 defaults 0 1
# /boot/efi was on /dev/sdb1 during curtin installation
/dev/disk/by-uuid/A256-F28F /boot/efi vfat defaults 0 1
/swap.img	none	swap	sw	0	0

======================= sda4/etc/default/grub (filtered) =======================

GRUB_DEFAULT=0
GRUB_TIMEOUT_STYLE=hidden
GRUB_TIMEOUT=0
GRUB_DISTRIBUTOR=`( . /etc/os-release && echo ${NAME} )`
GRUB_CMDLINE_LINUX_DEFAULT="quiet splash"
GRUB_CMDLINE_LINUX=""

==================== sda4: Location of files loaded by Grub ====================

           GiB - GB             File                                 Fragment(s)
 366,011295319 = 393,001635840  boot/grub/grub.cfg                             1
 394,754878998 = 423,864823808  boot/vmlinuz                                   2
 459,294406891 = 493,163614208  boot/vmlinuz-7.0.0-22-generic                  1
 394,754878998 = 423,864823808  boot/vmlinuz-7.0.0-27-generic                  2
 459,294406891 = 493,163614208  boot/vmlinuz.old                               1
 390,176261902 = 418,948571136  boot/initrd.img                                2
 442,830833435 = 475,485986816  boot/initrd.img-7.0.0-22-generic               4
 390,176261902 = 418,948571136  boot/initrd.img-7.0.0-27-generic               2
 442,830833435 = 475,485986816  boot/initrd.img.old                            4

===================== sda4: ls -l /etc/grub.d/ (filtered) ======================

-rwxr-xr-x 1 root root 17611 Mar  6 15:04 10_linux
-rwxr-xr-x 1 root root 42690 Mar  6 15:04 10_linux_zfs
-rwxr-xr-x 1 root root 14430 Mar  6 15:04 20_linux_xen
-rwxr-xr-x 1 root root 13619 Mar  6 15:04 30_os-prober
-rwxr-xr-x 1 root root  1174 Mar  6 15:04 30_uefi-firmware
-rwxr-xr-x 1 root root   744 Apr 17 20:44 35_fwupd
-rwxr-xr-x 1 root root   214 Mar  6 15:04 40_custom
-rwxr-xr-x 1 root root   215 Mar  6 15:04 41_custom

====================== sdb3/boot/grub/grub.cfg (filtered) ======================

Ubuntu   80180518-d942-430f-a451-02f7f3201007
Ubuntu 26.04 LTS (26.04) (on nvme0n1p2)   459c0492-aee7-460b-b354-2441ebcece76
Ubuntu 24.04.4 LTS (24.04) (on nvme0n1p3)   c7757e88-d71f-46fd-8939-852e449cf177
Ubuntu 24.04.4 LTS (24.04) (on sda2)   1f187d1b-8648-4fc8-8792-19bd64e3feb7
Ubuntu 26.04 LTS (26.04) (on sda4)   b4a8b6e0-041a-432c-9603-2b5174765c8b
### END /etc/grub.d/30_os-prober ###
UEFI Firmware Settings   uefi-firmware
### END /etc/grub.d/30_uefi-firmware ###

========================== sdb3/etc/fstab (filtered) ===========================

# <file system> <mount point>   <type>  <options>       <dump>  <pass>
# / was on /dev/sda3 during curtin installation
/dev/disk/by-uuid/80180518-d942-430f-a451-02f7f3201007 / ext4 defaults 0 1
# /boot/efi was on /dev/sda4 during curtin installation
/swap.img	none	swap	sw	0	0
UUID=78C2-CC8D  /boot/efi       vfat    defaults      0       1

======================= sdb3/etc/default/grub (filtered) =======================

GRUB_DEFAULT=0
GRUB_TIMEOUT_STYLE=menu
GRUB_TIMEOUT=10
GRUB_DISTRIBUTOR=`( . /etc/os-release; echo ${NAME:-Ubuntu} ) 2>/dev/null || echo Ubuntu`
GRUB_CMDLINE_LINUX_DEFAULT="quiet splash"
GRUB_CMDLINE_LINUX=""
GRUB_DISABLE_OS_PROBER=false

==================== sdb3: Location of files loaded by Grub ====================

           GiB - GB             File                                 Fragment(s)
 726,555000305 = 780,132491264  boot/grub/grub.cfg                             1
 792,836879730 = 851,302117376  boot/vmlinuz                                   2
 833,524383545 = 894,989991936  boot/vmlinuz-6.17.0-35-generic                 2
 792,836879730 = 851,302117376  boot/vmlinuz-6.17.0-40-generic                 2
 833,524383545 = 894,989991936  boot/vmlinuz.old                               2
 663,746482849 = 712,692359168  boot/initrd.img                                6
 923,102535248 = 991,173799936  boot/initrd.img-6.17.0-35-generic              8
 663,746482849 = 712,692359168  boot/initrd.img-6.17.0-40-generic              6
 923,102535248 = 991,173799936  boot/initrd.img.old                            8

===================== sdb3: ls -l /etc/grub.d/ (filtered) ======================

-rwxr-xr-x 1 root root 18133 Sep 11  2024 10_linux
-rwxr-xr-x 1 root root 43202 Sep 11  2024 10_linux_zfs
-rwxr-xr-x 1 root root 14513 Sep 11  2024 20_linux_xen
-rwxr-xr-x 1 root root   786 Sep 11  2024 25_bli
-rwxr-xr-x 1 root root 13120 Sep 11  2024 30_os-prober
-rwxr-xr-x 1 root root  1174 Sep 11  2024 30_uefi-firmware
-rwxr-xr-x 1 root root   744 Mar 12 12:19 35_fwupd
-rwxr-xr-x 1 root root   214 Sep 11  2024 40_custom
-rwxr-xr-x 1 root root   215 Sep 11  2024 41_custom

===================== sdb4/efi/ubuntu/grub.cfg (filtered) ======================

search.fs_uuid 80180518-d942-430f-a451-02f7f3201007 root hd0,gpt3 
set prefix=($root)'/boot/grub'
configfile $prefix/grub.cfg



Suggested repair: ______________________________________________________________

The default repair of the Boot-Repair utility would purge (in order to unsign) and reinstall the grub-efi of
nvme0n1p2,
using the following options:  nvme0n1p1/boot/efi
Additional repair would be performed: unhide-bootmenu-10s use-standard-efi-file restore-efi-backups

Final advice in case of suggested repair: ______________________________________

Please do not forget to make your UEFI firmware boot on the L'OS actuellement utilisé - Ubuntu 26.04 LTS entry (nvme0n1p1/efi/****/grub****.efi (**** will be updated in the final message) file) !

On voit que sur un SSD externe /dev/sdb j'ai fait une installation qui démarre en mode UEFi et en Bios_Legacy.
Dans le secteur de boot de ce disque on voit ceci;

 => Grub2 (v1.99-2.00) is installed in the MBR of /dev/sdb and looks at sector 
    1648777216 of the same hard drive for core.img, but core.img can not be 
    found at this location.

Grub installé dans le MBR du disque.
Grub en mode Legacy s'installe en deux partie. Une partie dans le secteur de boot du disque, l'autre partie dans le système, ici la partition /dev/sdb3.

En mode UEFI il n'y a pas d'installation d'une partie de grub-efi dans les secteur de boot du disque .

 => No boot loader is installed in the MBR of /dev/nvme0n1.
 => No boot loader is installed in the MBR of /dev/sda.

C'est dans la partition boot-efi qu'il s'installe.

nvme0n1p1: _____________________________________________________________________

    File system:       vfat
    Boot sector type:  FAT32
    Boot sector info:  No errors found in the Boot Parameter Block.
    Operating System:  
    Boot files:        /efi/BOOT/bkpbootx64.efi /efi/BOOT/bootx64.efi 
                       /efi/BOOT/fbx64.efi /efi/BOOT/mmx64.efi 
                       /efi/ubuntu/grubx64.efi /efi/ubuntu/mmx64.efi 
                       /efi/ubuntu/shimx64.efi /efi/ubuntu/grub.cfg

Exemple dans l'installation du SSD interne...

Pour que le sysyème du SSD externe démarre aussi en mode UEFI, en /dev/sdb4 j'ai fais une partition boot-efi sur ce disque.

sdb4: __________________________________________________________________________

    File system:       vfat
    Boot sector type:  FAT32
    Boot sector info:  According to the info in the boot sector, sdb4 starts 
                       at sector 1647732736. But according to the info from 
                       fdisk, sdb4 starts at sector 1239095296.
    Operating System:  
    Boot files:        /efi/BOOT/bkpbootx64.efi /efi/BOOT/bootx64.efi 
                       /efi/BOOT/fbx64.efi /efi/BOOT/mmx64.efi 
                       /efi/ubuntu/grubx64.efi /efi/ubuntu/mmx64.efi 
                       /efi/ubuntu/shimx64.efi /efi/ubuntu/grub.cfg

Alors, pour faire démarrer correctement un de mes systèmes, qui ne voulait pas démarrer, après recherche, j'ai été obligé de faire une manip.
Je suis certain que geole va trouver ce que j'ai fait.

Voila à quoi sert un boot-info. On ne voit rien de personnel dans le boot-info.

Bonne continuation.

@+.   Babdu89   .

Dernière modification par Babdu89 (Le 18/07/2026, à 09:05)


J'ai découvert Ubuntu avec la 07.10.... Et alors?!...  Depuis je regarde de temps en temps si Windows marche toujours....

Hors ligne

#39 Le 18/07/2026, à 08:34

geole

Re : [Résolu] Nouvel ordinateur multidisque sans utiliser les UUID

ZBonjour

1) Je n’arrive toujours pas à comprendre la cause du plantage
  Alors tu vas publier la totalité de la trace de la façon suivante
- Avec le support d’installation , choisis  "essayer avant d’installer"
- Monte la structure de boot EFI. Rectifie si je me trompe dans son nom.

sudo mount /dev/disk/by-label/0Sa2To-boot   /mnt

- installe un logiciel de transfert de fichier

if test -z $(which pastebinit);then sudo apt install pastebinit;fi;

Publie la ligne qui sera générée par cette commande

journalctl  -D /mnt/var/log/journal  --no-pager -b | pastebinit

2) Je ne comprends pas très bien comment ce boot légacy mets  en route.
Cela serait pas mal que tu fasses un boot-info en local et que tu en publies  le début  qui traite de la décofication du MBR

3) Je crois comprendre  pourquoi le boot efi ne met pas en route

Lami a écrit :

efibootmgr
BootOrder: 0004,0005
Boot0004* debian        HD(1,MBR,0xf262b247,0x800,0x96000)/\EFI\DEBIAN\SHIMX64.EFI0000424f

Si  je ne me trompe pas, cela veut dire booter sur le disque 1 qui a une table de partition MS-DOS à partir de l’adresse 0xf262b247
Mais comme  tes disques passent leur temps à changer de N°, c’est quasiment du n’importe quoi qui boote.
Je te propose de convertir tous tes disques  ayant une table de partition DOS en table de partition GPT
Mais cela va détruire les boots LEGACY
- identifier les disques

sudo fdisk -l | grep -E "Disque|étiquette" | grep -vE "loop|mapper"

- convertir les disques qui sont dos en remplaçant xxx par la bonne valeur

sudo sgdisk  --mbrtogpt   /dev/xxx && sudo partprobe /dev/xxx

- Réinstaller toute la structure de boot  avec boot-repair
en utilisant la fonctionnalité  Utilisation avancée, tu pourras choisir  la partition contenant un O.S et  la partition EFI du même disque.
Boot-repair ne sachant réparer  qu’un O.S à la fois,  il faudra que tu bootes 4 fois.

Dernière modification par geole (Le 18/07/2026, à 13:51)


Les écrans de l'installateur 26.04 https://doc.ubuntu-fr.org/tutoriel/inst … _subiquity

Les partitions EXT4 des disques externes => https://forum.ubuntu-fr.org/viewtopic.p … #p22697248

Hors ligne

#40 Le 18/07/2026, à 10:44

Lami

Re : [Résolu] Nouvel ordinateur multidisque sans utiliser les UUID

Babdu89 a écrit :

Bonjour.
Je me permet une intervention quand même.
Post#4 de ce sujet geole demande de faire un boot-info pour y voir plus clair dans ton installation.
Je le conseille aussi.
Tu réponds;

Bonjour geole, Babdu89 et le monde,

La procédure « boot-info », c'est trop lourd pour moi et je ne sais pas tout ce que cela rendra disponible pour tout un chacun comme informations.

Je ne panse pas à mal de vous, fournir des infos comme cela a l'aveugle, je ne suis pas chaud.

S'il vous plaît, faisons sans cette procédure.

Ok, mais rien n'empêche que je poste un boot-info d'une de mes installation.

Pour que l'on voit de quoi il en retourne.
Une machine UEFI uniquement avec un SSD interne et deux SSD externes branchés.
...
...
Bonne continuation.

@+.   Babdu89   .

Bonjour Babdu89,

Merci pour ces informations et détails !

Cordialement,


L'ami René
Tous pour un et un pour tous !
Linux Kubuntu 26.04

Hors ligne

#41 Le 18/07/2026, à 11:06

Lami

Re : [Résolu] Nouvel ordinateur multidisque sans utiliser les UUID

Bonjour geole,

Merci de l'aide !

Il n'y a que le « boot-info » que je ne ferai pas, trop compliqué pour moi.

Je réinstalle avec clé Live UEFI en changeant les tables de partition pour des « GPT » sur les 4 disques, 2 Kubuntu 26.04 (disques avec étiquettes 0Sa2To- "même si c'est un 500Go" et 3Sa2To-) et 2 Debian 13 (disques avec étiquettes 1Sa2To- et 2Sa2To-).

Je ne vais modifier le fstab et grub que sur le 3Sa2To et je vous reviens avec les résultats de votre dernier message.

J'aurai alors l'avantage de garder sans modification le 0Sa2To qui remplacera avantageusement une clé Live pour récolter les informations et exécuter vos commandes dans une console.

À tout de suite !

Cordialement,


L'ami René
Tous pour un et un pour tous !
Linux Kubuntu 26.04

Hors ligne

#42 Le 18/07/2026, à 11:12

O_20_100_O

Re : [Résolu] Nouvel ordinateur multidisque sans utiliser les UUID

Il n'y a que le « boot-info » que je ne ferai pas, trop compliqué pour moi.

Il se pourrait que tu te trouves devant un choix à faire, un pas à franchir.
Si tu veux gérer cette nouvelle machine avec 4 disques et autant d'OS, le niveau de difficulté sera supérieur à ce que demande un simple boot-info.

Hors ligne

#43 Le 18/07/2026, à 12:32

Lami

Re : [Résolu] Nouvel ordinateur multidisque sans utiliser les UUID

Bonjour,

Les deux OS Kubuntu 26.04 sont faits, mais pour l'installation 3Sa2To-, j'ai le message suivant en affichage graphique juste avant l'écran de connexion et son mot de passe :

Configuration file "/var/lib/sddm/.config/sddm-qt6rc" not writable.
Please contact your system administrator.

Alors j'attendrai vos retours avant de modifier fstab et grub.

Et j'en profite pour vous communiquer les détails du matériel :

rene@Ordinateur01:~$ lspci
00:00.0 Host bridge: Intel Corporation 12th Gen Core Processor Host Bridge/DRAM Registers (rev 02)
00:01.0 PCI bridge: Intel Corporation 12th Gen Core Processor PCI Express x16 Controller #1 (rev 02)
00:02.0 VGA compatible controller: Intel Corporation Alder Lake-S GT1 [UHD Graphics 770] (rev 0c)
00:06.0 PCI bridge: Intel Corporation 12th Gen Core Processor PCI Express x4 Controller #0 (rev 02)
00:0a.0 Signal processing controller: Intel Corporation Platform Monitoring Technology (rev 01)
00:14.0 USB controller: Intel Corporation Alder Lake-S PCH USB 3.2 Gen 2x2 XHCI Controller (rev 11)
00:14.2 RAM memory: Intel Corporation Alder Lake-S PCH Shared SRAM (rev 11)
00:14.3 Network controller: Intel Corporation Alder Lake-S PCH CNVi WiFi (rev 11)
00:15.0 Serial bus controller: Intel Corporation Alder Lake-S PCH Serial IO I2C Controller #0 (rev 11)
00:15.1 Serial bus controller: Intel Corporation Alder Lake-S PCH Serial IO I2C Controller #1 (rev 11)
00:15.2 Serial bus controller: Intel Corporation Alder Lake-S PCH Serial IO I2C Controller #2 (rev 11)
00:16.0 Communication controller: Intel Corporation Alder Lake-S PCH HECI Controller #1 (rev 11)
00:17.0 SATA controller: Intel Corporation Alder Lake-S PCH SATA Controller [AHCI Mode] (rev 11)
00:1a.0 PCI bridge: Intel Corporation Alder Lake-S PCH PCI Express Root Port #25 (rev 11)
00:1b.0 PCI bridge: Intel Corporation Alder Lake-S PCH PCI Express Root Port #21 (rev 11)
00:1c.0 PCI bridge: Intel Corporation Alder Lake-S PCH PCI Express Root Port #1 (rev 11)
00:1c.1 PCI bridge: Intel Corporation Alder Lake-S PCH PCI Express Root Port #2 (rev 11)
00:1c.3 PCI bridge: Intel Corporation Device 7abb (rev 11)
00:1d.0 PCI bridge: Intel Corporation Alder Lake-S PCH PCI Express Root Port #13 (rev 11)
00:1f.0 ISA bridge: Intel Corporation Z690 Chipset LPC/eSPI Controller (rev 11)
00:1f.3 Audio device: Intel Corporation Alder Lake-S HD Audio Controller (rev 11)
00:1f.4 SMBus: Intel Corporation Alder Lake-S PCH SMBus Controller (rev 11)
00:1f.5 Serial bus controller: Intel Corporation Alder Lake-S PCH SPI Controller (rev 11)
01:00.0 VGA compatible controller: NVIDIA Corporation GP106 [GeForce GTX 1060 6GB] (rev a1)
01:00.1 Audio device: NVIDIA Corporation GP106 High Definition Audio Controller (rev a1)
02:00.0 Non-Volatile memory controller: Phison Electronics Corporation E18 PCIe4 NVMe Controller (rev 01)
03:00.0 Non-Volatile memory controller: Phison Electronics Corporation E18 PCIe4 NVMe Controller (rev 01)
04:00.0 Non-Volatile memory controller: Phison Electronics Corporation E18 PCIe4 NVMe Controller (rev 01)
06:00.0 SATA controller: ASMedia Technology Inc. ASM1061/ASM1062 Serial ATA Controller (rev 02)
07:00.0 Ethernet controller: Intel Corporation Ethernet Controller I225-V (rev 03)
08:00.0 Non-Volatile memory controller: Phison Electronics Corporation E18 PCIe4 NVMe Controller (rev 01)
rene@Ordinateur01:~$

Carte mère : ROG STRIX Z690-A GAMING WIFI D4

Cordialement,


L'ami René
Tous pour un et un pour tous !
Linux Kubuntu 26.04

Hors ligne

#44 Le 18/07/2026, à 12:40

geole

Re : [Résolu] Nouvel ordinateur multidisque sans utiliser les UUID

Un problème de permission d’écriture dans le fichier.
J’ai vu cette discussion
Publie

ls -l  /var/lib/sddm/.config/sddm-qt6rc 

Si besoin corrige le propriétaire.

sudo chown sddm:sddm /var/lib/sddm/.config/sddm-qt6rc 

Dernière modification par geole (Le 18/07/2026, à 13:00)


Les écrans de l'installateur 26.04 https://doc.ubuntu-fr.org/tutoriel/inst … _subiquity

Les partitions EXT4 des disques externes => https://forum.ubuntu-fr.org/viewtopic.p … #p22697248

Hors ligne

#45 Le 18/07/2026, à 13:02

Lami

Re : [Résolu] Nouvel ordinateur multidisque sans utiliser les UUID

Merci geole !

Et pour que je ne fasse pas de connerie, la commande serrait donc :

sudo  chmod -Rc 770 /var/lib/sddm/.config/sddm-qt6rc*.*

J'attendrai vos retours avant de modifier fstab et grub.

Cordialement,


L'ami René
Tous pour un et un pour tous !
Linux Kubuntu 26.04

Hors ligne

#46 Le 18/07/2026, à 13:05

geole

Re : [Résolu] Nouvel ordinateur multidisque sans utiliser les UUID

Publie

ls -l  /var/lib/sddm/.config/sddm-qt6rc 

Si besoin corrige le propriétaire.

sudo chown sddm:sddm /var/lib/sddm/.config/sddm-qt6rc 

Les écrans de l'installateur 26.04 https://doc.ubuntu-fr.org/tutoriel/inst … _subiquity

Les partitions EXT4 des disques externes => https://forum.ubuntu-fr.org/viewtopic.p … #p22697248

Hors ligne

#47 Le 18/07/2026, à 13:45

Lami

Re : [Résolu] Nouvel ordinateur multidisque sans utiliser les UUID

Ici, je ne comprend pas, mais bon voilà :

rene@Ordinateur01:~$ ls -l  /var/lib/sddm/.config/sddm-qt6rc
ls: cannot open file '/var/lib/sddm/.config/sddm-qt6rc': Permission denied
rene@Ordinateur01:~$ sudo chown sddm:sddm /var/lib/sddm/.config/sddm-qt6rc
[sudo: authenticate] Mot de passe :
chown: cannot dereference '/var/lib/sddm/.config/sddm-qt6rc': No such file or directory
rene@Ordinateur01:~$

Cordialement,


L'ami René
Tous pour un et un pour tous !
Linux Kubuntu 26.04

Hors ligne

#48 Le 18/07/2026, à 13:47

geole

Re : [Résolu] Nouvel ordinateur multidisque sans utiliser les UUID

sudo ls -l  /var/lib/sddm/.config

Les écrans de l'installateur 26.04 https://doc.ubuntu-fr.org/tutoriel/inst … _subiquity

Les partitions EXT4 des disques externes => https://forum.ubuntu-fr.org/viewtopic.p … #p22697248

Hors ligne

#49 Le 18/07/2026, à 14:05

Lami

Re : [Résolu] Nouvel ordinateur multidisque sans utiliser les UUID

rene@Ordinateur01:~$ sudo ls -l  /var/lib/sddm/.config
[sudo: authenticate] Mot de passe :
total 4
drwxrwxr-x 2 saned saned 4096 Jul 15 05:47 qtvirtualkeyboard
rene@Ordinateur01:~$

Dernière modification par Lami (Le 18/07/2026, à 14:06)


L'ami René
Tous pour un et un pour tous !
Linux Kubuntu 26.04

Hors ligne

#50 Le 19/07/2026, à 14:30

Lami

Re : [Résolu] Nouvel ordinateur multidisque sans utiliser les UUID

Bonjour,

Je transforme le disque 4 en disque pour les IA locales et les Vidéos, plus d'OS sur ce disque, ce qui donne :

rene@Ordinateur01:~$ lsblk -fe7
nvme0n1
├─nvme0n1p1 vfat   FAT32 0Sa2To-boot 2AB7-0DD2
├─nvme0n1p2 ext4   1.0   0Sa2To-syst c302b6a2-b261-4062-91fe-51dde6d159f6
├─nvme0n1p3 ext4   1.0   0Sa2To-home 4d7b7ab7-32ae-4854-a683-a514bf5f06bf
└─nvme0n1p4 ntfs         0Sa2To-data 3C56705873A60E59
nvme1n1
├─nvme1n1p1 vfat   FAT32 1Sa2To-boot 6108-853D
├─nvme1n1p2 ext4   1.0   1Sa2To-syst 27c678ea-7914-4d8d-b67c-ecb524f0884f
├─nvme1n1p3 ext4   1.0   1Sa2To-home 45119111-4e8d-4c89-8af0-85f78d72d2c1
└─nvme1n1p4 ntfs         1Sa2To-data 143183DB1116DA9F
nvme2n1
├─nvme2n1p1 vfat   FAT32 2Sa2To-boot 890C-87E6                             292,3M     2% /boot/efi
├─nvme2n1p2 ext4   1.0   2Sa2To-syst 4276ccad-d762-4a7b-bd60-abb4415c6d60  103,2G    12% /
├─nvme2n1p3 ext4   1.0   2Sa2To-home 1a37ec90-e27b-4415-b7f4-3c014bd90325   92,7G     0% /home
└─nvme2n1p4 ntfs         2Sa2To-data 3CA4988E4F6CED46                      327,4G    80% /home/rene/data
nvme3n1
└─nvme3n1p1 ntfs         3Sa2To-IAVi 1E109C0C0218286A
rene@Ordinateur01:~$

Pour une fois, tout est en ordre et correspondance !

J'attendrai vos retours avant de modifier un fichier fstab et grub, et exécuter « sudo update-grub ».

Cordialement,


L'ami René
Tous pour un et un pour tous !
Linux Kubuntu 26.04

Hors ligne