Contenu | Rechercher | Menus

Annonce

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

À propos de l'équipe du forum.

#1 Le 11/02/2023, à 21:24

BrunoL

booter sur device non détecté par le bios et sans cle usb

Bonsoir,
Je dispose d'une clé usb afin de démarrer sur une partition non reconnue par le bios de ma machine.

La clé incorpore un noyau linux pour prendre la main après le bios, trouver la partition invisible au bios et lancer cette partition sur les répertoires identifiés (/ & /home) dans son fstab.

Sur la même machine je dispose d'une ubu22.04 qui boote normalement (donc quand le clé est absente).
Existe-t-il un moyen de virer la clé et de faire en sorte que le grub de la ubu22.04 identifie et charge la partition "invisible".

Nota : le fait que cette partition apparaisse et fasse partie des os détectés par grub (os-prober) de la ubu22.04 ne suffit pas.

Merci pour votre aide.

Dernière modification par BrunoL (Le 12/02/2023, à 12:53)

Hors ligne

#2 Le 11/02/2023, à 22:05

Watael

Re : booter sur device non détecté par le bios et sans cle usb

le BIOS ne va pas jusqu'aux partitions, il se contente de "passer la main" au programme de chargement (ici, GrUB) du premier support disponible, il me semble.
il te va falloir reconfigurer GrUB.
ce n'est pas ma partie; peut-être que la commande os-prober peut le faire...


Connected \o/
Welcome to sHell. · eval is evil.

Hors ligne

#3 Le 12/02/2023, à 11:25

BrunoL

Re : booter sur device non détecté par le bios et sans cle usb

Hello Watael, c'est tout mon pb, j'ai lu la doc de Grub et j'en conclue (peut-être à tort) que la problématique ne relève pas de Grub mais de l'environnement linux (fstab, initrd, vmlinuz, ...) ! Dans ce cadre le seul rôle de Grub serait de passer un paramètre indiquant qu'il faut initialiser la suite sur le device "invisible". Si j'ai bien compris Grub ne connaît que les devices identifiés par le bios.
Malheureusement je n'arrive pas à trouver de la doc sur ces éléments et leurs relations avec Grub (s'il y en a) ...

En tout état de cause je pense que la solution n'est pas dans os-prober, je m'orienterai plutôt vers un 40-custom avec passage de paramètre "forcés".

Dernière modification par BrunoL (Le 12/02/2023, à 12:55)

Hors ligne

#4 Le 12/02/2023, à 13:48

BrunoL

Re : booter sur device non détecté par le bios et sans cle usb

J'ai réussi à booter sur le device non reconnu par le bios grâce à un 40-custom (cf. avant dernière ligne) :

menuentry 'Custom_40' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-simple-18f066a6-65d4-4f4a-8751-7accd9bcd7be' {
	recordfail
	load_video
	gfxmode $linux_gfx_mode
	insmod gzio
	if [ x$grub_platform = xxen ]; then insmod xzio; insmod lzopio; fi
	insmod part_msdos
	insmod ext2
	set root='hd0,msdos5'
	if [ x$feature_platform_search_hint = xy ]; then
	  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos5 --hint-efi=hd0,msdos5 --hint-baremetal=ahci0,msdos5  9bcc86c7-0333-4d90-a302-65b1a38fd43e
	else
	  search --no-floppy --fs-uuid --set=root 9bcc86c7-0333-4d90-a302-65b1a38fd43e
	fi
	linux	/vmlinuz-5.15.0-60-generic root=/dev/nvme0n1p1 ro  quiet splash $vt_handoff
	initrd	/initrd.img-5.15.0-60-generic
}

C'est beaucoup mieux plus de passage par la cle usb ... mais reste un petit point d'amélioration :
  -  L'installation reconnue par le bios est une ubu22.04 sur disque chiffré
  -  Lors du lancement sur le nvme grâce au 40-custom, je dois saisir le code de chiffrement.

Je souhaiterai que le boot n'utilise que les environnements non chiffrés. Peut-être en lui fournissant une fstab sur la partition non chiffrée utilisée par ubu22.04, chez moi la /dev/sda5 ...

Une idée pour finaliser cette solution ? Merci

Hors ligne

#5 Le 12/02/2023, à 15:37

Watael

Re : booter sur device non détecté par le bios et sans cle usb

si (tout) le disque est chiffré, tu ne peux pas passé outre.
GrUB n'a pas accès à fstab, c'est trop tôt dans le processus de démarrage. c'est l'init qui lit fstab.
dans l'interface de commandes de GrUB (accessible par e, puis Ctrl-c ou F2), en tapant ls, la liste des partitions s'affichera.
si le système sur nvme est configuré pour monter des partitions chiffrées, c'est son fstab le fautif, pas GrUB.

comme dit précédemment, ce n'est pas ma partie. j'interviens en soutien en tant que simple utilisateur, vérifie donc bien tout ce que j'avance. smile

Dernière modification par Watael (Le 12/02/2023, à 16:01)


Connected \o/
Welcome to sHell. · eval is evil.

Hors ligne

#6 Le 13/02/2023, à 11:13

BrunoL

Re : booter sur device non détecté par le bios et sans cle usb

C'est l'install de la 22.04 qui a partitionné le DD et en amont de la partition chiffrée (la /) figurent 2 partitions non chiffrées la 2ème (sda5) étant montée sur le (/boot) du système détecté. Donc pas de problème de ce coté.

Attention mon message #4 fait état d'un paramétrage bien plus problématique qu'il y parait : le système cible (invisible au bios) est bien monté mais avec le kernel de la ubu22.04 du DD détecté. Exceptionnellement cela marche si les 2 systèmes ont le même noyau mais c'est très délicat car une simple màj peut tout faire dysfonctionner donc à éviter. Il faut choper le kernel plus tôt dans le déroulement du boot/grub pour adresser le 1er (invisible) ... on revient donc à mon pb initial !
Une soluce ?

Hors ligne

#7 Le 13/02/2023, à 11:23

geole

Re : booter sur device non détecté par le bios et sans cle usb

Bonjour.
Mon avis est qu'avoir des fichiers de boot chiffrés n'est pas indispensable.
Si tu as une partition chiffrée contenant les fichiers de boot chiffrés et donc indétectables par les outils de boot, fabrique une partition EXT4  de 1,5Go et refais une installation du grub en précisant cette  partition pour recevoir la structure de boot.


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

Hors ligne

#8 Le 13/02/2023, à 14:16

BrunoL

Re : booter sur device non détecté par le bios et sans cle usb

Non Geole, la partition de boot (sda5) n'est pas chiffrée. Sauf erreur c'est l'install standard d'une Ubu22.04, je n'ai pas le souvenir d'avoir demandé quoique ce soit.
En "théorie" le cas est simple wink :
Bios lance grub qui -> charge le  linux de sda5 pour détecter le device nvme (non crypté) puis -> lance le linux du nvme (partition 1) et -> ça roule ... voilà, voilà cool
Sauf que je n'arrive pas à lui faire faire ... roll

Hors ligne

#9 Le 13/02/2023, à 14:23

Compte supprimé

Re : booter sur device non détecté par le bios et sans cle usb

refind ne serait-il plus simple à paramétrer ?

#10 Le 13/02/2023, à 14:57

geole

Re : booter sur device non détecté par le bios et sans cle usb

Refind, non plus, ne sait pas détecter automatiquement une installation entièrement chiffrée.
La production d'un boot-info devrait clarifier la situation.

Dernière modification par geole (Le 13/02/2023, à 14:57)


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

Hors ligne

#11 Le 13/02/2023, à 18:01

BrunoL

Re : booter sur device non détecté par le bios et sans cle usb

La production d'un boot-info devrait clarifier la situation.

OK si ça peut aider :

boot-repair-4ppa2056                                              [20230210_0806]

============================= Boot Repair Summary ==============================



==================== blkid (filtered) before lvm activation ====================

/dev/mapper/sda6_crypt: UUID="T7KtZ7-7Hyl-iv2a-zVKn-FWih-Eo7w-JfPFyA" TYPE="LVM2_member"
/dev/mapper/vgxubuntu-swap_1: UUID="c555f00d-276e-406b-ada1-2cfb1e03247d" TYPE="swap"
/dev/mapper/vgxubuntu-root: UUID="18f066a6-65d4-4f4a-8751-7accd9bcd7be" BLOCK_SIZE="4096" TYPE="ext4"
/dev/mapper/vg2tera-volb: LABEL="vol_b" UUID="eae9ad62-caf0-4f63-8ea7-cb276d1249af" BLOCK_SIZE="4096" TYPE="ext4"
/dev/nvme0n1p5: UUID="5b33391d-f663-40cd-8c0c-2efc545d8aad" TYPE="swap" PARTUUID="46f4bc74-05"
/dev/nvme0n1p1: LABEL="nvme1syst" UUID="33901721-9b4c-4426-b63a-4f84e5e55aba" BLOCK_SIZE="4096" TYPE="ext4" PARTUUID="46f4bc74-01"
/dev/nvme0n1p6: LABEL="nvme6home" UUID="1660d1b0-e634-4b40-9203-1133dc2346c1" BLOCK_SIZE="4096" TYPE="ext4" PARTUUID="46f4bc74-06"
/dev/sdb: UUID="92DArv-HATX-Nq1t-O2ub-bT2f-B2j0-bwXHFY" TYPE="LVM2_member"
/dev/sr0: BLOCK_SIZE="2048" UUID="2019-08-26-06-55-15-00" LABEL="ISOIMAGE" TYPE="iso9660" PTTYPE="dos"
/dev/mapper/vg2tera-volc: LABEL="vol_c" UUID="7e3245dc-3b8b-4857-b683-11bf41fc47ee" BLOCK_SIZE="4096" TYPE="ext4"
/dev/mapper/vg2tera-vola: LABEL="vol_a" UUID="3e2be763-fac4-4315-b5f9-298b0df3766a" BLOCK_SIZE="4096" TYPE="ext4"
/dev/sdc1: UUID="ff94071f-73db-4e41-945f-9b67d7042b3f" TYPE="crypto_LUKS" PARTUUID="9062487a-5d7d-4371-aa8d-1f43b27d7eb3"
/dev/sda5: UUID="9bcc86c7-0333-4d90-a302-65b1a38fd43e" BLOCK_SIZE="4096" TYPE="ext4" PARTUUID="35bf84c5-05"
/dev/sda1: LABEL="SSD_P1" UUID="0fb860b3-4520-4178-8e0a-fe290a6b998f" BLOCK_SIZE="4096" TYPE="ext4" PARTUUID="35bf84c5-01"
/dev/sda6: UUID="72c63273-03d7-458d-8809-4df953320db2" TYPE="crypto_LUKS" PARTUUID="35bf84c5-06"
/dev/mapper/vg2tera-Logical_Volume_03: LABEL="WindowsTrav" BLOCK_SIZE="512" UUID="515832124827A720" TYPE="ntfs"


================================ LVM activation ================================

modprobe dm-mod  
vgscan --mknodes
  Found volume group "vg2tera" using metadata type lvm2
  Found volume group "vgxubuntu" using metadata type lvm2
vgchange -ay
  4 logical volume(s) in volume group "vg2tera" now active
  2 logical volume(s) in volume group "vgxubuntu" now active
lvscan
  ACTIVE            '/dev/vg2tera/vola' [500.00 GiB] inherit
  ACTIVE            '/dev/vg2tera/volb' [500.00 GiB] inherit
  ACTIVE            '/dev/vg2tera/volc' [500.00 GiB] inherit
  ACTIVE            '/dev/vg2tera/Logical_Volume_03' [<363.02 GiB] inherit
  ACTIVE            '/dev/vgxubuntu/root' [929.32 GiB] inherit
  ACTIVE            '/dev/vgxubuntu/swap_1' [976.00 MiB] inherit
blkid -g



Default settings: ______________________________________________________________

The default repair of the Boot-Repair utility would purge (in order to enable-lvm) and reinstall the grub2 of
mapper/vgxubuntu-root into the MBR of sda.
Grub-efi would not be selected by default because no ESP detected.
Additional repair would be performed: unhide-bootmenu-10s

Confirmation request before suggested repair: __________________________________

You may want to retry after mounting your encrypted partitions so that the tool can verify their contents. (sudo cryptsetup luksOpen /dev/sdc1 myvolume)
Are you sure you want to continue anyway?

Final advice in case of suggested repair: ______________________________________

Please do not forget to make your BIOS boot on sda (ATA Samsung SSD 860) disk!

User settings: _________________________________________________________________

The settings chosen by the user will purge (in order to enable-lvm) and reinstall the grub2 of
mapper/vgxubuntu-root into the MBR of sda,
using the following options:  disable-internet-check
Grub-efi will not be selected by default because no ESP detected.
The boot flag will be placed on sda5.
Additional repair will be performed:  unhide-bootmenu-5s


apt-get -y update
W: Impossible de récupérer https://repo.radeon.com/amdgpu/5.4.1/ubuntu/dists/jammy/InRelease  Connexion à repo.radeon.com: 443 (13.82.220.49) impossible, délai de connexion dépassé
W: Impossible de récupérer https://repo.radeon.com/rocm/apt/5.4.1/dists/jammy/InRelease  Impossible de se connecter à repo.radeon.com:https :
W: Le téléchargement de quelques fichiers d'index a échoué, ils ont été ignorés, ou les anciens ont été utilisés à la place.
Purge the GRUB of mapper/vgxubuntu-root
grub-pc available
Lecture des listes de paquets…
Construction de l'arbre des dépendances…SET@_progressbar1.pulse()

Lecture des informations d'état…
Les paquets suivants ont été installés automatiquement et ne sont plus nécessaires :
amdgpu-dkms-firmware dctrl-tools dkms libbrotli1:i386
libdevmapper1.02.1:i386 libefiboot1:i386 libefivar1:i386 libfreetype6:i386
libfuse3-3:i386 libpng16-16:i386
Veuillez utiliser « apt autoremove » pour les supprimer.
0 mis à jour, 0 nouvellement installés, 1 réinstallés, 0 à enlever et 3 non mis à jour.
Il est nécessaire de prendre 132 ko dans les archives.
Après cette opération, 0 o d'espace disque supplémentaires seront utilisés.
Réception de :1 http://fr.archive.ubuntu.com/ubuntu jammy-updates/main amd64 grub-pc amd64 2.06-2ubuntu7.1 [132 kB]
132 ko réceptionnés en 0s (855 ko/s)
Téléchargement achevé et dans le mode téléchargement uniquement
DEBCHECK debOK, grub-pc
DEBCHECK debOK
Please type: sudo dpkg --configure -ansudo apt-get install -fynsudo apt-get install -y lvm2nsudo apt-get purge --allow-remove-essential -y grub-com*nsudo apt-get purge --allow-remove-essential -y grub2-com*nsudo apt-get purge --allow-remove-essential -y shim-signednsudo apt-get purge --allow-remove-essential -y grub-common:*nsudo apt-get purge --allow-remove-essential -y grub2-common:*n
Then type: sudo apt-get install -y grub-pc os-prober

Unhide GRUB boot menu in mapper/vgxubuntu-root/etc/default/grub

=========== Reinstall the grub-pc os-prober of mapper/vgxubuntu-root ===========

grub-install --version
grub-install (GRUB) 2.06-2ubuntu7.1

==> Reinstall the GRUB of mapper/vgxubuntu-root into the MBR of sda

grub-install /dev/sda
Installing for i386-pc platform.
File descriptor 63 (pipe:[56863]) leaked on vgs invocation. Parent PID 27332: grub-install
File descriptor 63 (pipe:[56863]) leaked on vgs invocation. Parent PID 27332: grub-install
File descriptor 63 (pipe:[56863]) leaked on vgs invocation. Parent PID 27332: grub-install
Installation finished. No error reported.

update-grub
Sourcing file `/etc/default/grub'
Sourcing file `/etc/default/grub.d/init-select.cfg'
Generating grub configuration file ...
File descriptor 63 (pipe:[56863]) leaked on vgs invocation. Parent PID 27448: grub-probe
File descriptor 63 (pipe:[56863]) leaked on vgs invocation. Parent PID 27448: grub-probe
File descriptor 63 (pipe:[56863]) leaked on vgs invocation. Parent PID 27471: /usr/sbin/grub-probe
File descriptor 63 (pipe:[56863]) leaked on vgs invocation. Parent PID 27471: /usr/sbin/grub-probe
File descriptor 63 (pipe:[56863]) leaked on vgs invocation. Parent PID 27475: /usr/sbin/grub-probe
File descriptor 63 (pipe:[56863]) leaked on vgs invocation. Parent PID 27475: /usr/sbin/grub-probe
File descriptor 63 (pipe:[56863]) leaked on vgs invocation. Parent PID 27479: /usr/sbin/grub-probe
File descriptor 63 (pipe:[56863]) leaked on vgs invocation. Parent PID 27479: /usr/sbin/grub-probe
File descriptor 63 (pipe:[56863]) leaked on vgs invocation. Parent PID 27484: /usr/sbin/grub-probe
File descriptor 63 (pipe:[56863]) leaked on vgs invocation. Parent PID 27484: /usr/sbin/grub-probe
File descriptor 63 (pipe:[56863]) leaked on vgs invocation. Parent PID 27521: /usr/sbin/grub-probe
File descriptor 63 (pipe:[56863]) leaked on vgs invocation. Parent PID 27521: /usr/sbin/grub-probe
Found linux image: /boot/vmlinuz-5.15.0-60-generic
Found initrd image: /boot/initrd.img-5.15.0-60-generic
File descriptor 63 (pipe:[56863]) leaked on vgs invocation. Parent PID 27599: /usr/sbin/grub-probe
File descriptor 63 (pipe:[56863]) leaked on vgs invocation. Parent PID 27599: /usr/sbin/grub-probe
File descriptor 63 (pipe:[56863]) leaked on vgs invocation. Parent PID 27604: /usr/sbin/grub-probe
File descriptor 63 (pipe:[56863]) leaked on vgs invocation. Parent PID 27604: /usr/sbin/grub-probe
File descriptor 63 (pipe:[56863]) leaked on vgs invocation. Parent PID 27608: /usr/sbin/grub-probe
File descriptor 63 (pipe:[56863]) leaked on vgs invocation. Parent PID 27608: /usr/sbin/grub-probe
File descriptor 63 (pipe:[56863]) leaked on vgs invocation. Parent PID 27613: /usr/sbin/grub-probe
File descriptor 63 (pipe:[56863]) leaked on vgs invocation. Parent PID 27613: /usr/sbin/grub-probe
Found linux image: /boot/vmlinuz-5.10.0-20-amd64
Found initrd image: /boot/initrd.img-5.10.0-20-amd64
Found linux image: /boot/vmlinuz-5.10.0-8-amd64
Found initrd image: /boot/initrd.img-5.10.0-8-amd64
File descriptor 63 (pipe:[56863]) leaked on vgs invocation. Parent PID 27999: /usr/sbin/grub-probe
File descriptor 63 (pipe:[56863]) leaked on vgs invocation. Parent PID 27999: /usr/sbin/grub-probe
Warning: os-prober will be executed to detect other bootable partitions.
Its output will be used to detect bootable binaries on them and create new boot entries.
Found Debian GNU/Linux 11 (bullseye) on /dev/nvme0n1p1

Unhide GRUB boot menu in mapper/vgxubuntu-root/boot/grub/grub.cfg

Unhide GRUB boot menu in nvme0n1p1/boot/grub/grub.cfg

Le démarrage de l'ordinateur a été correctement réparé.

Vous pouvez maintenant redémarrer votre ordinateur.
N'oubliez pas de régler votre BIOS pour qu'il amorce sur le disque sda (ATA Samsung SSD 860) !


============================ Boot Info After Repair ============================

 => libparted MBR boot code is installed in the MBR of /dev/nvme0n1.
 => Grub2 (v2.00) is installed in the MBR of /dev/sda and looks at sector 1 of 
    the same hard drive for core.img. core.img is at this location and looks 
    for 
    (lvmid/8OuQ9a-7h1n-ZlfZ-P0Gh-aafX-mM4a-nywVYt/OdVw8U-s6r4-J6RT-rBTZ-0Z5p-0F
    ol-Q8o6fz)/boot/grub. It also embeds following components:
    
    modules
    ---------------------------------------------------------------------------
    fshelp ext2 diskfilter lvm biosdisk
    ---------------------------------------------------------------------------
 => No boot loader is installed in the MBR of /dev/sdc.

nvme0n1p1: _____________________________________________________________________

    File system:       ext4
    Boot sector type:  -
    Boot sector info: 
    Operating System:  Debian GNU/Linux 11 (bullseye)
    Boot files:        /boot/grub/grub.cfg /etc/fstab /etc/default/grub 
                       /boot/grub/i386-pc/core.img

nvme0n1p2: _____________________________________________________________________

    File system:       Extended Partition
    Boot sector type:  -
    Boot sector info: 

nvme0n1p5: _____________________________________________________________________

    File system:       swap
    Boot sector type:  -
    Boot sector info: 

nvme0n1p6: _____________________________________________________________________

    File system:       ext4
    Boot sector type:  -
    Boot sector info: 
    Operating System:  
    Boot files:        

sda1: __________________________________________________________________________

    File system:       ext4
    Boot sector type:  -
    Boot sector info: 
    Operating System:  
    Boot files:        

sda2: __________________________________________________________________________

    File system:       Extended Partition
    Boot sector type:  -
    Boot sector info: 

sda5: __________________________________________________________________________

    File system:       ext4
    Boot sector type:  -
    Boot sector info: 
    Operating System:  
    Boot files:        /grub/grub.cfg /grub/i386-pc/core.img

sda6: __________________________________________________________________________

    File system:       crypto_LUKS
    Boot sector type:  Unknown
    Boot sector info: 

sdc1: __________________________________________________________________________

    File system:       crypto_LUKS
    Boot sector type:  Unknown
    Boot sector info: 

sdb: ___________________________________________________________________________

    File system:       LVM2_member
    Boot sector type:  -
    Boot sector info: 


================================ 2 OS detected =================================

OS#1:   L'OS actuellement utilisé - Ubuntu 22.04.1 LTS CurrentSession on mapper/vgxubuntu-root
OS#2:   Debian GNU/Linux 11 (bullseye) on nvme0n1p1

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

CPU architecture: 64-bit
Video: Cedar [Radeon HD 5000/6000/7350/8350 Series] from Advanced Micro Devices, Inc. [AMD/ATI]
BOOT_IMAGE of the installed session in use:
/vmlinuz-5.15.0-58-generic root=/dev/mapper/vgxubuntu-root ro
df -Th / : /dev/mapper/vgxubuntu-root ext4   914G     98G  770G  12% /

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

BIOS/UEFI firmware: 1408   (8.15) from American Megatrends Inc.
This installed-session is in Legacy/BIOS/CSM mode (not in EFI mode).



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

Disks info: ____________________________________________________________________

sda	: notGPT,	no-BIOSboot,	has-noESP, 	not-usb,	not-mmc, has-os,	no-wind,	2048 sectors * 512 bytes
nvme0n1	: notGPT,	no-BIOSboot,	has-noESP, 	not-usb,	not-mmc, has-os,	no-wind,	2048 sectors * 512 bytes

Partitions info (1/3): _________________________________________________________

mapper/vgxubuntu-root	: is-os,	64, apt-get,	grub-pc ,	grub2,	grub-install,	grubenv-ok,	update-grub,	not-far
mapper/vg2tera-volb	: no-os,	64, nopakmgr,	no-docgrub,	nogrub,	nogrubinstall,	no-grubenv,	noupdategrub,	not-far
nvme0n1p1	: is-os,	64, apt-get,	grub-pc ,	grub2,	grub-install,	grubenv-ok,	update-grub,	not-far
nvme0n1p6	: no-os,	64, nopakmgr,	no-docgrub,	nogrub,	nogrubinstall,	no-grubenv,	noupdategrub,	farbios
mapper/vg2tera-volc	: no-os,	64, nopakmgr,	no-docgrub,	nogrub,	nogrubinstall,	no-grubenv,	noupdategrub,	not-far
mapper/vg2tera-vola	: no-os,	64, nopakmgr,	no-docgrub,	nogrub,	nogrubinstall,	no-grubenv,	noupdategrub,	not-far
sda5	: no-os,	64, nopakmgr,	no-docgrub,	nogrub,	nogrubinstall,	grubenv-ok,	noupdategrub,	not-far
sda1	: no-os,	64, nopakmgr,	no-docgrub,	nogrub,	nogrubinstall,	no-grubenv,	noupdategrub,	not-far
mapper/vg2tera-Logical_Volume_03	: no-os,	64, nopakmgr,	no-docgrub,	nogrub,	nogrubinstall,	no-grubenv,	noupdategrub,	not-far

Partitions info (2/3): _________________________________________________________

mapper/vgxubuntu-root	: isnotESP,	fstab-without-efi,	no-nt,	no-winload,	no-recov-nor-hid,	no-bmgr,	notwinboot
mapper/vg2tera-volb	: isnotESP,	part-has-no-fstab,	no-nt,	no-winload,	no-recov-nor-hid,	no-bmgr,	notwinboot
nvme0n1p1	: isnotESP,	fstab-without-efi,	no-nt,	no-winload,	no-recov-nor-hid,	no-bmgr,	notwinboot
nvme0n1p6	: isnotESP,	part-has-no-fstab,	no-nt,	no-winload,	no-recov-nor-hid,	no-bmgr,	notwinboot
mapper/vg2tera-volc	: isnotESP,	part-has-no-fstab,	no-nt,	no-winload,	no-recov-nor-hid,	no-bmgr,	notwinboot
mapper/vg2tera-vola	: isnotESP,	part-has-no-fstab,	no-nt,	no-winload,	no-recov-nor-hid,	no-bmgr,	notwinboot
sda5	: isnotESP,	part-has-no-fstab,	no-nt,	no-winload,	no-recov-nor-hid,	no-bmgr,	notwinboot
sda1	: isnotESP,	part-has-no-fstab,	no-nt,	no-winload,	no-recov-nor-hid,	no-bmgr,	notwinboot
mapper/vg2tera-Logical_Volume_03	: isnotESP,	part-has-no-fstab,	no-nt,	no-winload,	no-recov-nor-hid,	no-bmgr,	notwinboot

Partitions info (3/3): _________________________________________________________

mapper/vgxubuntu-root	: not--sepboot,	with-boot,	fstab-without-boot,	not-sep-usr,	with--usr,	fstab-without-usr,	std-grub.d,	sda
mapper/vg2tera-volb	: maybesepboot,	no---boot,	part-has-no-fstab,	not-sep-usr,	no---usr,	part-has-no-fstab,	no--grub.d,	sda
nvme0n1p1	: not--sepboot,	with-boot,	fstab-without-boot,	not-sep-usr,	with--usr,	fstab-without-usr,	std-grub.d,	nvme0n1
nvme0n1p6	: maybesepboot,	no---boot,	part-has-no-fstab,	not-sep-usr,	no---usr,	part-has-no-fstab,	no--grub.d,	nvme0n1
mapper/vg2tera-volc	: maybesepboot,	no---boot,	part-has-no-fstab,	not-sep-usr,	no---usr,	part-has-no-fstab,	no--grub.d,	sda
mapper/vg2tera-vola	: maybesepboot,	no---boot,	part-has-no-fstab,	not-sep-usr,	no---usr,	part-has-no-fstab,	no--grub.d,	sda
sda5	: is---sepboot,	no---boot,	part-has-no-fstab,	not-sep-usr,	no---usr,	part-has-no-fstab,	no--grub.d,	sda
sda1	: maybesepboot,	no---boot,	part-has-no-fstab,	not-sep-usr,	no---usr,	part-has-no-fstab,	no--grub.d,	sda
mapper/vg2tera-Logical_Volume_03	: 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: 465.76 GiB, 500107862016 bytes, 976773168 sectors
Disk identifier: 0x46f4bc74
          Boot    Start       End   Sectors   Size Id Type
nvme0n1p1          2048  58593279  58591232  27.9G 83 Linux
nvme0n1p2      58595326 976771071 918175746 437.8G  5 Extended
nvme0n1p5      58595328  60594175   1998848   976M 82 Linux swap / Solaris
nvme0n1p6      60596224 976771071 916174848 436.9G 83 Linux
Disk sda: 931.51 GiB, 1000204886016 bytes, 1953525168 sectors
Disk identifier: 0x35bf84c5
      Boot   Start        End    Sectors   Size Id Type
sda1          2048    1050623    1048576   512M 83 Linux
sda2       1052670 1953523711 1952471042   931G  5 Extended
sda5  *    1052672    2549759    1497088   731M 83 Linux
sda6       2551808 1953523711 1950971904 930.3G 83 Linux
Disk sdb: 1.82 TiB, 2000398934016 bytes, 3907029168 sectors
Disk sdc: 3.64 TiB, 4000787030016 bytes, 7814037168 sectors
Disk identifier: BFCDA68A-6FE6-4784-9D10-5C01C219696D
      Start        End    Sectors  Size Type
sdc1   2048 7814035455 7814033408  3.6T unknown
Disk mapper/vg2tera-vola: 500 GiB, 536870912000 bytes, 1048576000 sectors
Disk mapper/vg2tera-volb: 500 GiB, 536870912000 bytes, 1048576000 sectors
Disk mapper/vg2tera-volc: 500 GiB, 536870912000 bytes, 1048576000 sectors
Disk mapper/vg2tera-Logical_Volume_03: 363.02 GiB, 389785059328 bytes, 761298944 sectors
Disk identifier: 0x2052474d
                                       Boot      Start        End    Sectors   Size Id Type
mapper/vg2tera-Logical_Volume_03-part1         6579571 1924427647 1917848077 914.5G 70 DiskSecure Multi-Boot
mapper/vg2tera-Logical_Volume_03-part2      1953251627 3771827541 1818575915 867.2G 43 unknown
mapper/vg2tera-Logical_Volume_03-part3       225735265  225735274         10     5K 72 unknown
mapper/vg2tera-Logical_Volume_03-part4      2642411520 2642463409      51890  25.3M  0 Empty
Partition table entries are not in disk order.
Disk mapper/sda6_crypt: 930.28 GiB, 998880837632 bytes, 1950939136 sectors
Disk mapper/vgxubuntu-root: 929.32 GiB, 997854281728 bytes, 1948934144 sectors
Disk mapper/vgxubuntu-swap_1: 976 MiB, 1023410176 bytes, 1998848 sectors

parted -lm (filtered): _________________________________________________________

sda:1000GB:scsi:512:512:msdos:ATA Samsung SSD 860:;
1:1049kB:538MB:537MB:ext4::;
2:539MB:1000GB:1000GB:::;
5:539MB:1305MB:767MB:ext4::boot;
6:1307MB:1000GB:999GB:::;
sdb:2000GB:scsi:512:512:unknown:ATA ST2000DL003-9VT1:;
sdc:4001GB:scsi:512:4096:gpt:ATA ST4000VN006-3CW1:;
1:1049kB:4001GB:4001GB:::;
mapper/vg2tera-Logical_Volume_03:390GB:dm:512:512:loop:Linux device-mapper (linear):;
1:0.00B:390GB:390GB:ntfs::;
mapper/vg2tera-vola:537GB:dm:512:512:loop:Linux device-mapper (linear):;
1:0.00B:537GB:537GB:ext4::;
mapper/vgxubuntu-swap_1:1023MB:dm:512:512:loop:Linux device-mapper (linear):;
1:0.00B:1023MB:1023MB:linux-swap(v1)::;
mapper/vg2tera-volc:537GB:dm:512:512:loop:Linux device-mapper (linear):;
1:0.00B:537GB:537GB:ext4::;
mapper/vg2tera-volb:537GB:dm:512:512:loop:Linux device-mapper (linear):;
1:0.00B:537GB:537GB:ext4::;
mapper/vgxubuntu-root:998GB:dm:512:512:loop:Linux device-mapper (linear):;
1:0.00B:998GB:998GB:ext4::;
mapper/sda6_crypt:999GB:dm:512:512:unknown:Linux device-mapper (crypt):;
nvme0n1:500GB:nvme:512:512:msdos:CT500P1SSD8:;
1:1049kB:30.0GB:30.0GB:ext4::;
2:30.0GB:500GB:470GB:::;
5:30.0GB:31.0GB:1023MB:linux-swap(v1)::;
6:31.0GB:500GB:469GB:ext4::;

blkid (filtered): ______________________________________________________________

NAME                        FSTYPE      UUID                                   PARTUUID                             LABEL       PARTLABEL
sda                                                                                                                             
├─sda1                      ext4        0fb860b3-4520-4178-8e0a-fe290a6b998f   35bf84c5-01                          SSD_P1      
├─sda2                                                                         35bf84c5-02                                      
├─sda5                      ext4        9bcc86c7-0333-4d90-a302-65b1a38fd43e   35bf84c5-05                                      
└─sda6                      crypto_LUKS 72c63273-03d7-458d-8809-4df953320db2   35bf84c5-06                                      
  └─sda6_crypt              LVM2_member T7KtZ7-7Hyl-iv2a-zVKn-FWih-Eo7w-JfPFyA                                                  
    ├─vgxubuntu-root        ext4        18f066a6-65d4-4f4a-8751-7accd9bcd7be                                                    
    └─vgxubuntu-swap_1      swap        c555f00d-276e-406b-ada1-2cfb1e03247d                                                    
sdb                         LVM2_member 92DArv-HATX-Nq1t-O2ub-bT2f-B2j0-bwXHFY                                                  
├─vg2tera-vola              ext4        3e2be763-fac4-4315-b5f9-298b0df3766a                                        vol_a       
├─vg2tera-volb              ext4        eae9ad62-caf0-4f63-8ea7-cb276d1249af                                        vol_b       
├─vg2tera-volc              ext4        7e3245dc-3b8b-4857-b683-11bf41fc47ee                                        vol_c       
└─vg2tera-Logical_Volume_03 ntfs        515832124827A720                                                            WindowsTrav 
sdc                                                                                                                             
└─sdc1                      crypto_LUKS ff94071f-73db-4e41-945f-9b67d7042b3f   9062487a-5d7d-4371-aa8d-1f43b27d7eb3             
nvme0n1                                                                                                                         
├─nvme0n1p1                 ext4        33901721-9b4c-4426-b63a-4f84e5e55aba   46f4bc74-01                          nvme1syst   
├─nvme0n1p2                                                                    46f4bc74-02                                      
├─nvme0n1p5                 swap        5b33391d-f663-40cd-8c0c-2efc545d8aad   46f4bc74-05                                      
└─nvme0n1p6                 ext4        1660d1b0-e634-4b40-9203-1133dc2346c1   46f4bc74-06                          nvme6home   

Mount points (filtered): _______________________________________________________

                                       Avail Use% Mounted on
/dev/mapper/vg2tera-Logical_Volume_03 288.9G  20% /mnt/boot-sav/mapper/vg2tera-Logical_Volume_03
/dev/mapper/vg2tera-vola              195.3G  55% /mnt/boot-sav/mapper/vg2tera-vola
/dev/mapper/vg2tera-volb               50.1G  85% /mnt/boot-sav/mapper/vg2tera-volb
/dev/mapper/vg2tera-volc               22.9G  90% /mnt/boot-sav/mapper/vg2tera-volc
/dev/mapper/vgxubuntu-root            769.6G  11% /
/dev/nvme0n1p1                         18.1G  29% /mnt/boot-sav/nvme0n1p1
/dev/nvme0n1p6                          393G   3% /mnt/boot-sav/nvme0n1p6
/dev/sda1                             451.7M   0% /mnt/boot-sav/sda1
/dev/sda5                             388.7M  37% /mnt/boot-sav/sda5

Mount options (filtered): ______________________________________________________


============================== ls -R /dev/mapper/ ==============================

/dev/mapper:
control
sda6_crypt
vg2tera-Logical_Volume_03
vg2tera-vola
vg2tera-volb
vg2tera-volc
vgxubuntu-root
vgxubuntu-swap_1

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

Debian GNU/Linux   33901721-9b4c-4426-b63a-4f84e5e55aba
Debian GNU/Linux, with Linux 5.10.0-21-amd64   33901721-9b4c-4426-b63a-4f84e5e55aba
Debian GNU/Linux, with Linux 5.10.0-20-amd64   33901721-9b4c-4426-b63a-4f84e5e55aba
Mac OS X (32-bit) (on loop2p3)   osprober-xnu-32-0000000000000000
Mac OS X (64-bit) (on loop2p3)   osprober-xnu-64-0000000000000000
Mac OS X (32-bit) (on loop5p3)   osprober-xnu-32-0000000000000000
Mac OS X (64-bit) (on loop5p3)   osprober-xnu-64-0000000000000000
Debian GNU/Linux 11 (bullseye) (on sdd1)   a0b7e453-2b61-4ec8-9ecc-2d4a4cb8f606
Debian GNU/Linux (on sdd1)   a0b7e453-2b61-4ec8-9ecc-2d4a4cb8f606
Debian GNU/Linux, with Linux 5.10.0-21-amd64 (on sdd1)   a0b7e453-2b61-4ec8-9ecc-2d4a4cb8f606
Debian GNU/Linux, with Linux 5.10.0-20-amd64 (on sdd1)   a0b7e453-2b61-4ec8-9ecc-2d4a4cb8f606
Ubuntu 22.04.1 LTS (22.04) (on mapper/vgxubuntu-root)   18f066a6-65d4-4f4a-8751-7accd9bcd7be
Ubuntu (on mapper/vgxubuntu-root)   18f066a6-65d4-4f4a-8751-7accd9bcd7be
Ubuntu, with Linux 5.10.0-20-amd64 (on mapper/vgxubuntu-root)   18f066a6-65d4-4f4a-8751-7accd9bcd7be
Ubuntu, with Linux 5.10.0-8-amd64 (on mapper/vgxubuntu-root)   18f066a6-65d4-4f4a-8751-7accd9bcd7be
### END /etc/grub.d/30_os-prober ###
### END /etc/grub.d/30_uefi-firmware ###

======================== nvme0n1p1/etc/fstab (filtered) ========================

# <file system> <mount point>   <type>  <options>       <dump>  <pass>
# / was on /dev/nvme0n1p1 during installation
UUID=33901721-9b4c-4426-b63a-4f84e5e55aba /               ext4    errors=remount-ro 0       1
# /home was on /dev/nvme0n1p6 during installation
UUID=1660d1b0-e634-4b40-9203-1133dc2346c1 /home           ext4    defaults        0       2
# swap was on /dev/nvme0n1p5 during installation
UUID=5b33391d-f663-40cd-8c0c-2efc545d8aad none            swap    sw              0       0
/dev/sr0        /media/cdrom0   udf,iso9660 user,noauto     0       0

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

GRUB_DEFAULT=0
GRUB_TIMEOUT=10
GRUB_DISTRIBUTOR=`lsb_release -i -s 2> /dev/null || echo Debian`
GRUB_CMDLINE_LINUX_DEFAULT="quiet"
GRUB_CMDLINE_LINUX=""
GRUB_DISABLE_OS_PROBER=false

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

           GiB - GB             File                                 Fragment(s)
            ?? = ??             boot/grub/grub.cfg                             1
   6,621025085 = 7,109271552    boot/grub/i386-pc/core.img                     1
   2,038829803 = 2,189176832    boot/vmlinuz-5.10.0-20-amd64                   1
   6,175479889 = 6,630871040    boot/vmlinuz-5.10.0-21-amd64                   2
   6,175479889 = 6,630871040    vmlinuz                                        2
   2,038829803 = 2,189176832    vmlinuz.old                                    1
   1,927165985 = 2,069278720    boot/initrd.img-5.10.0-20-amd64                1
   7,647083282 = 8,210993152    boot/initrd.img-5.10.0-21-amd64                5
   6,802181244 = 7,303786496    boot/initrd.img-5.10.0-21-amd64.old-dkms       1
   7,647083282 = 8,210993152    initrd.img                                     5
   1,927165985 = 2,069278720    initrd.img.old                                 1

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

-rwxr-xr-x 1 root root 14123 Nov  8 18:29 10_linux
-rwxr-xr-x 1 root root 14180 Nov  8 18:29 20_linux_xen
-rwxr-xr-x 1 root root 12910 Nov  8 18:29 30_os-prober
-rwxr-xr-x 1 root root  1372 Nov  8 18:29 30_uefi-firmware
-rwxr-xr-x 1 root root   214 Nov  8 18:29 40_custom
-rwxr-xr-x 1 root root   215 Nov  8 18:29 41_custom

======================== sda5/grub/grub.cfg (filtered) =========================

GNU/Linux   18f066a6-65d4-4f4a-8751-7accd9bcd7be
GNU/Linux, with Linux 5.15.0-58-generic   18f066a6-65d4-4f4a-8751-7accd9bcd7be
GNU/Linux, with Linux 5.15.0-57-generic   18f066a6-65d4-4f4a-8751-7accd9bcd7be
Debian GNU/Linux 11 (bullseye) (on nvme0n1p1)   942c83ff-15e0-46cf-bc9c-e8fd323490e8
Debian GNU/Linux (on nvme0n1p1)   942c83ff-15e0-46cf-bc9c-e8fd323490e8
Debian GNU/Linux, with Linux 5.10.0-20-amd64 (on nvme0n1p1)   942c83ff-15e0-46cf-bc9c-e8fd323490e8
Debian GNU/Linux, with Linux 5.10.0-8-amd64 (on nvme0n1p1)   942c83ff-15e0-46cf-bc9c-e8fd323490e8
### END /etc/grub.d/30_os-prober ###
### END /etc/grub.d/30_uefi-firmware ###
40-0    GNU/Linux   18f066a6-65d4-4f4a-8751-7accd9bcd7be
40-b    GNU/Linux   18f066a6-65d4-4f4a-8751-7accd9bcd7be
40-1_custom Ubuntu   18f066a6-65d4-4f4a-8751-7accd9bcd7be
40-2_custom AL0  Debian GNU/Linux   23b3a3b3-81d4-4d33-8228-666f57f7d07b

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

           GiB - GB             File                                 Fragment(s)
   0,648456573 = 0,696274944    grub/grub.cfg                                  1
   0,726882935 = 0,780484608    grub/i386-pc/core.img                          1
   0,653335571 = 0,701513728    vmlinuz                                        2
   0,524322510 = 0,562987008    vmlinuz-5.15.0-57-generic                      1
   0,653335571 = 0,701513728    vmlinuz-5.15.0-58-generic                      2
   0,524322510 = 0,562987008    vmlinuz.old                                    1
   0,935821533 = 1,004830720    initrd.img                                     4
   1,043331146 = 1,120268288    initrd.img-5.15.0-57-generic                   1
   0,935821533 = 1,004830720    initrd.img-5.15.0-58-generic                   4
   1,043331146 = 1,120268288    initrd.img.old                                 1

======================== Unknown MBRs/Boot Sectors/etc =========================

Unknown GPT Partiton Type
cb7c7dcaed63534c861c1742536059cc
Unknown BootLoader on sda6

Unknown BootLoader on sdc1

Hors ligne

#12 Le 13/02/2023, à 18:06

Compte supprimé

Re : booter sur device non détecté par le bios et sans cle usb

Refind, non plus, ne sait pas détecter automatiquement une installation entièrement chiffrée.

C'est à dire que je me demande si on peut installer sur le PC le kernel spécial et non chiffré qui est sur la clé.
Après il reste à choisir celui que l'on veut lancer au démarrage.

Mais comme je n'y connais presque rien, je rêve certainement hmm

Dernière modification par Compte supprimé (Le 13/02/2023, à 18:07)

#13 Le 13/02/2023, à 21:26

geole

Re : booter sur device non détecté par le bios et sans cle usb

Je ne comprends pas pourquoi il y a eu un boot-repair de fait alors que je demandais  un boot-info afin de  faire le point.

De plus le choix de réparation fait

The settings chosen by the user will purge (in order to enable-lvm) and reinstall the grub2 of
mapper/vgxubuntu-root into the MBR of sda

=> Grub2 (v2.00) is installed in the MBR of /dev/sda and looks at sector 1 of 
    the same hard drive for core.img. core.img is at this location and looks 
    for (lvmid/8OuQ9a-7h1n-ZlfZ-P0Gh-aafX-mM4a-nywVYt/OdVw8U-s6r4-J6RT-rBTZ-0Z5p-0F
    ol-Q8o6fz)/boot/grub. 

n'est pas correct. Cela fait booter directerment le ubuntu chiffré alors que je croyais qu'on allait faire un dual boot,
A mon avis, Il fallait lancer un grub-install en disant qu'il fallait utiliser la  partition de  boot SDA5 et  le ubuntu de SDA6.

Cela peut se faire aussi après avoir  booté  dans le ubuntu chiffré et faire.

sudo grub-install /dev/sda5
sudo update-grub

Dernière modification par geole (Le 13/02/2023, à 21:42)


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

Hors ligne

#14 Le 15/02/2023, à 13:33

BrunoL

Re : booter sur device non détecté par le bios et sans cle usb

Merci geole pour ton aide. le boootinfo donne :

boot-repair-4ppa2056                                              [20230215_1221]

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

 => libparted MBR boot code is installed in the MBR of /dev/nvme0n1.
 => Grub2 (v2.00) is installed in the MBR of /dev/sda and looks at sector 1 of 
    the same hard drive for core.img. core.img is at this location and looks 
    for (,msdos5)/grub. It also embeds following components:
    
    modules
    ---------------------------------------------------------------------------
    fshelp ext2 part_msdos biosdisk
    ---------------------------------------------------------------------------
 => No boot loader is installed in the MBR of /dev/sdc.

nvme0n1p1: _____________________________________________________________________

    File system:       ext4
    Boot sector type:  -
    Boot sector info: 
    Operating System:  Debian GNU/Linux 11 (bullseye)
    Boot files:        /boot/grub/grub.cfg /etc/fstab /etc/default/grub 
                       /boot/grub/i386-pc/core.img

nvme0n1p2: _____________________________________________________________________

    File system:       Extended Partition
    Boot sector type:  -
    Boot sector info: 

nvme0n1p5: _____________________________________________________________________

    File system:       swap
    Boot sector type:  -
    Boot sector info: 

nvme0n1p6: _____________________________________________________________________

    File system:       ext4
    Boot sector type:  -
    Boot sector info: 
    Operating System:  
    Boot files:        

sda1: __________________________________________________________________________

    File system:       ext4
    Boot sector type:  -
    Boot sector info: 
    Operating System:  
    Boot files:        

sda2: __________________________________________________________________________

    File system:       Extended Partition
    Boot sector type:  -
    Boot sector info: 

sda5: __________________________________________________________________________

    File system:       ext4
    Boot sector type:  -
    Boot sector info: 
    Operating System:  
    Boot files:        /grub/grub.cfg /grub/i386-pc/core.img

sda6: __________________________________________________________________________

    File system:       crypto_LUKS
    Boot sector type:  Unknown
    Boot sector info: 

sdc1: __________________________________________________________________________

    File system:       crypto_LUKS
    Boot sector type:  Unknown
    Boot sector info: 

sdb: ___________________________________________________________________________

    File system:       LVM2_member
    Boot sector type:  -
    Boot sector info: 


================================ 2 OS detected =================================

OS#1:   L'OS actuellement utilisé - Ubuntu 22.04.1 LTS CurrentSession on mapper/vgxubuntu-root
OS#2:   Debian GNU/Linux 11 (bullseye) on nvme0n1p1

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

CPU architecture: 64-bit
Video: Cedar [Radeon HD 5000/6000/7350/8350 Series] from Advanced Micro Devices, Inc. [AMD/ATI]
BOOT_IMAGE of the installed session in use:
/vmlinuz-5.15.0-60-generic root=/dev/mapper/vgxubuntu-root ro quiet splash vt.handoff=7
df -Th / : /dev/mapper/vgxubuntu-root ext4   914G     99G  769G  12% /

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

BIOS/UEFI firmware: 1408   (8.15) from American Megatrends Inc.
This installed-session is in Legacy/BIOS/CSM mode (not in EFI mode).



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

Disks info: ____________________________________________________________________

sda	: notGPT,	no-BIOSboot,	has-noESP, 	not-usb,	not-mmc, has-os,	no-wind,	2048 sectors * 512 bytes
nvme0n1	: notGPT,	no-BIOSboot,	has-noESP, 	not-usb,	not-mmc, has-os,	no-wind,	2048 sectors * 512 bytes

Partitions info (1/3): _________________________________________________________

mapper/vgxubuntu-root	: is-os,	64, apt-get,	grub-pc ,	grub2,	grub-install,	grubenv-ok,	update-grub,	not-far
mapper/vg2tera-volb	: no-os,	64, nopakmgr,	no-docgrub,	nogrub,	nogrubinstall,	no-grubenv,	noupdategrub,	not-far
nvme0n1p1	: is-os,	64, apt-get,	grub-pc ,	grub2,	grub-install,	grubenv-ok,	update-grub,	not-far
nvme0n1p6	: no-os,	64, nopakmgr,	no-docgrub,	nogrub,	nogrubinstall,	no-grubenv,	noupdategrub,	farbios
mapper/vg2tera-volc	: no-os,	64, nopakmgr,	no-docgrub,	nogrub,	nogrubinstall,	no-grubenv,	noupdategrub,	not-far
mapper/vg2tera-vola	: no-os,	64, nopakmgr,	no-docgrub,	nogrub,	nogrubinstall,	no-grubenv,	noupdategrub,	not-far
sda5	: no-os,	64, nopakmgr,	no-docgrub,	nogrub,	nogrubinstall,	grubenv-ok,	noupdategrub,	not-far
sda1	: no-os,	64, nopakmgr,	no-docgrub,	nogrub,	nogrubinstall,	no-grubenv,	noupdategrub,	not-far
mapper/vg2tera-Logical_Volume_03	: no-os,	64, nopakmgr,	no-docgrub,	nogrub,	nogrubinstall,	no-grubenv,	noupdategrub,	not-far

Partitions info (2/3): _________________________________________________________

mapper/vgxubuntu-root	: isnotESP,	fstab-without-efi,	no-nt,	no-winload,	no-recov-nor-hid,	no-bmgr,	notwinboot
mapper/vg2tera-volb	: isnotESP,	part-has-no-fstab,	no-nt,	no-winload,	no-recov-nor-hid,	no-bmgr,	notwinboot
nvme0n1p1	: isnotESP,	fstab-without-efi,	no-nt,	no-winload,	no-recov-nor-hid,	no-bmgr,	notwinboot
nvme0n1p6	: isnotESP,	part-has-no-fstab,	no-nt,	no-winload,	no-recov-nor-hid,	no-bmgr,	notwinboot
mapper/vg2tera-volc	: isnotESP,	part-has-no-fstab,	no-nt,	no-winload,	no-recov-nor-hid,	no-bmgr,	notwinboot
mapper/vg2tera-vola	: isnotESP,	part-has-no-fstab,	no-nt,	no-winload,	no-recov-nor-hid,	no-bmgr,	notwinboot
sda5	: isnotESP,	part-has-no-fstab,	no-nt,	no-winload,	no-recov-nor-hid,	no-bmgr,	notwinboot
sda1	: isnotESP,	part-has-no-fstab,	no-nt,	no-winload,	no-recov-nor-hid,	no-bmgr,	notwinboot
mapper/vg2tera-Logical_Volume_03	: isnotESP,	part-has-no-fstab,	no-nt,	no-winload,	no-recov-nor-hid,	no-bmgr,	notwinboot

Partitions info (3/3): _________________________________________________________

mapper/vgxubuntu-root	: not--sepboot,	with-boot,	fstab-has-goodBOOT,	not-sep-usr,	with--usr,	fstab-without-usr,	std-grub.d,	sda
mapper/vg2tera-volb	: maybesepboot,	no---boot,	part-has-no-fstab,	not-sep-usr,	no---usr,	part-has-no-fstab,	no--grub.d,	sda
nvme0n1p1	: not--sepboot,	with-boot,	fstab-without-boot,	not-sep-usr,	with--usr,	fstab-without-usr,	std-grub.d,	nvme0n1
nvme0n1p6	: maybesepboot,	no---boot,	part-has-no-fstab,	not-sep-usr,	no---usr,	part-has-no-fstab,	no--grub.d,	nvme0n1
mapper/vg2tera-volc	: maybesepboot,	no---boot,	part-has-no-fstab,	not-sep-usr,	no---usr,	part-has-no-fstab,	no--grub.d,	sda
mapper/vg2tera-vola	: maybesepboot,	no---boot,	part-has-no-fstab,	not-sep-usr,	no---usr,	part-has-no-fstab,	no--grub.d,	sda
sda5	: is---sepboot,	no---boot,	part-has-no-fstab,	not-sep-usr,	no---usr,	part-has-no-fstab,	no--grub.d,	sda
sda1	: maybesepboot,	no---boot,	part-has-no-fstab,	not-sep-usr,	no---usr,	part-has-no-fstab,	no--grub.d,	sda
mapper/vg2tera-Logical_Volume_03	: 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: 465.76 GiB, 500107862016 bytes, 976773168 sectors
Disk identifier: 0x46f4bc74
          Boot    Start       End   Sectors   Size Id Type
nvme0n1p1          2048  58593279  58591232  27.9G 83 Linux
nvme0n1p2      58595326 976771071 918175746 437.8G  5 Extended
nvme0n1p5      58595328  60594175   1998848   976M 82 Linux swap / Solaris
nvme0n1p6      60596224 976771071 916174848 436.9G 83 Linux
Disk sda: 931.51 GiB, 1000204886016 bytes, 1953525168 sectors
Disk identifier: 0x35bf84c5
      Boot   Start        End    Sectors   Size Id Type
sda1          2048    1050623    1048576   512M 83 Linux
sda2       1052670 1953523711 1952471042   931G  5 Extended
sda5  *    1052672    2549759    1497088   731M 83 Linux
sda6       2551808 1953523711 1950971904 930.3G 83 Linux
Disk sdb: 1.82 TiB, 2000398934016 bytes, 3907029168 sectors
Disk sdc: 3.64 TiB, 4000787030016 bytes, 7814037168 sectors
Disk identifier: BFCDA68A-6FE6-4784-9D10-5C01C219696D
      Start        End    Sectors  Size Type
sdc1   2048 7814035455 7814033408  3.6T unknown
Disk mapper/vg2tera-vola: 500 GiB, 536870912000 bytes, 1048576000 sectors
Disk mapper/vg2tera-volb: 500 GiB, 536870912000 bytes, 1048576000 sectors
Disk mapper/vg2tera-volc: 500 GiB, 536870912000 bytes, 1048576000 sectors
Disk mapper/vg2tera-Logical_Volume_03: 363.02 GiB, 389785059328 bytes, 761298944 sectors
Disk identifier: 0x2052474d
                                       Boot      Start        End    Sectors   Size Id Type
mapper/vg2tera-Logical_Volume_03-part1         6579571 1924427647 1917848077 914.5G 70 DiskSecure Multi-Boot
mapper/vg2tera-Logical_Volume_03-part2      1953251627 3771827541 1818575915 867.2G 43 unknown
mapper/vg2tera-Logical_Volume_03-part3       225735265  225735274         10     5K 72 unknown
mapper/vg2tera-Logical_Volume_03-part4      2642411520 2642463409      51890  25.3M  0 Empty
Partition table entries are not in disk order.
Disk mapper/sda6_crypt: 930.28 GiB, 998880837632 bytes, 1950939136 sectors
Disk mapper/vgxubuntu-root: 929.32 GiB, 997854281728 bytes, 1948934144 sectors
Disk mapper/vgxubuntu-swap_1: 976 MiB, 1023410176 bytes, 1998848 sectors

parted -lm (filtered): _________________________________________________________

sda:1000GB:scsi:512:512:msdos:ATA Samsung SSD 860:;
1:1049kB:538MB:537MB:ext4::;
2:539MB:1000GB:1000GB:::;
5:539MB:1305MB:767MB:ext4::boot;
6:1307MB:1000GB:999GB:::;
sdb:2000GB:scsi:512:512:unknown:ATA ST2000DL003-9VT1:;
sdc:4001GB:scsi:512:4096:gpt:ATA ST4000VN006-3CW1:;
1:1049kB:4001GB:4001GB:::;
mapper/vg2tera-volc:537GB:dm:512:512:loop:Linux device-mapper (linear):;
1:0.00B:537GB:537GB:ext4::;
mapper/vg2tera-volb:537GB:dm:512:512:loop:Linux device-mapper (linear):;
1:0.00B:537GB:537GB:ext4::;
mapper/vg2tera-vola:537GB:dm:512:512:loop:Linux device-mapper (linear):;
1:0.00B:537GB:537GB:ext4::;
mapper/vg2tera-Logical_Volume_03:390GB:dm:512:512:loop:Linux device-mapper (linear):;
1:0.00B:390GB:390GB:ntfs::;
mapper/vgxubuntu-swap_1:1023MB:dm:512:512:loop:Linux device-mapper (linear):;
1:0.00B:1023MB:1023MB:linux-swap(v1)::;
mapper/vgxubuntu-root:998GB:dm:512:512:loop:Linux device-mapper (linear):;
1:0.00B:998GB:998GB:ext4::;
mapper/sda6_crypt:999GB:dm:512:512:unknown:Linux device-mapper (crypt):;
nvme0n1:500GB:nvme:512:512:msdos:CT500P1SSD8:;
1:1049kB:30.0GB:30.0GB:ext4::;
2:30.0GB:500GB:470GB:::;
5:30.0GB:31.0GB:1023MB:linux-swap(v1)::;
6:31.0GB:500GB:469GB:ext4::;

blkid (filtered): ______________________________________________________________

NAME                        FSTYPE      UUID                                   PARTUUID                             LABEL       PARTLABEL
sda                                                                                                                             
├─sda1                      ext4        0fb860b3-4520-4178-8e0a-fe290a6b998f   35bf84c5-01                          SSD_P1      
├─sda2                                                                         35bf84c5-02                                      
├─sda5                      ext4        9bcc86c7-0333-4d90-a302-65b1a38fd43e   35bf84c5-05                                      
└─sda6                      crypto_LUKS 72c63273-03d7-458d-8809-4df953320db2   35bf84c5-06                                      
  └─sda6_crypt              LVM2_member T7KtZ7-7Hyl-iv2a-zVKn-FWih-Eo7w-JfPFyA                                                  
    ├─vgxubuntu-root        ext4        18f066a6-65d4-4f4a-8751-7accd9bcd7be                                                    
    └─vgxubuntu-swap_1      swap        c555f00d-276e-406b-ada1-2cfb1e03247d                                                    
sdb                         LVM2_member 92DArv-HATX-Nq1t-O2ub-bT2f-B2j0-bwXHFY                                                  
├─vg2tera-vola              ext4        3e2be763-fac4-4315-b5f9-298b0df3766a                                        vol_a       
├─vg2tera-volb              ext4        eae9ad62-caf0-4f63-8ea7-cb276d1249af                                        vol_b       
├─vg2tera-volc              ext4        7e3245dc-3b8b-4857-b683-11bf41fc47ee                                        vol_c       
└─vg2tera-Logical_Volume_03 ntfs        515832124827A720                                                            WindowsTrav 
sdc                                                                                                                             
└─sdc1                      crypto_LUKS ff94071f-73db-4e41-945f-9b67d7042b3f   9062487a-5d7d-4371-aa8d-1f43b27d7eb3             
nvme0n1                                                                                                                         
├─nvme0n1p1                 ext4        33901721-9b4c-4426-b63a-4f84e5e55aba   46f4bc74-01                          nvme1syst   
├─nvme0n1p2                                                                    46f4bc74-02                                      
├─nvme0n1p5                 swap        5b33391d-f663-40cd-8c0c-2efc545d8aad   46f4bc74-05                                      
└─nvme0n1p6                 ext4        1660d1b0-e634-4b40-9203-1133dc2346c1   46f4bc74-06                          nvme6home   

Mount points (filtered): _______________________________________________________

                                       Avail Use% Mounted on
/dev/mapper/vg2tera-Logical_Volume_03 278.9G  23% /mnt/boot-sav/mapper/vg2tera-Logical_Volume_03
/dev/mapper/vg2tera-vola              195.3G  55% /mnt/boot-sav/mapper/vg2tera-vola
/dev/mapper/vg2tera-volb               50.1G  85% /mnt/boot-sav/mapper/vg2tera-volb
/dev/mapper/vg2tera-volc               22.9G  90% /mnt/boot-sav/mapper/vg2tera-volc
/dev/mapper/vgxubuntu-root            768.4G  11% /
/dev/nvme0n1p1                         18.2G  28% /mnt/boot-sav/nvme0n1p1
/dev/nvme0n1p6                          393G   3% /mnt/boot-sav/nvme0n1p6
/dev/sda1                             451.7M   0% /mnt/boot-sav/sda1
/dev/sda5                             290.4M  51% /boot

Mount options (filtered): ______________________________________________________


============================== ls -R /dev/mapper/ ==============================

/dev/mapper:
control
sda6_crypt
vg2tera-Logical_Volume_03
vg2tera-vola
vg2tera-volb
vg2tera-volc
vgxubuntu-root
vgxubuntu-swap_1

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

Debian GNU/Linux   33901721-9b4c-4426-b63a-4f84e5e55aba
Debian GNU/Linux, with Linux 5.10.0-21-amd64   33901721-9b4c-4426-b63a-4f84e5e55aba
Debian GNU/Linux, with Linux 5.10.0-20-amd64   33901721-9b4c-4426-b63a-4f84e5e55aba
Mac OS X (32-bit) (on loop2p3)   osprober-xnu-32-0000000000000000
Mac OS X (64-bit) (on loop2p3)   osprober-xnu-64-0000000000000000
Mac OS X (32-bit) (on loop5p3)   osprober-xnu-32-0000000000000000
Mac OS X (64-bit) (on loop5p3)   osprober-xnu-64-0000000000000000
Debian GNU/Linux 11 (bullseye) (on sdd1)   a0b7e453-2b61-4ec8-9ecc-2d4a4cb8f606
Debian GNU/Linux (on sdd1)   a0b7e453-2b61-4ec8-9ecc-2d4a4cb8f606
Debian GNU/Linux, with Linux 5.10.0-21-amd64 (on sdd1)   a0b7e453-2b61-4ec8-9ecc-2d4a4cb8f606
Debian GNU/Linux, with Linux 5.10.0-20-amd64 (on sdd1)   a0b7e453-2b61-4ec8-9ecc-2d4a4cb8f606
Ubuntu 22.04.1 LTS (22.04) (on mapper/vgxubuntu-root)   18f066a6-65d4-4f4a-8751-7accd9bcd7be
Ubuntu (on mapper/vgxubuntu-root)   18f066a6-65d4-4f4a-8751-7accd9bcd7be
Ubuntu, with Linux 5.10.0-20-amd64 (on mapper/vgxubuntu-root)   18f066a6-65d4-4f4a-8751-7accd9bcd7be
Ubuntu, with Linux 5.10.0-8-amd64 (on mapper/vgxubuntu-root)   18f066a6-65d4-4f4a-8751-7accd9bcd7be
### END /etc/grub.d/30_os-prober ###
### END /etc/grub.d/30_uefi-firmware ###

======================== nvme0n1p1/etc/fstab (filtered) ========================

# <file system> <mount point>   <type>  <options>       <dump>  <pass>
# / was on /dev/nvme0n1p1 during installation
UUID=33901721-9b4c-4426-b63a-4f84e5e55aba /               ext4    errors=remount-ro 0       1
# /home was on /dev/nvme0n1p6 during installation
UUID=1660d1b0-e634-4b40-9203-1133dc2346c1 /home           ext4    defaults        0       2
# swap was on /dev/nvme0n1p5 during installation
UUID=5b33391d-f663-40cd-8c0c-2efc545d8aad none            swap    sw              0       0
/dev/sr0        /media/cdrom0   udf,iso9660 user,noauto     0       0
tmpfs   /tmp                                    tmpfs       defaults,size=512M 0 0
tmpfs	/home/alain/.cache/mozilla/firefox	tmpfs

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

GRUB_DEFAULT=0
GRUB_TIMEOUT=10
GRUB_DISTRIBUTOR=`lsb_release -i -s 2> /dev/null || echo Debian`
GRUB_CMDLINE_LINUX_DEFAULT="quiet"
GRUB_CMDLINE_LINUX=""
GRUB_DISABLE_OS_PROBER=false

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

           GiB - GB             File                                 Fragment(s)
   8,043537140 = 8,636682240    boot/grub/grub.cfg                             1
   6,621025085 = 7,109271552    boot/grub/i386-pc/core.img                     1
   2,038829803 = 2,189176832    boot/vmlinuz-5.10.0-20-amd64                   1
   6,175479889 = 6,630871040    boot/vmlinuz-5.10.0-21-amd64                   2
   6,175479889 = 6,630871040    vmlinuz                                        2
   2,038829803 = 2,189176832    vmlinuz.old                                    1
   1,927165985 = 2,069278720    boot/initrd.img-5.10.0-20-amd64                1
   7,647083282 = 8,210993152    boot/initrd.img-5.10.0-21-amd64                5
   6,802181244 = 7,303786496    boot/initrd.img-5.10.0-21-amd64.old-dkms       1
   7,647083282 = 8,210993152    initrd.img                                     5
   1,927165985 = 2,069278720    initrd.img.old                                 1

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

-rwxr-xr-x 1 root root 14123 Nov  8 18:29 10_linux
-rwxr-xr-x 1 root root 14180 Nov  8 18:29 20_linux_xen
-rwxr-xr-x 1 root root 12910 Nov  8 18:29 30_os-prober
-rwxr-xr-x 1 root root  1372 Nov  8 18:29 30_uefi-firmware
-rwxr-xr-x 1 root root   214 Nov  8 18:29 40_custom
-rwxr-xr-x 1 root root   215 Nov  8 18:29 41_custom

======================== sda5/grub/grub.cfg (filtered) =========================

Ubuntu   18f066a6-65d4-4f4a-8751-7accd9bcd7be
Ubuntu, with Linux 5.15.0-60-generic   18f066a6-65d4-4f4a-8751-7accd9bcd7be
Ubuntu, with Linux 5.15.0-58-generic   18f066a6-65d4-4f4a-8751-7accd9bcd7be
Ubuntu, with Linux 5.15.0-57-generic   18f066a6-65d4-4f4a-8751-7accd9bcd7be
Ubuntu, with Linux 5.10.0-20-amd64   18f066a6-65d4-4f4a-8751-7accd9bcd7be
Ubuntu, with Linux 5.10.0-8-amd64   18f066a6-65d4-4f4a-8751-7accd9bcd7be
Debian GNU/Linux 11 (bullseye) (on nvme0n1p1)   33901721-9b4c-4426-b63a-4f84e5e55aba
Debian GNU/Linux (on nvme0n1p1)   33901721-9b4c-4426-b63a-4f84e5e55aba
Debian GNU/Linux, with Linux 5.10.0-21-amd64 (on nvme0n1p1)   33901721-9b4c-4426-b63a-4f84e5e55aba
Debian GNU/Linux, with Linux 5.10.0-20-amd64 (on nvme0n1p1)   33901721-9b4c-4426-b63a-4f84e5e55aba
### END /etc/grub.d/30_os-prober ###
### END /etc/grub.d/30_uefi-firmware ###
Custom_40   18f066a6-65d4-4f4a-8751-7accd9bcd7be
Custom_40_2   18f066a6-65d4-4f4a-8751-7accd9bcd7be
Custom_40_3   33901721-9b4c-4426-b63a-4f84e5e55aba

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

           GiB - GB             File                                 Fragment(s)
   0,689476013 = 0,740319232    grub/grub.cfg                                  1
   0,685791016 = 0,736362496    grub/i386-pc/core.img                          1
   1,067398071 = 1,146109952    vmlinuz                                        1
   1,049861908 = 1,127280640    vmlinuz-5.10.0-20-amd64                        1
   1,056217194 = 1,134104576    vmlinuz-5.10.0-8-amd64                         1
   0,524322510 = 0,562987008    vmlinuz-5.15.0-57-generic                      1
   0,653335571 = 0,701513728    vmlinuz-5.15.0-58-generic                      2
   1,067398071 = 1,146109952    vmlinuz-5.15.0-60-generic                      1
   1,049861908 = 1,127280640    vmlinuz.old                                    1
   1,183795929 = 1,271091200    initrd.img                                     2
   0,907573700 = 0,974499840    initrd.img-5.10.0-20-amd64                     1
   0,931636810 = 1,000337408    initrd.img-5.10.0-8-amd64                      2
   0,938823700 = 1,008054272    initrd.img-5.15.0-57-generic                   2
   1,212886810 = 1,302327296    initrd.img-5.15.0-58-generic                   6
   1,183795929 = 1,271091200    initrd.img-5.15.0-60-generic                   2
   0,907573700 = 0,974499840    initrd.img.old                                 1

======================== Unknown MBRs/Boot Sectors/etc =========================

Unknown GPT Partiton Type
cb7c7dcaed63534c861c1742536059cc
Unknown BootLoader on sda6

Unknown BootLoader on sdc1



==================== blkid (filtered) before lvm activation ====================

/dev/mapper/sda6_crypt: UUID="T7KtZ7-7Hyl-iv2a-zVKn-FWih-Eo7w-JfPFyA" TYPE="LVM2_member"
/dev/mapper/vgxubuntu-swap_1: UUID="c555f00d-276e-406b-ada1-2cfb1e03247d" TYPE="swap"
/dev/mapper/vgxubuntu-root: UUID="18f066a6-65d4-4f4a-8751-7accd9bcd7be" BLOCK_SIZE="4096" TYPE="ext4"
/dev/mapper/vg2tera-volb: LABEL="vol_b" UUID="eae9ad62-caf0-4f63-8ea7-cb276d1249af" BLOCK_SIZE="4096" TYPE="ext4"
/dev/nvme0n1p5: UUID="5b33391d-f663-40cd-8c0c-2efc545d8aad" TYPE="swap" PARTUUID="46f4bc74-05"
/dev/nvme0n1p1: LABEL="nvme1syst" UUID="33901721-9b4c-4426-b63a-4f84e5e55aba" BLOCK_SIZE="4096" TYPE="ext4" PARTUUID="46f4bc74-01"
/dev/nvme0n1p6: LABEL="nvme6home" UUID="1660d1b0-e634-4b40-9203-1133dc2346c1" BLOCK_SIZE="4096" TYPE="ext4" PARTUUID="46f4bc74-06"
/dev/sdb: UUID="92DArv-HATX-Nq1t-O2ub-bT2f-B2j0-bwXHFY" TYPE="LVM2_member"
/dev/mapper/vg2tera-volc: LABEL="vol_c" UUID="7e3245dc-3b8b-4857-b683-11bf41fc47ee" BLOCK_SIZE="4096" TYPE="ext4"
/dev/mapper/vg2tera-vola: LABEL="vol_a" UUID="3e2be763-fac4-4315-b5f9-298b0df3766a" BLOCK_SIZE="4096" TYPE="ext4"
/dev/sdc1: UUID="ff94071f-73db-4e41-945f-9b67d7042b3f" TYPE="crypto_LUKS" PARTUUID="9062487a-5d7d-4371-aa8d-1f43b27d7eb3"
/dev/sda5: UUID="9bcc86c7-0333-4d90-a302-65b1a38fd43e" BLOCK_SIZE="4096" TYPE="ext4" PARTUUID="35bf84c5-05"
/dev/sda1: LABEL="SSD_P1" UUID="0fb860b3-4520-4178-8e0a-fe290a6b998f" BLOCK_SIZE="4096" TYPE="ext4" PARTUUID="35bf84c5-01"
/dev/sda6: UUID="72c63273-03d7-458d-8809-4df953320db2" TYPE="crypto_LUKS" PARTUUID="35bf84c5-06"
/dev/mapper/vg2tera-Logical_Volume_03: LABEL="WindowsTrav" BLOCK_SIZE="512" UUID="515832124827A720" TYPE="ntfs"


================================ LVM activation ================================

modprobe dm-mod  
vgscan --mknodes
  Found volume group "vg2tera" using metadata type lvm2
  Found volume group "vgxubuntu" using metadata type lvm2
vgchange -ay
  4 logical volume(s) in volume group "vg2tera" now active
  2 logical volume(s) in volume group "vgxubuntu" now active
lvscan
  ACTIVE            '/dev/vg2tera/vola' [500.00 GiB] inherit
  ACTIVE            '/dev/vg2tera/volb' [500.00 GiB] inherit
  ACTIVE            '/dev/vg2tera/volc' [500.00 GiB] inherit
  ACTIVE            '/dev/vg2tera/Logical_Volume_03' [<363.02 GiB] inherit
  ACTIVE            '/dev/vgxubuntu/root' [929.32 GiB] inherit
  ACTIVE            '/dev/vgxubuntu/swap_1' [976.00 MiB] inherit
blkid -g



Suggested repair: ______________________________________________________________

The default repair of the Boot-Repair utility would purge (in order to enable-lvm) and reinstall the grub2 of
mapper/vgxubuntu-root into the MBR of sda,
using the following options:  sda5/boot
Grub-efi would not be selected by default because no ESP detected.
Additional repair would be performed: unhide-bootmenu-10s

Confirmation request before suggested repair: __________________________________

You may want to retry after mounting your encrypted partitions so that the tool can verify their contents. (sudo cryptsetup luksOpen /dev/sdc1 myvolume)
Are you sure you want to continue anyway?

Final advice in case of suggested repair: ______________________________________

Please do not forget to make your BIOS boot on sda (ATA Samsung SSD 860) disk!

En quoi le fait d'intaller grub sur sda5 serait une solution ?
Certes on évite de déchiffrer le / de U22.04 (18f066a6-65d4-4f4a-8751-7accd9bcd7be) mais on démarre sur le même kernel (en réalité SDA5 (9bcc86c7-0333-4d90-a302-65b1a38fd43e) est le /boot de U22.04). Il me semble que la seule solution pérenne est de lancer le / sur /dev/nvme0n1p1 et pas sur /dev/sda5. Bien qu'effectivement l'install sur /dev/sda5 est nettement meilleure.
Peut-être ai-je loupé quelque chose.

Dernière modification par BrunoL (Le 15/02/2023, à 13:34)

Hors ligne

#15 Le 16/02/2023, à 01:23

geole

Re : booter sur device non détecté par le bios et sans cle usb

Bonsoir.
si tu démarres avec l'autre kernel et que tu fais

sudo update-grub

SDA5 sera embarqué  naturellement.


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

Hors ligne

#16 Le 16/02/2023, à 11:46

BrunoL

Re : booter sur device non détecté par le bios et sans cle usb

Effectivement mais ce que je cherche à faire c'est :
   1-  faire détecter le device nvme par le kernel sda5,
   2- charger le kernel nvme pour le lancement de la machine.
D’après mes dernières lectures il faut passer par un initrd spécifique qui en pratique est activé en (2).
Je fais des essais mais pour minimiser les risques je bricole sous grub et là le clavier querty est rédhibitoire ... je cherche à régler ce préalable hmm

Hors ligne

#17 Le 16/02/2023, à 18:11

geole

Re : booter sur device non détecté par le bios et sans cle usb

Bonjour
Lance  le ubuntu chiffré
et donne le retour de

sudo update-grub

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

Hors ligne