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 19/04/2020, à 15:47

LukePerp

[Script] Synthèse rapport boot

Bonjour,

Le script suivant réponds à mon besoin. Je l'ai fait pour moi. Parce que j'aime bien aider les demandeurs du forum dont les demandes sont associées d'un rapport de boot info. Je trouve que la lecture de ces rapports est pénibles mais qu'ils sont utile. Alors je me suis fait un script qui affiche une synthèse du rapport boot de ce qui m’intéresse et de ce que je sais interpréter. Je le partage ici afin d'avoir vos suggestions d'améliorations. Le code est à coller dans un fichier et le rendre exécutable pour avoir un script.

Aperçu de la synthèse

lTp8btLs.png

J'ai fait une vidéo pour montrer :
https://peertube.live/videos/watch/0c90 … b4c7598fff


#!/bin/bash
# Récupération du rapport
# Faut coller tout le rapport seul
textrapport=$(yad --title=Rapport --text="Coller tout le rapport seul" --fixed --width=500 --height=200 --center --button=OK --form --field=:TXT)

rapport="/tmp/syntheserapport"
echo -e "$textrapport" > "$rapport"

# Partitions OS détecté
OSprober=$(cat "$rapport" | sed -n "/=================== os-prober:/,/==/p" | sed -e "/=================== os-prober:/d" | sed -e "/==/d")
OSprober="$OSprober\n$(cat "$rapport" | sed -n "/OS detected/,/==/p" | sed -e "/OS detected/d" | sed -e "/==/d")"

# Installation de Grub
GrubMBR=$(cat "$rapport" | grep " =>" -A 2 | sed -e "/__________________________________________________________________________/d")

# Partitions OS présent
OSexist=$(cat "$rapport" | grep "is-os" | cut -f1)

# UEFI-Legacy mode
UEFImode=$(cat "$rapport" | sed -n "/=================== UEFI/,/==/p" | sed -e "/=================== UEFI/d" | sed -e "/==/d")

# EFI boot manager
efibootmgr=$(cat "$rapport" | sed -n "/=================== efibootmgr/,/==/p" | sed -e "/=================== efibootmgr/d" | sed -e "/==/d")

# Partition(s) EFI
EFIpartition=$(cat "$rapport" | grep "is-correct-EFI" | cut -f1)
EFIpartition="$EFIpartition\n$(cat "$rapport" | grep "Presence of EFI" -m 2)"

# fstab
fstab=$(cat "$rapport" | sed -n '\|etc/fstab:|,\|==|p' | sed -e '/Location of files loaded by Grub/d' | egrep -v "(^#.*|^$)" | sed -e '/--------------------------------------------------------------------------------/d' | sed -e '/Partition Info/d' | sed -e '\|boot/grub/grub.cfg|d' | sed -e '\|etc/default/grub|d' | sed -e '\|boot/grub/i386-pc|d')
fstab="$fstab\n$(cat "$rapport" | sed -n '\|etc/fstab (filtered)|,\|==|p' | sed -e '/Location of files loaded by Grub/d' | egrep -v "(^#.*|^$)" | sed -e '/--------------------------------------------------------------------------------/d' | sed -e '/Partition Info/d' | sed -e '\|boot/grub/grub.cfg|d' | sed -e '\|etc/default/grub|d' | sed -e '\|boot/grub/i386-pc|d')"

# UUID blkid
blkidoutput=$(cat "$rapport" | sed -n '\|"blkid" output|,\|==|p'| sed -e '\|"blkid" output|d' | sed -e '/==/d' | grep -Ev "loop" | grep -Ev "iso9660" | awk 'NF')
blkidoutput="$blkidoutput\n$(cat "$rapport" | sed -n '\|blkid (filtered)|,\|==|p'| sed -e '\|blkid (filtered)|d' | sed -e '/==/d' | grep -Ev "loop" | grep -Ev "iso9660" | awk 'NF')"

# fdisk, GPT, Dos
fdiskoutput=$(cat "$rapport" | sed -n "/=================== fdisk/,/==/p" | sed -e "/=================== fdisk/d" | sed -e "/==/d" | grep -Ev "Disk model" | grep -Ev "Sector size" | grep -Ev "I/O size" | grep -Ev "Disk identifier" | grep -Ev "Units" | grep -Ev "loop" | awk 'NF')

output=$(
echo "=================== Mode UEFI/Legacy"
echo "$UEFImode"
echo ""
echo "=================== efibootmgr"
echo "$efibootmgr"
echo ""
echo "=================== Partition(s) EFI"
echo "$EFIpartition"
echo ""
echo "=================== Grub MBR"
echo "$GrubMBR"
echo ""
echo "=================== OS détecté"
echo "$OSprober"
echo ""
echo "=================== Partition(s) avec OS"
echo "$OSexist"
echo ""
echo "=================== Fichier(s) /etc/fstab"
echo "$fstab"
echo ""
echo "=================== UUID blkid"
echo "$blkidoutput"
echo ""
echo "=================== Type de disque et partition"
echo "$fdiskoutput")

echo -e "$output" | yad --text-info --width=800 --height=500 --fixed --center --title="Synthèse du rapport" --button=OK

exit 0

Le script isole les éléments que j'aime bien analyser et interpréter, puis les affiches dans une fenêtre avec yad :

sudo apt install yad

Dernière modification par LukePerp (Le 01/05/2020, à 10:02)


Desktop & Laptop - Ubuntu Mate dernière LTS - Intel i5 - 16 Go - Dual boot Windows offline

Hors ligne

#2 Le 19/04/2020, à 15:56

Watael

Re : [Script] Synthèse rapport boot

salut,

quand une commande est pipée à une autre instance d'elle-même (

sed | sed

), il est fort probable qu'une seule instance de la commande peut faire tout le travail.

sed | grep

ou le contraire, c'est non. sed sait très bien filtrer les regex.

si tu veux simplement modifier le format d'affichage de la sortie d'un script, pourquoi ne pas simplifier directement le script ?


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

En ligne

#3 Le 19/04/2020, à 15:59

LukePerp

Re : [Script] Synthèse rapport boot

Si tu parles de ce genre :

echo "$rapport"  | sed -n "/=================== os-prober:/,/===================/p" | sed -e "/=================== os-prober:/d" | sed -e "/===================/d"

oui je me doute, mais je n'ai pas réussis à le faire en une seule commande avec sed
Je ne souhaite pas modifier l'affichage du script du rapport de boot, car je souhaite aider sur le forum en analysant les rapports de boot publiés.

Dernière modification par LukePerp (Le 19/04/2020, à 16:01)


Desktop & Laptop - Ubuntu Mate dernière LTS - Intel i5 - 16 Go - Dual boot Windows offline

Hors ligne

#4 Le 19/04/2020, à 16:10

kamaris

Re : [Script] Synthèse rapport boot

Pour le regroupement des sed et grep -v :

sed -n '/p1/,/p2/p' | sed '/p1/d' | sed '/p2/d' | grep -v 'p3' | grep -v 'p4' | … | grep -v 'pN'

est équivalent à :

sed -nE '/p1/,/p2/{/p1|p2|…|pN/!p}'

Hors ligne

#5 Le 19/04/2020, à 16:31

Watael

Re : [Script] Synthèse rapport boot

Je ne souhaite pas modifier l'affichage du script du rapport de boot

quelle est la finalité de ton script alors ?
regrouper, filtrer, ça modifie un peu l'affichage.


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

En ligne

#6 Le 19/04/2020, à 18:35

kamaris

Re : [Script] Synthèse rapport boot

Pour compléter #4, le awk 'NF' aussi peut-être inclus dans sed :

sed -nE '/p1/,/p2/{/p1|p2|…|pN|^[[:blank:]]*$/!p}'

Hors ligne

#7 Le 19/04/2020, à 18:45

LukePerp

Re : [Script] Synthèse rapport boot

kamaris : bravo, je suis impressionné. Je trouve la syntaxe et le fonctionnement de sed très compliqué et très peu accessible. J'apprécie ton aide.


Desktop & Laptop - Ubuntu Mate dernière LTS - Intel i5 - 16 Go - Dual boot Windows offline

Hors ligne

#8 Le 19/04/2020, à 18:51

kamaris

Re : [Script] Synthèse rapport boot

De rien, c'est avec plaisir smile

Hors ligne

#9 Le 20/04/2020, à 08:19

ar barzh paour

Re : [Script] Synthèse rapport boot

j'ai fait l'essai sur un boot-info assez récent ,
le rapport ne me sort que la partie UUID blkid , toutes les autres sont vides

il semblerait qu'il y a un souci entre

rapport=$(yad --entry ....)

et l'utilisation

OSprober=$(echo "$rapport"  | ...)

mais je ne sais pas lequel ( taille du fichier source? (1,1Mo)


en effet si si remplace dans le script

résultat=$(echo "$rapport"  | sed ....)

par

résultat=$(cat Boot-Info_20200410_1704.txt  | sed ....)

le script fonctionne bien

Dernière modification par ar barzh paour (Le 20/04/2020, à 08:35)


PC          : B760M DS3H DDR4,  12th Gen Intel(R) Core(TM) i3-12100, RAM DDR4 8GiB -2400 Ubuntu 22.04, 22.04, 23.04
Portable1 : Intel(R) Core(TM)2 Duo CPU     T6570  @ 2.10GHz RAM 4GiB DDR2 667 MHz Ubuntu 23.04 ( en voyage )
Portable2 : T5750  @ 2.00GHz RAM 1GiB DDR2 667 Mhz Ubuntu 20.04 ( batterie HS )
stourm a ran war bep tachenn (Angela Duval) ( Je combats sur tous les fronts )

Hors ligne

#10 Le 20/04/2020, à 08:32

LukePerp

Re : [Script] Synthèse rapport boot

ar barzh paour a écrit :

il semblerait qu'il y a un souci

Mon script est récent et donc probablement à corriger. Peux tu me communiquer le rapport boot que tu as essayé ? Pour utiliser mon script, faut coller tout le rapport dans la zone de texte, mais uniquement le rapport et non l’entête Ubuntu Paste bin
J'ai fait une vidéo pour montrer :
https://www.dropbox.com/s/8bck0mrggm1q3 … .30.50.mkv


Desktop & Laptop - Ubuntu Mate dernière LTS - Intel i5 - 16 Go - Dual boot Windows offline

Hors ligne

#11 Le 20/04/2020, à 08:39

Babdu89

Re : [Script] Synthèse rapport boot

Bonjour.

@ LukePerp.
Qu'en est-il des installations faites avec lvm ( partition boot + partition système cryptée) ? . On voit de plus en plus rarement ce genre d'installation, mais çà existe encore.
Il en est de même pour des installations avec partitions multiples ( /,  /home séparé, /tmp , /var ,&&&).
En UEFI le contenu de efibootmgr -v .

C'est vrai que lire un rapport est fastidieux , surtout avec des multi boot multi disques.

Un de mes boot info.

 


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

 => 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 (,msdos2)/boot/grub. It also embeds following components:
    
    modules
    ---------------------------------------------------------------------------
    fshelp ext2 part_msdos biosdisk
    ---------------------------------------------------------------------------
 => Grub2 (v2.00) is installed in the MBR of /dev/sdb and looks at sector 
    34402304 of the same hard drive for core.img. core.img is at this location 
    and looks for (,gpt4)/boot/grub. It also embeds following components:
    
    modules
    ---------------------------------------------------------------------------
    fshelp ext2 part_gpt biosdisk
    ---------------------------------------------------------------------------

sda1: __________________________________________________________________________

    File system:       ntfs
    Boot sector type:  Windows 7/2008: NTFS
    Boot sector info:  No errors found in the Boot Parameter Block.
    Operating System:  Windows 7
    Boot files:        /bootmgr /Boot/BCD /Windows/System32/winload.exe

sda2: __________________________________________________________________________

    File system:       ext4
    Boot sector type:  -
    Boot sector info: 
    Operating System:  Ubuntu 14.04.6 LTS
    Boot files:        /boot/grub/grub.cfg /etc/fstab 
                       /boot/extlinux/extlinux.conf 
                       /boot/grub/i386-pc/core.img

sda3: __________________________________________________________________________

    File system:       ext4
    Boot sector type:  -
    Boot sector info: 
    Operating System:  Ubuntu 18.04.2 LTS
    Boot files:        /boot/grub/grub.cfg /etc/fstab 
                       /boot/grub/i386-pc/core.img

sdb1: __________________________________________________________________________

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

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 14.04.1 LTS
    Boot files:        /boot/grub/grub.cfg /etc/fstab

sdb4: __________________________________________________________________________

    File system:       ext4
    Boot sector type:  -
    Boot sector info: 
    Operating System:  Ubuntu 18.04.2 LTS
    Boot files:        /boot/grub/grub.cfg /etc/fstab 
                       /boot/grub/i386-pc/core.img

sdb5: __________________________________________________________________________

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

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

Drive: sda _____________________________________________________________________

Disk /dev/sda: 120.0 GB, 120034123776 bytes
255 heads, 63 sectors/track, 14593 cylinders, total 234441648 sectors
Units = sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes

Partition  Boot  Start Sector    End Sector  # of Sectors  Id System

/dev/sda1    *          2,048    56,383,487    56,381,440   7 NTFS / exFAT / HPFS
/dev/sda2          56,383,488   167,847,935   111,464,448  83 Linux
/dev/sda3         167,847,936   234,441,647    66,593,712  83 Linux


Drive: sdb _____________________________________________________________________

Disk /dev/sdb: 63.2 GB, 63216549888 bytes
255 heads, 63 sectors/track, 7685 cylinders, total 123469824 sectors
Units = sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes

Partition  Boot  Start Sector    End Sector  # of Sectors  Id System

/dev/sdb1                   1   123,469,823   123,469,823  ee GPT


GUID Partition Table detected.

Partition  Attrs   Start Sector    End Sector  # of Sectors System
/dev/sdb1            33,583,104    34,402,303       819,200 EFI System partition
/dev/sdb2            34,402,304    35,426,303     1,024,000 BIOS Boot partition
/dev/sdb3            35,426,304    79,447,788    44,021,485 Data partition (Linux)
/dev/sdb4            79,448,064   123,467,595    44,019,532 Data partition (Linux)
/dev/sdb5                 2,048    33,583,103    33,581,056 Data partition (Windows/Linux)

Attributes: R=Required, N=No Block IO, B=Legacy BIOS Bootable, +=More bits set

"blkid" output: ________________________________________________________________

Device           UUID                                   TYPE       LABEL

/dev/sda1        FA2AC6152AC5CF37                       ntfs       windows-7-del
/dev/sda2        041cfc74-96e1-4c0f-ad6f-61ae768a1a3c   ext4       fusion-14._dell
/dev/sda3        5a6ea26b-1d35-48fd-902d-5b78a7c8b64e   ext4       ubuntu-18.04_del
/dev/sdb1        92C8-E043                              vfat       
/dev/sdb3        72a66c99-76c9-420b-b133-77d8811a67f5   ext4       xubuntu-efi
/dev/sdb4        cb4fb6ab-daa4-405d-a278-99d4c4ca5e63   ext4       SB@
/dev/sdb5        0669-366B                              vfat       test-multi

========================= "ls -l /dev/disk/by-id" output: ======================

total 0
lrwxrwxrwx 1 root root  9 Jun 12 18:02 ata-LDLC_07072217A2384 -> ../../sda
lrwxrwxrwx 1 root root 10 Jun 12 18:02 ata-LDLC_07072217A2384-part1 -> ../../sda1
lrwxrwxrwx 1 root root 10 Jun 12 17:57 ata-LDLC_07072217A2384-part2 -> ../../sda2
lrwxrwxrwx 1 root root 10 Jun 12 17:57 ata-LDLC_07072217A2384-part3 -> ../../sda3
lrwxrwxrwx 1 root root  9 Jun 12 17:57 ata-TSSTcorp_DVD+_-RW_TS-U633J_R86X6GSZB05544 -> ../../sr0
lrwxrwxrwx 1 root root  9 Jun 12 18:02 usb-_USB_DISK_3.0_07103C4D8A154C54-0:0 -> ../../sdb
lrwxrwxrwx 1 root root 10 Jun 12 17:57 usb-_USB_DISK_3.0_07103C4D8A154C54-0:0-part1 -> ../../sdb1
lrwxrwxrwx 1 root root 10 Jun 12 17:57 usb-_USB_DISK_3.0_07103C4D8A154C54-0:0-part2 -> ../../sdb2
lrwxrwxrwx 1 root root 10 Jun 12 17:57 usb-_USB_DISK_3.0_07103C4D8A154C54-0:0-part3 -> ../../sdb3
lrwxrwxrwx 1 root root 10 Jun 12 17:57 usb-_USB_DISK_3.0_07103C4D8A154C54-0:0-part4 -> ../../sdb4
lrwxrwxrwx 1 root root 10 Jun 12 17:57 usb-_USB_DISK_3.0_07103C4D8A154C54-0:0-part5 -> ../../sdb5

================================ Mount points: =================================

Device           Mount_Point              Type       Options

/dev/sdb1        /boot/efi                vfat       (rw)
/dev/sdb3        /                        ext4       (rw,errors=remount-ro)


=========================== sda2/boot/grub/grub.cfg: ===========================

--------------------------------------------------------------------------------
#
# DO NOT EDIT THIS FILE
#
# It is automatically generated by grub-mkconfig using templates
# from /etc/grub.d and settings from /etc/default/grub
#

### BEGIN /etc/grub.d/00_header ###
if [ -s $prefix/grubenv ]; then
  set have_grubenv=true
  load_env
fi
if [ "${next_entry}" ] ; then
   set default="${next_entry}"
   set next_entry=
   save_env next_entry
   set boot_once=true
else
   set default="${saved_entry}"
fi

if [ x"${feature_menuentry_id}" = xy ]; then
  menuentry_id_option="--id"
else
  menuentry_id_option=""
fi

export menuentry_id_option

if [ "${prev_saved_entry}" ]; then
  set saved_entry="${prev_saved_entry}"
  save_env saved_entry
  set prev_saved_entry=
  save_env prev_saved_entry
  set boot_once=true
fi

function savedefault {
  if [ -z "${boot_once}" ]; then
    saved_entry="${chosen}"
    save_env saved_entry
  fi
}
function recordfail {
  set recordfail=1
  if [ -n "${have_grubenv}" ]; then if [ -z "${boot_once}" ]; then save_env recordfail; fi; fi
}
function load_video {
  if [ x$feature_all_video_module = xy ]; then
    insmod all_video
  else
    insmod efi_gop
    insmod efi_uga
    insmod ieee1275_fb
    insmod vbe
    insmod vga
    insmod video_bochs
    insmod video_cirrus
  fi
}

if [ x$feature_default_font_path = xy ] ; then
   font=unicode
else
insmod part_msdos
insmod ext2
set root='hd0,msdos2'
if [ x$feature_platform_search_hint = xy ]; then
  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos2 --hint-efi=hd0,msdos2 --hint-baremetal=ahci0,msdos2  041cfc74-96e1-4c0f-ad6f-61ae768a1a3c
else
  search --no-floppy --fs-uuid --set=root 041cfc74-96e1-4c0f-ad6f-61ae768a1a3c
fi
    font="/usr/share/grub/unicode.pf2"
fi

if loadfont $font ; then
  set gfxmode=auto
  load_video
  insmod gfxterm
  set locale_dir=$prefix/locale
  set lang=fr_FR
  insmod gettext
fi
terminal_output gfxterm
if [ "${recordfail}" = 1 ] ; then
  set timeout=30
else
  if [ x$feature_timeout_style = xy ] ; then
    set timeout_style=menu
    set timeout=10
  # Fallback normal timeout code in case the timeout_style feature is
  # unavailable.
  else
    set timeout=10
  fi
fi
### END /etc/grub.d/00_header ###

### BEGIN /etc/grub.d/05_debian_theme ###
set menu_color_normal=cyan/blue
set menu_color_highlight=white/blue
### END /etc/grub.d/05_debian_theme ###

### BEGIN /etc/grub.d/10_linux ###
function gfxmode {
	set gfxpayload="${1}"
	if [ "${1}" = "keep" ]; then
		set vt_handoff=vt.handoff=7
	else
		set vt_handoff=
	fi
}
if [ "${recordfail}" != 1 ]; then
  if [ -e ${prefix}/gfxblacklist.txt ]; then
    if hwmatch ${prefix}/gfxblacklist.txt 3; then
      if [ ${match} = 0 ]; then
        set linux_gfx_mode=keep
      else
        set linux_gfx_mode=text
      fi
    else
      set linux_gfx_mode=text
    fi
  else
    set linux_gfx_mode=keep
  fi
else
  set linux_gfx_mode=text
fi
export linux_gfx_mode
menuentry 'HYBRYDE FUSION 14.04_Dell-Latitude-E4310 GNU/Linux' --class hybryde --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-simple-041cfc74-96e1-4c0f-ad6f-61ae768a1a3c' {
	recordfail
	savedefault
	load_video
	gfxmode $linux_gfx_mode
	insmod gzio
	insmod part_msdos
	insmod ext2
	set root='hd0,msdos2'
	if [ x$feature_platform_search_hint = xy ]; then
	  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos2 --hint-efi=hd0,msdos2 --hint-baremetal=ahci0,msdos2  041cfc74-96e1-4c0f-ad6f-61ae768a1a3c
	else
	  search --no-floppy --fs-uuid --set=root 041cfc74-96e1-4c0f-ad6f-61ae768a1a3c
	fi
	linux	/boot/vmlinuz-3.13.0-170-generic root=UUID=041cfc74-96e1-4c0f-ad6f-61ae768a1a3c ro  quiet splash $vt_handoff
	initrd	/boot/initrd.img-3.13.0-170-generic
}
submenu 'Options avancées pour HYBRYDE FUSION 14.04_Dell-Latitude-E4310 GNU/Linux' $menuentry_id_option 'gnulinux-advanced-041cfc74-96e1-4c0f-ad6f-61ae768a1a3c' {
	menuentry 'HYBRYDE FUSION 14.04_Dell-Latitude-E4310 GNU/Linux, avec Linux 3.13.0-170-generic' --class hybryde --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-3.13.0-170-generic-advanced-041cfc74-96e1-4c0f-ad6f-61ae768a1a3c' {
		recordfail
	savedefault
		load_video
		gfxmode $linux_gfx_mode
		insmod gzio
		insmod part_msdos
		insmod ext2
		set root='hd0,msdos2'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos2 --hint-efi=hd0,msdos2 --hint-baremetal=ahci0,msdos2  041cfc74-96e1-4c0f-ad6f-61ae768a1a3c
		else
		  search --no-floppy --fs-uuid --set=root 041cfc74-96e1-4c0f-ad6f-61ae768a1a3c
		fi
		echo	'Chargement de Linux 3.13.0-170-generic…'
		linux	/boot/vmlinuz-3.13.0-170-generic root=UUID=041cfc74-96e1-4c0f-ad6f-61ae768a1a3c ro  quiet splash $vt_handoff
		echo	'Chargement du disque mémoire initial…'
		initrd	/boot/initrd.img-3.13.0-170-generic
	}
	menuentry 'HYBRYDE FUSION 14.04_Dell-Latitude-E4310 GNU/Linux, with Linux 3.13.0-170-generic (recovery mode)' --class hybryde --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-3.13.0-170-generic-recovery-041cfc74-96e1-4c0f-ad6f-61ae768a1a3c' {
		recordfail
		load_video
		insmod gzio
		insmod part_msdos
		insmod ext2
		set root='hd0,msdos2'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos2 --hint-efi=hd0,msdos2 --hint-baremetal=ahci0,msdos2  041cfc74-96e1-4c0f-ad6f-61ae768a1a3c
		else
		  search --no-floppy --fs-uuid --set=root 041cfc74-96e1-4c0f-ad6f-61ae768a1a3c
		fi
		echo	'Chargement de Linux 3.13.0-170-generic…'
		linux	/boot/vmlinuz-3.13.0-170-generic root=UUID=041cfc74-96e1-4c0f-ad6f-61ae768a1a3c ro recovery nomodeset 
		echo	'Chargement du disque mémoire initial…'
		initrd	/boot/initrd.img-3.13.0-170-generic
	}
	menuentry 'HYBRYDE FUSION 14.04_Dell-Latitude-E4310 GNU/Linux, avec Linux 3.13.0-169-generic' --class hybryde --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-3.13.0-169-generic-advanced-041cfc74-96e1-4c0f-ad6f-61ae768a1a3c' {
		recordfail
	savedefault
		load_video
		gfxmode $linux_gfx_mode
		insmod gzio
		insmod part_msdos
		insmod ext2
		set root='hd0,msdos2'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos2 --hint-efi=hd0,msdos2 --hint-baremetal=ahci0,msdos2  041cfc74-96e1-4c0f-ad6f-61ae768a1a3c
		else
		  search --no-floppy --fs-uuid --set=root 041cfc74-96e1-4c0f-ad6f-61ae768a1a3c
		fi
		echo	'Chargement de Linux 3.13.0-169-generic…'
		linux	/boot/vmlinuz-3.13.0-169-generic root=UUID=041cfc74-96e1-4c0f-ad6f-61ae768a1a3c ro  quiet splash $vt_handoff
		echo	'Chargement du disque mémoire initial…'
		initrd	/boot/initrd.img-3.13.0-169-generic
	}
	menuentry 'HYBRYDE FUSION 14.04_Dell-Latitude-E4310 GNU/Linux, with Linux 3.13.0-169-generic (recovery mode)' --class hybryde --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-3.13.0-169-generic-recovery-041cfc74-96e1-4c0f-ad6f-61ae768a1a3c' {
		recordfail
		load_video
		insmod gzio
		insmod part_msdos
		insmod ext2
		set root='hd0,msdos2'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos2 --hint-efi=hd0,msdos2 --hint-baremetal=ahci0,msdos2  041cfc74-96e1-4c0f-ad6f-61ae768a1a3c
		else
		  search --no-floppy --fs-uuid --set=root 041cfc74-96e1-4c0f-ad6f-61ae768a1a3c
		fi
		echo	'Chargement de Linux 3.13.0-169-generic…'
		linux	/boot/vmlinuz-3.13.0-169-generic root=UUID=041cfc74-96e1-4c0f-ad6f-61ae768a1a3c ro recovery nomodeset 
		echo	'Chargement du disque mémoire initial…'
		initrd	/boot/initrd.img-3.13.0-169-generic
	}
}

### END /etc/grub.d/10_linux ###

### BEGIN /etc/grub.d/20_linux_xen ###

### END /etc/grub.d/20_linux_xen ###

### BEGIN /etc/grub.d/20_memtest86+ ###
menuentry 'Memory test (memtest86+)' {
	insmod part_msdos
	insmod ext2
	set root='hd0,msdos2'
	if [ x$feature_platform_search_hint = xy ]; then
	  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos2 --hint-efi=hd0,msdos2 --hint-baremetal=ahci0,msdos2  041cfc74-96e1-4c0f-ad6f-61ae768a1a3c
	else
	  search --no-floppy --fs-uuid --set=root 041cfc74-96e1-4c0f-ad6f-61ae768a1a3c
	fi
	knetbsd	/boot/memtest86+.elf
}
menuentry 'Memory test (memtest86+, serial console 115200)' {
	insmod part_msdos
	insmod ext2
	set root='hd0,msdos2'
	if [ x$feature_platform_search_hint = xy ]; then
	  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos2 --hint-efi=hd0,msdos2 --hint-baremetal=ahci0,msdos2  041cfc74-96e1-4c0f-ad6f-61ae768a1a3c
	else
	  search --no-floppy --fs-uuid --set=root 041cfc74-96e1-4c0f-ad6f-61ae768a1a3c
	fi
	linux16	/boot/memtest86+.bin console=ttyS0,115200n8
}
### END /etc/grub.d/20_memtest86+ ###

### BEGIN /etc/grub.d/30_os-prober ###
menuentry 'Windows 7 (loader) (sur /dev/sda1)' --class windows --class os $menuentry_id_option 'osprober-chain-FA2AC6152AC5CF37' {
	savedefault
	insmod part_msdos
	insmod ntfs
	set root='hd0,msdos1'
	if [ x$feature_platform_search_hint = xy ]; then
	  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos1 --hint-efi=hd0,msdos1 --hint-baremetal=ahci0,msdos1  FA2AC6152AC5CF37
	else
	  search --no-floppy --fs-uuid --set=root FA2AC6152AC5CF37
	fi
	parttool ${root} hidden-
	chainloader +1
}
menuentry 'Ubuntu 18.04.2 LTS (18.04) (sur /dev/sda3)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-simple-5a6ea26b-1d35-48fd-902d-5b78a7c8b64e' {
	savedefault
	insmod part_msdos
	insmod ext2
	set root='hd0,msdos3'
	if [ x$feature_platform_search_hint = xy ]; then
	  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos3 --hint-efi=hd0,msdos3 --hint-baremetal=ahci0,msdos3  5a6ea26b-1d35-48fd-902d-5b78a7c8b64e
	else
	  search --no-floppy --fs-uuid --set=root 5a6ea26b-1d35-48fd-902d-5b78a7c8b64e
	fi
	linux /boot/vmlinuz-4.15.0-51-generic root=UUID=5a6ea26b-1d35-48fd-902d-5b78a7c8b64e ro quiet splash $vt_handoff
	initrd /boot/initrd.img-4.15.0-51-generic
}
submenu 'Options avancées pour Ubuntu 18.04.2 LTS (18.04) (sur /dev/sda3)' $menuentry_id_option 'osprober-gnulinux-advanced-5a6ea26b-1d35-48fd-902d-5b78a7c8b64e' {
	menuentry 'Ubuntu (sur /dev/sda3)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-4.15.0-51-generic--5a6ea26b-1d35-48fd-902d-5b78a7c8b64e' {
		savedefault
		insmod part_msdos
		insmod ext2
		set root='hd0,msdos3'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos3 --hint-efi=hd0,msdos3 --hint-baremetal=ahci0,msdos3  5a6ea26b-1d35-48fd-902d-5b78a7c8b64e
		else
		  search --no-floppy --fs-uuid --set=root 5a6ea26b-1d35-48fd-902d-5b78a7c8b64e
		fi
		linux /boot/vmlinuz-4.15.0-51-generic root=UUID=5a6ea26b-1d35-48fd-902d-5b78a7c8b64e ro quiet splash $vt_handoff
		initrd /boot/initrd.img-4.15.0-51-generic
	}
	menuentry 'Ubuntu, avec Linux 4.15.0-51-generic (sur /dev/sda3)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-4.15.0-51-generic--5a6ea26b-1d35-48fd-902d-5b78a7c8b64e' {
		savedefault
		insmod part_msdos
		insmod ext2
		set root='hd0,msdos3'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos3 --hint-efi=hd0,msdos3 --hint-baremetal=ahci0,msdos3  5a6ea26b-1d35-48fd-902d-5b78a7c8b64e
		else
		  search --no-floppy --fs-uuid --set=root 5a6ea26b-1d35-48fd-902d-5b78a7c8b64e
		fi
		linux /boot/vmlinuz-4.15.0-51-generic root=UUID=5a6ea26b-1d35-48fd-902d-5b78a7c8b64e ro quiet splash $vt_handoff
		initrd /boot/initrd.img-4.15.0-51-generic
	}
	menuentry 'Ubuntu, with Linux 4.15.0-51-generic (recovery mode) (sur /dev/sda3)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-4.15.0-51-generic-root=UUID=5a6ea26b-1d35-48fd-902d-5b78a7c8b64e ro recovery nomodeset-5a6ea26b-1d35-48fd-902d-5b78a7c8b64e' {
		savedefault
		insmod part_msdos
		insmod ext2
		set root='hd0,msdos3'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos3 --hint-efi=hd0,msdos3 --hint-baremetal=ahci0,msdos3  5a6ea26b-1d35-48fd-902d-5b78a7c8b64e
		else
		  search --no-floppy --fs-uuid --set=root 5a6ea26b-1d35-48fd-902d-5b78a7c8b64e
		fi
		linux /boot/vmlinuz-4.15.0-51-generic root=UUID=5a6ea26b-1d35-48fd-902d-5b78a7c8b64e ro recovery nomodeset
		initrd /boot/initrd.img-4.15.0-51-generic
	}
	menuentry 'Ubuntu, avec Linux 4.15.0-50-generic (sur /dev/sda3)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-4.15.0-50-generic--5a6ea26b-1d35-48fd-902d-5b78a7c8b64e' {
		savedefault
		insmod part_msdos
		insmod ext2
		set root='hd0,msdos3'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos3 --hint-efi=hd0,msdos3 --hint-baremetal=ahci0,msdos3  5a6ea26b-1d35-48fd-902d-5b78a7c8b64e
		else
		  search --no-floppy --fs-uuid --set=root 5a6ea26b-1d35-48fd-902d-5b78a7c8b64e
		fi
		linux /boot/vmlinuz-4.15.0-50-generic root=UUID=5a6ea26b-1d35-48fd-902d-5b78a7c8b64e ro quiet splash $vt_handoff
		initrd /boot/initrd.img-4.15.0-50-generic
	}
	menuentry 'Ubuntu, with Linux 4.15.0-50-generic (recovery mode) (sur /dev/sda3)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-4.15.0-50-generic-root=UUID=5a6ea26b-1d35-48fd-902d-5b78a7c8b64e ro recovery nomodeset-5a6ea26b-1d35-48fd-902d-5b78a7c8b64e' {
		savedefault
		insmod part_msdos
		insmod ext2
		set root='hd0,msdos3'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos3 --hint-efi=hd0,msdos3 --hint-baremetal=ahci0,msdos3  5a6ea26b-1d35-48fd-902d-5b78a7c8b64e
		else
		  search --no-floppy --fs-uuid --set=root 5a6ea26b-1d35-48fd-902d-5b78a7c8b64e
		fi
		linux /boot/vmlinuz-4.15.0-50-generic root=UUID=5a6ea26b-1d35-48fd-902d-5b78a7c8b64e ro recovery nomodeset
		initrd /boot/initrd.img-4.15.0-50-generic
	}
	menuentry 'Ubuntu, avec Linux 4.15.0-48-generic (sur /dev/sda3)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-4.15.0-48-generic--5a6ea26b-1d35-48fd-902d-5b78a7c8b64e' {
		savedefault
		insmod part_msdos
		insmod ext2
		set root='hd0,msdos3'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos3 --hint-efi=hd0,msdos3 --hint-baremetal=ahci0,msdos3  5a6ea26b-1d35-48fd-902d-5b78a7c8b64e
		else
		  search --no-floppy --fs-uuid --set=root 5a6ea26b-1d35-48fd-902d-5b78a7c8b64e
		fi
		linux /boot/vmlinuz-4.15.0-48-generic root=UUID=5a6ea26b-1d35-48fd-902d-5b78a7c8b64e ro quiet splash $vt_handoff
		initrd /boot/initrd.img-4.15.0-48-generic
	}
	menuentry 'Ubuntu, with Linux 4.15.0-48-generic (recovery mode) (sur /dev/sda3)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-4.15.0-48-generic-root=UUID=5a6ea26b-1d35-48fd-902d-5b78a7c8b64e ro recovery nomodeset-5a6ea26b-1d35-48fd-902d-5b78a7c8b64e' {
		savedefault
		insmod part_msdos
		insmod ext2
		set root='hd0,msdos3'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos3 --hint-efi=hd0,msdos3 --hint-baremetal=ahci0,msdos3  5a6ea26b-1d35-48fd-902d-5b78a7c8b64e
		else
		  search --no-floppy --fs-uuid --set=root 5a6ea26b-1d35-48fd-902d-5b78a7c8b64e
		fi
		linux /boot/vmlinuz-4.15.0-48-generic root=UUID=5a6ea26b-1d35-48fd-902d-5b78a7c8b64e ro recovery nomodeset
		initrd /boot/initrd.img-4.15.0-48-generic
	}
}

set timeout_style=menu
if [ "${timeout}" = 0 ]; then
  set timeout=10
fi
### END /etc/grub.d/30_os-prober ###

### BEGIN /etc/grub.d/30_uefi-firmware ###
### END /etc/grub.d/30_uefi-firmware ###

### BEGIN /etc/grub.d/40_custom ###
# This file provides an easy way to add custom menu entries.  Simply type the
# menu entries you want to add after this comment.  Be careful not to change
# the 'exec tail' line above.
menuentry "Iso Live ubuntu-budgie-17.04-desktop-i386.iso dans cle USB3-Emtec" {
insmod part_gpt
insmod iso9660
search --no-floppy --fs-uuid --set=root 0669-366B
set isofile="/ubuntu-budgie-17.04-desktop-i386.iso"
loopback loop $isofile
#echo	'Chargement du noyau Linux ...'
linux (loop)/casper/vmlinuz boot=casper iso-scan/filename=$isofile toram locale=fr_FR bootkbd=fr console-setup/layoutcode=fr noprompt noeject quiet splash --
#echo	'Chargement du disque mémoire initial ...'
initrd (loop)/casper/initrd.lz
}
menuentry "Iso Live ubuntu-17.10-desktop-amd64.iso dans cle USB3-Emtec" {
insmod part_gpt
insmod iso9660
search --no-floppy --fs-uuid --set=root 0669-366B
set isofile="/ubuntu-17.10-desktop-amd64.iso"
loopback loop $isofile
#echo	'Chargement du noyau Linux ...'
linux (loop)/casper/vmlinuz.efi boot=casper iso-scan/filename=$isofile toram locale=fr_FR bootkbd=fr console-setup/layoutcode=fr noprompt noeject quiet splash --
#echo	'Chargement du disque mémoire initial ...'
initrd (loop)/casper/initrd.lz
}
menuentry "Iso Live xubuntu-16.04.3-desktop-amd64.iso dans partition Windows-7-dell" {
insmod part_msdos
insmod iso9660
search --no-floppy --fs-uuid --set=root FA2AC6152AC5CF37
set isofile="/xubuntu-16.04.3-desktop-amd64.iso"
loopback loop $isofile
linux (loop)/casper/vmlinuz.efi boot=casper iso-scan/filename=$isofile toram locale=fr_FR bootkbd=fr console-setup/layoutcode=fr noprompt noeject quiet splash --
initrd (loop)/casper/initrd.lz
}
menuentry "Iso Live Ubuntu-16.04.4-desktop-i386.iso dans partition Windows-7-dell" {
insmod part_msdos
insmod iso9660
search --no-floppy --fs-uuid --set=root FA2AC6152AC5CF37
set isofile="/ubuntu-16.04.4-desktop-i386.iso"
loopback loop $isofile
linux (loop)/casper/vmlinuz boot=casper iso-scan/filename=$isofile toram locale=fr_FR bootkbd=fr console-setup/layoutcode=fr noprompt noeject quiet splash --
initrd (loop)/casper/initrd.lz
}
menuentry "Iso Live ubuntu-17.10-desktop-amd64.iso dans partition Windows-7-dell" {
insmod part_msdos
insmod iso9660
search --no-floppy --fs-uuid --set=root FA2AC6152AC5CF37
set isofile="/ubuntu-17.10-desktop-amd64.iso"
loopback loop $isofile
linux (loop)/casper/vmlinuz.efi boot=casper iso-scan/filename=$isofile toram locale=fr_FR bootkbd=fr console-setup/layoutcode=fr noprompt noeject quiet splash --
initrd (loop)/casper/initrd.lz
}
menuentry "Iso Live ubuntu-18.04.2-desktop-amd64.iso dans partition Windows-7-dell" {
insmod part_msdos
insmod iso9660
search --no-floppy --fs-uuid --set=root FA2AC6152AC5CF37
set isofile="/ubuntu-18.04.2-desktop-amd64.iso"
loopback loop $isofile
linux (loop)/casper/vmlinuz.efi boot=casper iso-scan/filename=$isofile toram locale=fr_FR bootkbd=fr console-setup/layoutcode=fr noprompt noeject quiet splash --
initrd (loop)/casper/initrd.lz
}
### END /etc/grub.d/40_custom ###

### BEGIN /etc/grub.d/41_custom ###
if [ -f  ${config_directory}/custom.cfg ]; then
  source ${config_directory}/custom.cfg
elif [ -z "${config_directory}" -a -f  $prefix/custom.cfg ]; then
  source $prefix/custom.cfg;
fi
### END /etc/grub.d/41_custom ###
--------------------------------------------------------------------------------

=============================== sda2/etc/fstab: ================================

--------------------------------------------------------------------------------
# /etc/fstab: static file system information.
#
# Use 'blkid' to print the universally unique identifier for a
# device; this may be used with UUID= as a more robust way to name devices
# that works even if disks are added and removed. See fstab(5).
#
# <file system> <mount point>   <type>  <options>       <dump>  <pass>
# /
UUID=041cfc74-96e1-4c0f-ad6f-61ae768a1a3c   /   ext4   noatime,errors=remount-ro   0   1
--------------------------------------------------------------------------------

====================== sda2/boot/extlinux/extlinux.conf: =======================

--------------------------------------------------------------------------------
## /boot/extlinux/extlinux.conf
##
## IMPORTANT WARNING
##
## The configuration of this file is generated automatically.
## Do not edit this file manually, use: extlinux-update


default l0
prompt 1
timeout 50

include themes/debian/theme.cfg
--------------------------------------------------------------------------------

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

           GiB - GB             File                                 Fragment(s)

  51.518695831 = 55.317778432   boot/grub/grub.cfg                             1
  51.453849792 = 55.248150528   boot/grub/i386-pc/core.img                     1
  27.871719360 = 29.927030784   boot/vmlinuz-3.13.0-169-generic                1
  27.524066925 = 29.553741824   boot/vmlinuz-3.13.0-170-generic                1
  27.524066925 = 29.553741824   vmlinuz                                        1
  27.871719360 = 29.927030784   vmlinuz.old                                    1
  44.523830414 = 47.807098880   boot/initrd.img-3.13.0-169-generic             7
  40.680576324 = 43.680436224   boot/initrd.img-3.13.0-170-generic             4
  40.680576324 = 43.680436224   initrd.img                                     4
  44.523830414 = 47.807098880   initrd.img.old                                 7

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

           GiB - GB             File                                 Fragment(s)

  38.323997498 = 41.150078976   boot/extlinux/extlinux.conf                    1
  69.550109863 = 74.678861824   boot/extlinux/chain.c32                        1

============== sda2: Version of COM32(R) files used by Syslinux: ===============

 boot/extlinux/chain.c32            :  COM32R module (v4.xx)

=========================== sda3/boot/grub/grub.cfg: ===========================

--------------------------------------------------------------------------------
#
# DO NOT EDIT THIS FILE
#
# It is automatically generated by grub-mkconfig using templates
# from /etc/grub.d and settings from /etc/default/grub
#

### BEGIN /etc/grub.d/00_header ###
if [ -s $prefix/grubenv ]; then
  set have_grubenv=true
  load_env
fi
if [ "${next_entry}" ] ; then
   set default="${next_entry}"
   set next_entry=
   save_env next_entry
   set boot_once=true
else
   set default="0"
fi

if [ x"${feature_menuentry_id}" = xy ]; then
  menuentry_id_option="--id"
else
  menuentry_id_option=""
fi

export menuentry_id_option

if [ "${prev_saved_entry}" ]; then
  set saved_entry="${prev_saved_entry}"
  save_env saved_entry
  set prev_saved_entry=
  save_env prev_saved_entry
  set boot_once=true
fi

function savedefault {
  if [ -z "${boot_once}" ]; then
    saved_entry="${chosen}"
    save_env saved_entry
  fi
}
function recordfail {
  set recordfail=1
  if [ -n "${have_grubenv}" ]; then if [ -z "${boot_once}" ]; then save_env recordfail; fi; fi
}
function load_video {
  if [ x$feature_all_video_module = xy ]; then
    insmod all_video
  else
    insmod efi_gop
    insmod efi_uga
    insmod ieee1275_fb
    insmod vbe
    insmod vga
    insmod video_bochs
    insmod video_cirrus
  fi
}

if [ x$feature_default_font_path = xy ] ; then
   font=unicode
else
insmod part_msdos
insmod ext2
set root='hd0,msdos3'
if [ x$feature_platform_search_hint = xy ]; then
  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos3 --hint-efi=hd0,msdos3 --hint-baremetal=ahci0,msdos3  5a6ea26b-1d35-48fd-902d-5b78a7c8b64e
else
  search --no-floppy --fs-uuid --set=root 5a6ea26b-1d35-48fd-902d-5b78a7c8b64e
fi
    font="/usr/share/grub/unicode.pf2"
fi

if loadfont $font ; then
  set gfxmode=auto
  load_video
  insmod gfxterm
  set locale_dir=$prefix/locale
  set lang=fr_FR
  insmod gettext
fi
terminal_output gfxterm
if [ "${recordfail}" = 1 ] ; then
  set timeout=30
else
  if [ x$feature_timeout_style = xy ] ; then
    set timeout_style=hidden
    set timeout=10
  # Fallback hidden-timeout code in case the timeout_style feature is
  # unavailable.
  elif sleep --interruptible 10 ; then
    set timeout=0
  fi
fi
### END /etc/grub.d/00_header ###

### BEGIN /etc/grub.d/05_debian_theme ###
set menu_color_normal=white/black
set menu_color_highlight=black/light-gray
if background_color 44,0,30,0; then
  clear
fi
### END /etc/grub.d/05_debian_theme ###

### BEGIN /etc/grub.d/10_linux ###
function gfxmode {
	set gfxpayload="${1}"
	if [ "${1}" = "keep" ]; then
		set vt_handoff=vt.handoff=1
	else
		set vt_handoff=
	fi
}
if [ "${recordfail}" != 1 ]; then
  if [ -e ${prefix}/gfxblacklist.txt ]; then
    if hwmatch ${prefix}/gfxblacklist.txt 3; then
      if [ ${match} = 0 ]; then
        set linux_gfx_mode=keep
      else
        set linux_gfx_mode=text
      fi
    else
      set linux_gfx_mode=text
    fi
  else
    set linux_gfx_mode=keep
  fi
else
  set linux_gfx_mode=text
fi
export linux_gfx_mode
menuentry 'Ubuntu' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-simple-5a6ea26b-1d35-48fd-902d-5b78a7c8b64e' {
	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,msdos3'
	if [ x$feature_platform_search_hint = xy ]; then
	  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos3 --hint-efi=hd0,msdos3 --hint-baremetal=ahci0,msdos3  5a6ea26b-1d35-48fd-902d-5b78a7c8b64e
	else
	  search --no-floppy --fs-uuid --set=root 5a6ea26b-1d35-48fd-902d-5b78a7c8b64e
	fi
        linux	/boot/vmlinuz-4.15.0-51-generic root=UUID=5a6ea26b-1d35-48fd-902d-5b78a7c8b64e ro  quiet splash $vt_handoff
	initrd	/boot/initrd.img-4.15.0-51-generic
}
submenu 'Options avancées pour Ubuntu' $menuentry_id_option 'gnulinux-advanced-5a6ea26b-1d35-48fd-902d-5b78a7c8b64e' {
	menuentry 'Ubuntu, avec Linux 4.15.0-51-generic' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-4.15.0-51-generic-advanced-5a6ea26b-1d35-48fd-902d-5b78a7c8b64e' {
		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,msdos3'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos3 --hint-efi=hd0,msdos3 --hint-baremetal=ahci0,msdos3  5a6ea26b-1d35-48fd-902d-5b78a7c8b64e
		else
		  search --no-floppy --fs-uuid --set=root 5a6ea26b-1d35-48fd-902d-5b78a7c8b64e
		fi
		echo	'Chargement de Linux 4.15.0-51-generic…'
	        linux	/boot/vmlinuz-4.15.0-51-generic root=UUID=5a6ea26b-1d35-48fd-902d-5b78a7c8b64e ro  quiet splash $vt_handoff
		echo	'Chargement du disque mémoire initial…'
		initrd	/boot/initrd.img-4.15.0-51-generic
	}
	menuentry 'Ubuntu, with Linux 4.15.0-51-generic (recovery mode)' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-4.15.0-51-generic-recovery-5a6ea26b-1d35-48fd-902d-5b78a7c8b64e' {
		recordfail
		load_video
		insmod gzio
		if [ x$grub_platform = xxen ]; then insmod xzio; insmod lzopio; fi
		insmod part_msdos
		insmod ext2
		set root='hd0,msdos3'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos3 --hint-efi=hd0,msdos3 --hint-baremetal=ahci0,msdos3  5a6ea26b-1d35-48fd-902d-5b78a7c8b64e
		else
		  search --no-floppy --fs-uuid --set=root 5a6ea26b-1d35-48fd-902d-5b78a7c8b64e
		fi
		echo	'Chargement de Linux 4.15.0-51-generic…'
	        linux	/boot/vmlinuz-4.15.0-51-generic root=UUID=5a6ea26b-1d35-48fd-902d-5b78a7c8b64e ro recovery nomodeset 
		echo	'Chargement du disque mémoire initial…'
		initrd	/boot/initrd.img-4.15.0-51-generic
	}
	menuentry 'Ubuntu, avec Linux 4.15.0-50-generic' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-4.15.0-50-generic-advanced-5a6ea26b-1d35-48fd-902d-5b78a7c8b64e' {
		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,msdos3'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos3 --hint-efi=hd0,msdos3 --hint-baremetal=ahci0,msdos3  5a6ea26b-1d35-48fd-902d-5b78a7c8b64e
		else
		  search --no-floppy --fs-uuid --set=root 5a6ea26b-1d35-48fd-902d-5b78a7c8b64e
		fi
		echo	'Chargement de Linux 4.15.0-50-generic…'
	        linux	/boot/vmlinuz-4.15.0-50-generic root=UUID=5a6ea26b-1d35-48fd-902d-5b78a7c8b64e ro  quiet splash $vt_handoff
		echo	'Chargement du disque mémoire initial…'
		initrd	/boot/initrd.img-4.15.0-50-generic
	}
	menuentry 'Ubuntu, with Linux 4.15.0-50-generic (recovery mode)' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-4.15.0-50-generic-recovery-5a6ea26b-1d35-48fd-902d-5b78a7c8b64e' {
		recordfail
		load_video
		insmod gzio
		if [ x$grub_platform = xxen ]; then insmod xzio; insmod lzopio; fi
		insmod part_msdos
		insmod ext2
		set root='hd0,msdos3'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos3 --hint-efi=hd0,msdos3 --hint-baremetal=ahci0,msdos3  5a6ea26b-1d35-48fd-902d-5b78a7c8b64e
		else
		  search --no-floppy --fs-uuid --set=root 5a6ea26b-1d35-48fd-902d-5b78a7c8b64e
		fi
		echo	'Chargement de Linux 4.15.0-50-generic…'
	        linux	/boot/vmlinuz-4.15.0-50-generic root=UUID=5a6ea26b-1d35-48fd-902d-5b78a7c8b64e ro recovery nomodeset 
		echo	'Chargement du disque mémoire initial…'
		initrd	/boot/initrd.img-4.15.0-50-generic
	}
}

### END /etc/grub.d/10_linux ###

### BEGIN /etc/grub.d/20_linux_xen ###

### END /etc/grub.d/20_linux_xen ###

### BEGIN /etc/grub.d/20_memtest86+ ###
menuentry 'Memory test (memtest86+)' {
	insmod part_msdos
	insmod ext2
	set root='hd0,msdos3'
	if [ x$feature_platform_search_hint = xy ]; then
	  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos3 --hint-efi=hd0,msdos3 --hint-baremetal=ahci0,msdos3  5a6ea26b-1d35-48fd-902d-5b78a7c8b64e
	else
	  search --no-floppy --fs-uuid --set=root 5a6ea26b-1d35-48fd-902d-5b78a7c8b64e
	fi
	knetbsd	/boot/memtest86+.elf
}
menuentry 'Memory test (memtest86+, serial console 115200)' {
	insmod part_msdos
	insmod ext2
	set root='hd0,msdos3'
	if [ x$feature_platform_search_hint = xy ]; then
	  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos3 --hint-efi=hd0,msdos3 --hint-baremetal=ahci0,msdos3  5a6ea26b-1d35-48fd-902d-5b78a7c8b64e
	else
	  search --no-floppy --fs-uuid --set=root 5a6ea26b-1d35-48fd-902d-5b78a7c8b64e
	fi
	linux16	/boot/memtest86+.bin console=ttyS0,115200n8
}
### END /etc/grub.d/20_memtest86+ ###

### BEGIN /etc/grub.d/30_uefi-firmware ###
### END /etc/grub.d/30_uefi-firmware ###

### BEGIN /etc/grub.d/40_custom ###
# This file provides an easy way to add custom menu entries.  Simply type the
# menu entries you want to add after this comment.  Be careful not to change
# the 'exec tail' line above.
### END /etc/grub.d/40_custom ###

### BEGIN /etc/grub.d/41_custom ###
if [ -f  ${config_directory}/custom.cfg ]; then
  source ${config_directory}/custom.cfg
elif [ -z "${config_directory}" -a -f  $prefix/custom.cfg ]; then
  source $prefix/custom.cfg;
fi
### END /etc/grub.d/41_custom ###
--------------------------------------------------------------------------------

=============================== sda3/etc/fstab: ================================

--------------------------------------------------------------------------------
# /etc/fstab: static file system information.
#
# Use 'blkid' to print the universally unique identifier for a
# device; this may be used with UUID= as a more robust way to name devices
# that works even if disks are added and removed. See fstab(5).
#
# <file system> <mount point>   <type>  <options>       <dump>  <pass>
# /
UUID=5a6ea26b-1d35-48fd-902d-5b78a7c8b64e   /   ext4   noatime,errors=remount-ro   0   1

--------------------------------------------------------------------------------

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

           GiB - GB             File                                 Fragment(s)

 109.719470978 = 117.810384896  boot/grub/grub.cfg                             2
  92.343132019 = 99.152683008   boot/grub/i386-pc/core.img                     1
  93.465728760 = 100.358062080  boot/vmlinuz-4.15.0-50-generic                 2
  95.450103760 = 102.488768512  boot/vmlinuz-4.15.0-51-generic                 2
  95.450103760 = 102.488768512  vmlinuz                                        2
  93.465728760 = 100.358062080  vmlinuz.old                                    2
 110.981441498 = 119.165415424  boot/initrd.img-4.15.0-50-generic              7
  95.558341980 = 102.604988416  boot/initrd.img-4.15.0-51-generic              5
  95.558341980 = 102.604988416  initrd.img                                     5
 110.981441498 = 119.165415424  initrd.img.old                                 7

========================== sdb1/EFI/ubuntu/grub.cfg: ===========================

--------------------------------------------------------------------------------
search.fs_uuid 72a66c99-76c9-420b-b133-77d8811a67f5 root hd1,gpt3 
set prefix=($root)'/boot/grub'
configfile $prefix/grub.cfg
--------------------------------------------------------------------------------

=========================== sdb3/boot/grub/grub.cfg: ===========================

--------------------------------------------------------------------------------
#
# DO NOT EDIT THIS FILE
#
# It is automatically generated by grub-mkconfig using templates
# from /etc/grub.d and settings from /etc/default/grub
#

### BEGIN /etc/grub.d/00_header ###
if [ -s $prefix/grubenv ]; then
  set have_grubenv=true
  load_env
fi
if [ "${next_entry}" ] ; then
   set default="${next_entry}"
   set next_entry=
   save_env next_entry
   set boot_once=true
else
   set default="0"
fi

if [ x"${feature_menuentry_id}" = xy ]; then
  menuentry_id_option="--id"
else
  menuentry_id_option=""
fi

export menuentry_id_option

if [ "${prev_saved_entry}" ]; then
  set saved_entry="${prev_saved_entry}"
  save_env saved_entry
  set prev_saved_entry=
  save_env prev_saved_entry
  set boot_once=true
fi

function savedefault {
  if [ -z "${boot_once}" ]; then
    saved_entry="${chosen}"
    save_env saved_entry
  fi
}
function recordfail {
  set recordfail=1
  if [ -n "${have_grubenv}" ]; then if [ -z "${boot_once}" ]; then save_env recordfail; fi; fi
}
function load_video {
  if [ x$feature_all_video_module = xy ]; then
    insmod all_video
  else
    insmod efi_gop
    insmod efi_uga
    insmod ieee1275_fb
    insmod vbe
    insmod vga
    insmod video_bochs
    insmod video_cirrus
  fi
}

if [ x$feature_default_font_path = xy ] ; then
   font=unicode
else
insmod part_gpt
insmod ext2
set root='hd1,gpt3'
if [ x$feature_platform_search_hint = xy ]; then
  search --no-floppy --fs-uuid --set=root --hint-bios=hd1,gpt3 --hint-efi=hd1,gpt3 --hint-baremetal=ahci1,gpt3  72a66c99-76c9-420b-b133-77d8811a67f5
else
  search --no-floppy --fs-uuid --set=root 72a66c99-76c9-420b-b133-77d8811a67f5
fi
    font="/usr/share/grub/unicode.pf2"
fi

if loadfont $font ; then
  set gfxmode=auto
  load_video
  insmod gfxterm
  set locale_dir=$prefix/locale
  set lang=fr_FR
  insmod gettext
fi
terminal_output gfxterm
if [ "${recordfail}" = 1 ] ; then
  set timeout=30
else
  if [ x$feature_timeout_style = xy ] ; then
    set timeout_style=menu
    set timeout=10
  # Fallback normal timeout code in case the timeout_style feature is
  # unavailable.
  else
    set timeout=10
  fi
fi
### END /etc/grub.d/00_header ###

### BEGIN /etc/grub.d/05_debian_theme ###
insmod part_gpt
insmod ext2
set root='hd1,gpt3'
if [ x$feature_platform_search_hint = xy ]; then
  search --no-floppy --fs-uuid --set=root --hint-bios=hd1,gpt3 --hint-efi=hd1,gpt3 --hint-baremetal=ahci1,gpt3  72a66c99-76c9-420b-b133-77d8811a67f5
else
  search --no-floppy --fs-uuid --set=root 72a66c99-76c9-420b-b133-77d8811a67f5
fi
insmod png
if background_image /usr/share/images/desktop-base/joy-grub.png; then
  true
else
  set menu_color_normal=cyan/blue
  set menu_color_highlight=white/blue
fi
### END /etc/grub.d/05_debian_theme ###

### BEGIN /etc/grub.d/07_custom ###
# This file provides an easy way to add custom menu entries.  Simply type the
# menu entries you want to add after this comment.  Be careful not to change
# the 'exec tail' line above.

menuentry 'XUBUNTU 14.04 EFI GNU/Linux-usb-EMTEC' --class xubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-simple-72a66c99-76c9-420b-b133-77d8811a67f5' {
	recordfail
	load_video
	gfxmode $linux_gfx_mode
	insmod gzio
	insmod part_gpt
	insmod ext2
	set root='hd1,gpt3'
	if [ x$feature_platform_search_hint = xy ]; then
	  search --no-floppy --fs-uuid --set=root --hint-bios=hd1,gpt3 --hint-efi=hd1,gpt3 --hint-baremetal=ahci1,gpt3  72a66c99-76c9-420b-b133-77d8811a67f5
	else
	  search --no-floppy --fs-uuid --set=root 72a66c99-76c9-420b-b133-77d8811a67f5
	fi
	linux	/boot/vmlinuz-3.13.0-117-generic.efi.signed root=UUID=72a66c99-76c9-420b-b133-77d8811a67f5 ro  quiet splash $vt_handoff
	initrd	/boot/initrd.img-3.13.0-117-generic
}
menuentry 'UBUNTU-18.04-usb-EMTEC' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-simple-9852ed06-1ff4-4f5f-8f1c-b5a7ac894691' {
	recordfail
	load_video
	gfxmode $linux_gfx_mode
	insmod gzio
	if [ x$grub_platform = xxen ]; then insmod xzio; insmod lzopio; fi
	insmod part_gpt
	insmod ext2
	set root='hd4,gpt4'
	if [ x$feature_platform_search_hint = xy ]; then
	  search --no-floppy --fs-uuid --set=root --hint-bios=hd4,gpt4 --hint-efi=hd4,gpt4 --hint-baremetal=ahci4,gpt4  9852ed06-1ff4-4f5f-8f1c-b5a7ac894691
	else
	  search --no-floppy --fs-uuid --set=root 9852ed06-1ff4-4f5f-8f1c-b5a7ac894691
	fi
        linux	/boot/vmlinuz-4.15.0-20-generic root=UUID=9852ed06-1ff4-4f5f-8f1c-b5a7ac894691 ro  quiet splash $vt_handoff
	initrd	/boot/initrd.img-4.15.0-20-generic
}

menuentry 'HYBRYDE FUSION 14.04_Dell-Latitude-E4310 GNU/Linux' --class hybryde --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-simple-041cfc74-96e1-4c0f-ad6f-61ae768a1a3c' {
	recordfail
	savedefault
	load_video
	gfxmode $linux_gfx_mode
	insmod gzio
	insmod part_msdos
	insmod ext2
	set root='hd0,msdos2'
	if [ x$feature_platform_search_hint = xy ]; then
	  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos2 --hint-efi=hd0,msdos2 --hint-baremetal=ahci0,msdos2  041cfc74-96e1-4c0f-ad6f-61ae768a1a3c
	else
	  search --no-floppy --fs-uuid --set=root 041cfc74-96e1-4c0f-ad6f-61ae768a1a3c
	fi
	linux	/boot/vmlinuz-3.13.0-142-generic root=UUID=041cfc74-96e1-4c0f-ad6f-61ae768a1a3c ro  quiet splash $vt_handoff
	initrd	/boot/initrd.img-3.13.0-142-generic
}
menuentry 'Windows 7 (loader) (sur /dev/sda1)' --class windows --class os $menuentry_id_option 'osprober-chain-FA2AC6152AC5CF37' {
	savedefault
	insmod part_msdos
	insmod ntfs
	set root='hd0,msdos1'
	if [ x$feature_platform_search_hint = xy ]; then
	  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos1 --hint-efi=hd0,msdos1 --hint-baremetal=ahci0,msdos1  FA2AC6152AC5CF37
	else
	  search --no-floppy --fs-uuid --set=root FA2AC6152AC5CF37
	fi
	parttool ${root} hidden-
	chainloader +1
}

## ligne vide
menuentry "   " { true}
## ligne de sous-titre
menuentry "-------------------     Menu Grub Classique     -------------------" {true}### END /etc/grub.d/07_custom ###

### BEGIN /etc/grub.d/10_linux ###
function gfxmode {
	set gfxpayload="${1}"
	if [ "${1}" = "keep" ]; then
		set vt_handoff=vt.handoff=7
	else
		set vt_handoff=
	fi
}
if [ "${recordfail}" != 1 ]; then
  if [ -e ${prefix}/gfxblacklist.txt ]; then
    if hwmatch ${prefix}/gfxblacklist.txt 3; then
      if [ ${match} = 0 ]; then
        set linux_gfx_mode=keep
      else
        set linux_gfx_mode=text
      fi
    else
      set linux_gfx_mode=text
    fi
  else
    set linux_gfx_mode=keep
  fi
else
  set linux_gfx_mode=text
fi
export linux_gfx_mode
menuentry 'XUBUNTU 14.04 EFI GNU/Linux' --class xubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-simple-72a66c99-76c9-420b-b133-77d8811a67f5' {
	recordfail
	load_video
	gfxmode $linux_gfx_mode
	insmod gzio
	insmod part_gpt
	insmod ext2
	set root='hd1,gpt3'
	if [ x$feature_platform_search_hint = xy ]; then
	  search --no-floppy --fs-uuid --set=root --hint-bios=hd1,gpt3 --hint-efi=hd1,gpt3 --hint-baremetal=ahci1,gpt3  72a66c99-76c9-420b-b133-77d8811a67f5
	else
	  search --no-floppy --fs-uuid --set=root 72a66c99-76c9-420b-b133-77d8811a67f5
	fi
	linux	/boot/vmlinuz-3.13.0-117-generic.efi.signed root=UUID=72a66c99-76c9-420b-b133-77d8811a67f5 ro  quiet splash $vt_handoff
	initrd	/boot/initrd.img-3.13.0-117-generic
}
submenu 'Options avancées pour XUBUNTU 14.04 EFI GNU/Linux' $menuentry_id_option 'gnulinux-advanced-72a66c99-76c9-420b-b133-77d8811a67f5' {
	menuentry 'XUBUNTU 14.04 EFI GNU/Linux, avec Linux 3.13.0-117-generic' --class xubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-3.13.0-117-generic-advanced-72a66c99-76c9-420b-b133-77d8811a67f5' {
		recordfail
		load_video
		gfxmode $linux_gfx_mode
		insmod gzio
		insmod part_gpt
		insmod ext2
		set root='hd1,gpt3'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd1,gpt3 --hint-efi=hd1,gpt3 --hint-baremetal=ahci1,gpt3  72a66c99-76c9-420b-b133-77d8811a67f5
		else
		  search --no-floppy --fs-uuid --set=root 72a66c99-76c9-420b-b133-77d8811a67f5
		fi
		echo	'Chargement de Linux 3.13.0-117-generic…'
		linux	/boot/vmlinuz-3.13.0-117-generic.efi.signed root=UUID=72a66c99-76c9-420b-b133-77d8811a67f5 ro  quiet splash $vt_handoff
		echo	'Chargement du disque mémoire initial…'
		initrd	/boot/initrd.img-3.13.0-117-generic
	}
	menuentry 'XUBUNTU 14.04 EFI GNU/Linux, with Linux 3.13.0-117-generic (recovery mode)' --class xubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-3.13.0-117-generic-recovery-72a66c99-76c9-420b-b133-77d8811a67f5' {
		recordfail
		load_video
		insmod gzio
		insmod part_gpt
		insmod ext2
		set root='hd1,gpt3'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd1,gpt3 --hint-efi=hd1,gpt3 --hint-baremetal=ahci1,gpt3  72a66c99-76c9-420b-b133-77d8811a67f5
		else
		  search --no-floppy --fs-uuid --set=root 72a66c99-76c9-420b-b133-77d8811a67f5
		fi
		echo	'Chargement de Linux 3.13.0-117-generic…'
		linux	/boot/vmlinuz-3.13.0-117-generic.efi.signed root=UUID=72a66c99-76c9-420b-b133-77d8811a67f5 ro recovery nomodeset 
		echo	'Chargement du disque mémoire initial…'
		initrd	/boot/initrd.img-3.13.0-117-generic
	}
	menuentry 'XUBUNTU 14.04 EFI GNU/Linux, avec Linux 3.13.0-32-generic' --class xubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-3.13.0-32-generic-advanced-72a66c99-76c9-420b-b133-77d8811a67f5' {
		recordfail
		load_video
		gfxmode $linux_gfx_mode
		insmod gzio
		insmod part_gpt
		insmod ext2
		set root='hd1,gpt3'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd1,gpt3 --hint-efi=hd1,gpt3 --hint-baremetal=ahci1,gpt3  72a66c99-76c9-420b-b133-77d8811a67f5
		else
		  search --no-floppy --fs-uuid --set=root 72a66c99-76c9-420b-b133-77d8811a67f5
		fi
		echo	'Chargement de Linux 3.13.0-32-generic…'
		linux	/boot/vmlinuz-3.13.0-32-generic root=UUID=72a66c99-76c9-420b-b133-77d8811a67f5 ro  quiet splash $vt_handoff
		echo	'Chargement du disque mémoire initial…'
		initrd	/boot/initrd.img-3.13.0-32-generic
	}
	menuentry 'XUBUNTU 14.04 EFI GNU/Linux, with Linux 3.13.0-32-generic (recovery mode)' --class xubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-3.13.0-32-generic-recovery-72a66c99-76c9-420b-b133-77d8811a67f5' {
		recordfail
		load_video
		insmod gzio
		insmod part_gpt
		insmod ext2
		set root='hd1,gpt3'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd1,gpt3 --hint-efi=hd1,gpt3 --hint-baremetal=ahci1,gpt3  72a66c99-76c9-420b-b133-77d8811a67f5
		else
		  search --no-floppy --fs-uuid --set=root 72a66c99-76c9-420b-b133-77d8811a67f5
		fi
		echo	'Chargement de Linux 3.13.0-32-generic…'
		linux	/boot/vmlinuz-3.13.0-32-generic root=UUID=72a66c99-76c9-420b-b133-77d8811a67f5 ro recovery nomodeset 
		echo	'Chargement du disque mémoire initial…'
		initrd	/boot/initrd.img-3.13.0-32-generic
	}
}

### END /etc/grub.d/10_linux ###

### BEGIN /etc/grub.d/20_linux_xen ###

### END /etc/grub.d/20_linux_xen ###

### BEGIN /etc/grub.d/20_memtest86+ ###
### END /etc/grub.d/20_memtest86+ ###

### BEGIN /etc/grub.d/25_custom ###

menuentry "EFI/ubuntu/MokManager.efi" {
search --fs-uuid --no-floppy --set=root 92C8-E043
chainloader (${root})/EFI/ubuntu/MokManager.efi
}
### END /etc/grub.d/25_custom ###

### BEGIN /etc/grub.d/30_os-prober ###
menuentry 'Ubuntu 14.04.6 LTS (14.04) (sur /dev/sda2)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-simple-041cfc74-96e1-4c0f-ad6f-61ae768a1a3c' {
	insmod part_msdos
	insmod ext2
	set root='hd0,msdos2'
	if [ x$feature_platform_search_hint = xy ]; then
	  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos2 --hint-efi=hd0,msdos2 --hint-baremetal=ahci0,msdos2  041cfc74-96e1-4c0f-ad6f-61ae768a1a3c
	else
	  search --no-floppy --fs-uuid --set=root 041cfc74-96e1-4c0f-ad6f-61ae768a1a3c
	fi
	linux /boot/vmlinuz-3.13.0-170-generic root=UUID=041cfc74-96e1-4c0f-ad6f-61ae768a1a3c ro quiet splash $vt_handoff
	initrd /boot/initrd.img-3.13.0-170-generic
}
submenu 'Options avancées pour Ubuntu 14.04.6 LTS (14.04) (sur /dev/sda2)' $menuentry_id_option 'osprober-gnulinux-advanced-041cfc74-96e1-4c0f-ad6f-61ae768a1a3c' {
	menuentry 'HYBRYDE FUSION 14.04_Dell-Latitude-E4310 GNU/Linux (sur /dev/sda2)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-3.13.0-170-generic--041cfc74-96e1-4c0f-ad6f-61ae768a1a3c' {
		insmod part_msdos
		insmod ext2
		set root='hd0,msdos2'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos2 --hint-efi=hd0,msdos2 --hint-baremetal=ahci0,msdos2  041cfc74-96e1-4c0f-ad6f-61ae768a1a3c
		else
		  search --no-floppy --fs-uuid --set=root 041cfc74-96e1-4c0f-ad6f-61ae768a1a3c
		fi
		linux /boot/vmlinuz-3.13.0-170-generic root=UUID=041cfc74-96e1-4c0f-ad6f-61ae768a1a3c ro quiet splash $vt_handoff
		initrd /boot/initrd.img-3.13.0-170-generic
	}
	menuentry 'HYBRYDE FUSION 14.04_Dell-Latitude-E4310 GNU/Linux, avec Linux 3.13.0-170-generic (sur /dev/sda2)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-3.13.0-170-generic--041cfc74-96e1-4c0f-ad6f-61ae768a1a3c' {
		insmod part_msdos
		insmod ext2
		set root='hd0,msdos2'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos2 --hint-efi=hd0,msdos2 --hint-baremetal=ahci0,msdos2  041cfc74-96e1-4c0f-ad6f-61ae768a1a3c
		else
		  search --no-floppy --fs-uuid --set=root 041cfc74-96e1-4c0f-ad6f-61ae768a1a3c
		fi
		linux /boot/vmlinuz-3.13.0-170-generic root=UUID=041cfc74-96e1-4c0f-ad6f-61ae768a1a3c ro quiet splash $vt_handoff
		initrd /boot/initrd.img-3.13.0-170-generic
	}
	menuentry 'HYBRYDE FUSION 14.04_Dell-Latitude-E4310 GNU/Linux, with Linux 3.13.0-170-generic (recovery mode) (sur /dev/sda2)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-3.13.0-170-generic-root=UUID=041cfc74-96e1-4c0f-ad6f-61ae768a1a3c ro recovery nomodeset-041cfc74-96e1-4c0f-ad6f-61ae768a1a3c' {
		insmod part_msdos
		insmod ext2
		set root='hd0,msdos2'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos2 --hint-efi=hd0,msdos2 --hint-baremetal=ahci0,msdos2  041cfc74-96e1-4c0f-ad6f-61ae768a1a3c
		else
		  search --no-floppy --fs-uuid --set=root 041cfc74-96e1-4c0f-ad6f-61ae768a1a3c
		fi
		linux /boot/vmlinuz-3.13.0-170-generic root=UUID=041cfc74-96e1-4c0f-ad6f-61ae768a1a3c ro recovery nomodeset
		initrd /boot/initrd.img-3.13.0-170-generic
	}
	menuentry 'HYBRYDE FUSION 14.04_Dell-Latitude-E4310 GNU/Linux, avec Linux 3.13.0-169-generic (sur /dev/sda2)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-3.13.0-169-generic--041cfc74-96e1-4c0f-ad6f-61ae768a1a3c' {
		insmod part_msdos
		insmod ext2
		set root='hd0,msdos2'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos2 --hint-efi=hd0,msdos2 --hint-baremetal=ahci0,msdos2  041cfc74-96e1-4c0f-ad6f-61ae768a1a3c
		else
		  search --no-floppy --fs-uuid --set=root 041cfc74-96e1-4c0f-ad6f-61ae768a1a3c
		fi
		linux /boot/vmlinuz-3.13.0-169-generic root=UUID=041cfc74-96e1-4c0f-ad6f-61ae768a1a3c ro quiet splash $vt_handoff
		initrd /boot/initrd.img-3.13.0-169-generic
	}
	menuentry 'HYBRYDE FUSION 14.04_Dell-Latitude-E4310 GNU/Linux, with Linux 3.13.0-169-generic (recovery mode) (sur /dev/sda2)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-3.13.0-169-generic-root=UUID=041cfc74-96e1-4c0f-ad6f-61ae768a1a3c ro recovery nomodeset-041cfc74-96e1-4c0f-ad6f-61ae768a1a3c' {
		insmod part_msdos
		insmod ext2
		set root='hd0,msdos2'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos2 --hint-efi=hd0,msdos2 --hint-baremetal=ahci0,msdos2  041cfc74-96e1-4c0f-ad6f-61ae768a1a3c
		else
		  search --no-floppy --fs-uuid --set=root 041cfc74-96e1-4c0f-ad6f-61ae768a1a3c
		fi
		linux /boot/vmlinuz-3.13.0-169-generic root=UUID=041cfc74-96e1-4c0f-ad6f-61ae768a1a3c ro recovery nomodeset
		initrd /boot/initrd.img-3.13.0-169-generic
	}
}

menuentry 'Ubuntu 18.04.2 LTS (18.04) (sur /dev/sda3)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-simple-5a6ea26b-1d35-48fd-902d-5b78a7c8b64e' {
	insmod part_msdos
	insmod ext2
	set root='hd0,msdos3'
	if [ x$feature_platform_search_hint = xy ]; then
	  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos3 --hint-efi=hd0,msdos3 --hint-baremetal=ahci0,msdos3  5a6ea26b-1d35-48fd-902d-5b78a7c8b64e
	else
	  search --no-floppy --fs-uuid --set=root 5a6ea26b-1d35-48fd-902d-5b78a7c8b64e
	fi
	linux /boot/vmlinuz-4.15.0-51-generic root=UUID=5a6ea26b-1d35-48fd-902d-5b78a7c8b64e ro quiet splash $vt_handoff
	initrd /boot/initrd.img-4.15.0-51-generic
}
submenu 'Options avancées pour Ubuntu 18.04.2 LTS (18.04) (sur /dev/sda3)' $menuentry_id_option 'osprober-gnulinux-advanced-5a6ea26b-1d35-48fd-902d-5b78a7c8b64e' {
	menuentry 'Ubuntu (sur /dev/sda3)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-4.15.0-51-generic--5a6ea26b-1d35-48fd-902d-5b78a7c8b64e' {
		insmod part_msdos
		insmod ext2
		set root='hd0,msdos3'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos3 --hint-efi=hd0,msdos3 --hint-baremetal=ahci0,msdos3  5a6ea26b-1d35-48fd-902d-5b78a7c8b64e
		else
		  search --no-floppy --fs-uuid --set=root 5a6ea26b-1d35-48fd-902d-5b78a7c8b64e
		fi
		linux /boot/vmlinuz-4.15.0-51-generic root=UUID=5a6ea26b-1d35-48fd-902d-5b78a7c8b64e ro quiet splash $vt_handoff
		initrd /boot/initrd.img-4.15.0-51-generic
	}
	menuentry 'Ubuntu, avec Linux 4.15.0-51-generic (sur /dev/sda3)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-4.15.0-51-generic--5a6ea26b-1d35-48fd-902d-5b78a7c8b64e' {
		insmod part_msdos
		insmod ext2
		set root='hd0,msdos3'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos3 --hint-efi=hd0,msdos3 --hint-baremetal=ahci0,msdos3  5a6ea26b-1d35-48fd-902d-5b78a7c8b64e
		else
		  search --no-floppy --fs-uuid --set=root 5a6ea26b-1d35-48fd-902d-5b78a7c8b64e
		fi
		linux /boot/vmlinuz-4.15.0-51-generic root=UUID=5a6ea26b-1d35-48fd-902d-5b78a7c8b64e ro quiet splash $vt_handoff
		initrd /boot/initrd.img-4.15.0-51-generic
	}
	menuentry 'Ubuntu, with Linux 4.15.0-51-generic (recovery mode) (sur /dev/sda3)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-4.15.0-51-generic-root=UUID=5a6ea26b-1d35-48fd-902d-5b78a7c8b64e ro recovery nomodeset-5a6ea26b-1d35-48fd-902d-5b78a7c8b64e' {
		insmod part_msdos
		insmod ext2
		set root='hd0,msdos3'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos3 --hint-efi=hd0,msdos3 --hint-baremetal=ahci0,msdos3  5a6ea26b-1d35-48fd-902d-5b78a7c8b64e
		else
		  search --no-floppy --fs-uuid --set=root 5a6ea26b-1d35-48fd-902d-5b78a7c8b64e
		fi
		linux /boot/vmlinuz-4.15.0-51-generic root=UUID=5a6ea26b-1d35-48fd-902d-5b78a7c8b64e ro recovery nomodeset
		initrd /boot/initrd.img-4.15.0-51-generic
	}
	menuentry 'Ubuntu, avec Linux 4.15.0-50-generic (sur /dev/sda3)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-4.15.0-50-generic--5a6ea26b-1d35-48fd-902d-5b78a7c8b64e' {
		insmod part_msdos
		insmod ext2
		set root='hd0,msdos3'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos3 --hint-efi=hd0,msdos3 --hint-baremetal=ahci0,msdos3  5a6ea26b-1d35-48fd-902d-5b78a7c8b64e
		else
		  search --no-floppy --fs-uuid --set=root 5a6ea26b-1d35-48fd-902d-5b78a7c8b64e
		fi
		linux /boot/vmlinuz-4.15.0-50-generic root=UUID=5a6ea26b-1d35-48fd-902d-5b78a7c8b64e ro quiet splash $vt_handoff
		initrd /boot/initrd.img-4.15.0-50-generic
	}
	menuentry 'Ubuntu, with Linux 4.15.0-50-generic (recovery mode) (sur /dev/sda3)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-4.15.0-50-generic-root=UUID=5a6ea26b-1d35-48fd-902d-5b78a7c8b64e ro recovery nomodeset-5a6ea26b-1d35-48fd-902d-5b78a7c8b64e' {
		insmod part_msdos
		insmod ext2
		set root='hd0,msdos3'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos3 --hint-efi=hd0,msdos3 --hint-baremetal=ahci0,msdos3  5a6ea26b-1d35-48fd-902d-5b78a7c8b64e
		else
		  search --no-floppy --fs-uuid --set=root 5a6ea26b-1d35-48fd-902d-5b78a7c8b64e
		fi
		linux /boot/vmlinuz-4.15.0-50-generic root=UUID=5a6ea26b-1d35-48fd-902d-5b78a7c8b64e ro recovery nomodeset
		initrd /boot/initrd.img-4.15.0-50-generic
	}
}

menuentry 'Ubuntu 18.04.2 LTS (18.04) (sur /dev/sdb4)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-simple-cb4fb6ab-daa4-405d-a278-99d4c4ca5e63' {
	insmod part_gpt
	insmod ext2
	set root='hd1,gpt4'
	if [ x$feature_platform_search_hint = xy ]; then
	  search --no-floppy --fs-uuid --set=root --hint-bios=hd1,gpt4 --hint-efi=hd1,gpt4 --hint-baremetal=ahci1,gpt4  cb4fb6ab-daa4-405d-a278-99d4c4ca5e63
	else
	  search --no-floppy --fs-uuid --set=root cb4fb6ab-daa4-405d-a278-99d4c4ca5e63
	fi
	linux /boot/vmlinuz-4.15.0-51-generic root=UUID=cb4fb6ab-daa4-405d-a278-99d4c4ca5e63 ro quiet splash $vt_handoff
	initrd /boot/initrd.img-4.15.0-51-generic
}
submenu 'Options avancées pour Ubuntu 18.04.2 LTS (18.04) (sur /dev/sdb4)' $menuentry_id_option 'osprober-gnulinux-advanced-cb4fb6ab-daa4-405d-a278-99d4c4ca5e63' {
	menuentry 'Ubuntu (sur /dev/sdb4)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-4.15.0-51-generic--cb4fb6ab-daa4-405d-a278-99d4c4ca5e63' {
		insmod part_gpt
		insmod ext2
		set root='hd1,gpt4'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd1,gpt4 --hint-efi=hd1,gpt4 --hint-baremetal=ahci1,gpt4  cb4fb6ab-daa4-405d-a278-99d4c4ca5e63
		else
		  search --no-floppy --fs-uuid --set=root cb4fb6ab-daa4-405d-a278-99d4c4ca5e63
		fi
		linux /boot/vmlinuz-4.15.0-51-generic root=UUID=cb4fb6ab-daa4-405d-a278-99d4c4ca5e63 ro quiet splash $vt_handoff
		initrd /boot/initrd.img-4.15.0-51-generic
	}
	menuentry 'Ubuntu, avec Linux 4.15.0-51-generic (sur /dev/sdb4)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-4.15.0-51-generic--cb4fb6ab-daa4-405d-a278-99d4c4ca5e63' {
		insmod part_gpt
		insmod ext2
		set root='hd1,gpt4'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd1,gpt4 --hint-efi=hd1,gpt4 --hint-baremetal=ahci1,gpt4  cb4fb6ab-daa4-405d-a278-99d4c4ca5e63
		else
		  search --no-floppy --fs-uuid --set=root cb4fb6ab-daa4-405d-a278-99d4c4ca5e63
		fi
		linux /boot/vmlinuz-4.15.0-51-generic root=UUID=cb4fb6ab-daa4-405d-a278-99d4c4ca5e63 ro quiet splash $vt_handoff
		initrd /boot/initrd.img-4.15.0-51-generic
	}
	menuentry 'Ubuntu, with Linux 4.15.0-51-generic (recovery mode) (sur /dev/sdb4)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-4.15.0-51-generic-root=UUID=cb4fb6ab-daa4-405d-a278-99d4c4ca5e63 ro recovery nomodeset-cb4fb6ab-daa4-405d-a278-99d4c4ca5e63' {
		insmod part_gpt
		insmod ext2
		set root='hd1,gpt4'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd1,gpt4 --hint-efi=hd1,gpt4 --hint-baremetal=ahci1,gpt4  cb4fb6ab-daa4-405d-a278-99d4c4ca5e63
		else
		  search --no-floppy --fs-uuid --set=root cb4fb6ab-daa4-405d-a278-99d4c4ca5e63
		fi
		linux /boot/vmlinuz-4.15.0-51-generic root=UUID=cb4fb6ab-daa4-405d-a278-99d4c4ca5e63 ro recovery nomodeset
		initrd /boot/initrd.img-4.15.0-51-generic
	}
	menuentry 'Ubuntu, avec Linux 4.15.0-50-generic (sur /dev/sdb4)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-4.15.0-50-generic--cb4fb6ab-daa4-405d-a278-99d4c4ca5e63' {
		insmod part_gpt
		insmod ext2
		set root='hd1,gpt4'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd1,gpt4 --hint-efi=hd1,gpt4 --hint-baremetal=ahci1,gpt4  cb4fb6ab-daa4-405d-a278-99d4c4ca5e63
		else
		  search --no-floppy --fs-uuid --set=root cb4fb6ab-daa4-405d-a278-99d4c4ca5e63
		fi
		linux /boot/vmlinuz-4.15.0-50-generic root=UUID=cb4fb6ab-daa4-405d-a278-99d4c4ca5e63 ro quiet splash $vt_handoff
		initrd /boot/initrd.img-4.15.0-50-generic
	}
	menuentry 'Ubuntu, with Linux 4.15.0-50-generic (recovery mode) (sur /dev/sdb4)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-4.15.0-50-generic-root=UUID=cb4fb6ab-daa4-405d-a278-99d4c4ca5e63 ro recovery nomodeset-cb4fb6ab-daa4-405d-a278-99d4c4ca5e63' {
		insmod part_gpt
		insmod ext2
		set root='hd1,gpt4'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd1,gpt4 --hint-efi=hd1,gpt4 --hint-baremetal=ahci1,gpt4  cb4fb6ab-daa4-405d-a278-99d4c4ca5e63
		else
		  search --no-floppy --fs-uuid --set=root cb4fb6ab-daa4-405d-a278-99d4c4ca5e63
		fi
		linux /boot/vmlinuz-4.15.0-50-generic root=UUID=cb4fb6ab-daa4-405d-a278-99d4c4ca5e63 ro recovery nomodeset
		initrd /boot/initrd.img-4.15.0-50-generic
	}
	menuentry 'Ubuntu, avec Linux 4.15.0-46-generic (sur /dev/sdb4)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-4.15.0-46-generic--cb4fb6ab-daa4-405d-a278-99d4c4ca5e63' {
		insmod part_gpt
		insmod ext2
		set root='hd1,gpt4'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd1,gpt4 --hint-efi=hd1,gpt4 --hint-baremetal=ahci1,gpt4  cb4fb6ab-daa4-405d-a278-99d4c4ca5e63
		else
		  search --no-floppy --fs-uuid --set=root cb4fb6ab-daa4-405d-a278-99d4c4ca5e63
		fi
		linux /boot/vmlinuz-4.15.0-46-generic root=UUID=cb4fb6ab-daa4-405d-a278-99d4c4ca5e63 ro quiet splash $vt_handoff
		initrd /boot/initrd.img-4.15.0-46-generic
	}
	menuentry 'Ubuntu, with Linux 4.15.0-46-generic (recovery mode) (sur /dev/sdb4)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-4.15.0-46-generic-root=UUID=cb4fb6ab-daa4-405d-a278-99d4c4ca5e63 ro recovery nomodeset-cb4fb6ab-daa4-405d-a278-99d4c4ca5e63' {
		insmod part_gpt
		insmod ext2
		set root='hd1,gpt4'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd1,gpt4 --hint-efi=hd1,gpt4 --hint-baremetal=ahci1,gpt4  cb4fb6ab-daa4-405d-a278-99d4c4ca5e63
		else
		  search --no-floppy --fs-uuid --set=root cb4fb6ab-daa4-405d-a278-99d4c4ca5e63
		fi
		linux /boot/vmlinuz-4.15.0-46-generic root=UUID=cb4fb6ab-daa4-405d-a278-99d4c4ca5e63 ro recovery nomodeset
		initrd /boot/initrd.img-4.15.0-46-generic
	}
	menuentry 'Ubuntu 18.04.2 LTS (18.04) (sur /dev/sda3) (sur /dev/sdb4)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-4.15.0-51-generic--cb4fb6ab-daa4-405d-a278-99d4c4ca5e63' {
		insmod part_gpt
		insmod ext2
		set root='hd1,gpt4'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd1,gpt4 --hint-efi=hd1,gpt4 --hint-baremetal=ahci1,gpt4  cb4fb6ab-daa4-405d-a278-99d4c4ca5e63
		else
		  search --no-floppy --fs-uuid --set=root cb4fb6ab-daa4-405d-a278-99d4c4ca5e63
		fi
		linux /boot/vmlinuz-4.15.0-51-generic root=UUID=5a6ea26b-1d35-48fd-902d-5b78a7c8b64e ro quiet splash $vt_handoff
		initrd /boot/initrd.img-4.15.0-51-generic
	}
	menuentry 'Ubuntu (sur /dev/sda3) (sur /dev/sdb4)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-4.15.0-51-generic--cb4fb6ab-daa4-405d-a278-99d4c4ca5e63' {
		insmod part_gpt
		insmod ext2
		set root='hd1,gpt4'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd1,gpt4 --hint-efi=hd1,gpt4 --hint-baremetal=ahci1,gpt4  cb4fb6ab-daa4-405d-a278-99d4c4ca5e63
		else
		  search --no-floppy --fs-uuid --set=root cb4fb6ab-daa4-405d-a278-99d4c4ca5e63
		fi
		linux /boot/vmlinuz-4.15.0-51-generic root=UUID=5a6ea26b-1d35-48fd-902d-5b78a7c8b64e ro quiet splash $vt_handoff
		initrd /boot/initrd.img-4.15.0-51-generic
	}
	menuentry 'Ubuntu, avec Linux 4.15.0-51-generic (sur /dev/sda3) (sur /dev/sdb4)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-4.15.0-51-generic--cb4fb6ab-daa4-405d-a278-99d4c4ca5e63' {
		insmod part_gpt
		insmod ext2
		set root='hd1,gpt4'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd1,gpt4 --hint-efi=hd1,gpt4 --hint-baremetal=ahci1,gpt4  cb4fb6ab-daa4-405d-a278-99d4c4ca5e63
		else
		  search --no-floppy --fs-uuid --set=root cb4fb6ab-daa4-405d-a278-99d4c4ca5e63
		fi
		linux /boot/vmlinuz-4.15.0-51-generic root=UUID=5a6ea26b-1d35-48fd-902d-5b78a7c8b64e ro quiet splash $vt_handoff
		initrd /boot/initrd.img-4.15.0-51-generic
	}
	menuentry 'Ubuntu, with Linux 4.15.0-51-generic (recovery mode) (sur /dev/sda3) (sur /dev/sdb4)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-4.15.0-51-generic-root=UUID=5a6ea26b-1d35-48fd-902d-5b78a7c8b64e ro recovery nomodeset-cb4fb6ab-daa4-405d-a278-99d4c4ca5e63' {
		insmod part_gpt
		insmod ext2
		set root='hd1,gpt4'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd1,gpt4 --hint-efi=hd1,gpt4 --hint-baremetal=ahci1,gpt4  cb4fb6ab-daa4-405d-a278-99d4c4ca5e63
		else
		  search --no-floppy --fs-uuid --set=root cb4fb6ab-daa4-405d-a278-99d4c4ca5e63
		fi
		linux /boot/vmlinuz-4.15.0-51-generic root=UUID=5a6ea26b-1d35-48fd-902d-5b78a7c8b64e ro recovery nomodeset
		initrd /boot/initrd.img-4.15.0-51-generic
	}
	menuentry 'Ubuntu, avec Linux 4.15.0-50-generic (sur /dev/sda3) (sur /dev/sdb4)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-4.15.0-50-generic--cb4fb6ab-daa4-405d-a278-99d4c4ca5e63' {
		insmod part_gpt
		insmod ext2
		set root='hd1,gpt4'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd1,gpt4 --hint-efi=hd1,gpt4 --hint-baremetal=ahci1,gpt4  cb4fb6ab-daa4-405d-a278-99d4c4ca5e63
		else
		  search --no-floppy --fs-uuid --set=root cb4fb6ab-daa4-405d-a278-99d4c4ca5e63
		fi
		linux /boot/vmlinuz-4.15.0-50-generic root=UUID=5a6ea26b-1d35-48fd-902d-5b78a7c8b64e ro quiet splash $vt_handoff
		initrd /boot/initrd.img-4.15.0-50-generic
	}
	menuentry 'Ubuntu, with Linux 4.15.0-50-generic (recovery mode) (sur /dev/sda3) (sur /dev/sdb4)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-4.15.0-50-generic-root=UUID=5a6ea26b-1d35-48fd-902d-5b78a7c8b64e ro recovery nomodeset-cb4fb6ab-daa4-405d-a278-99d4c4ca5e63' {
		insmod part_gpt
		insmod ext2
		set root='hd1,gpt4'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd1,gpt4 --hint-efi=hd1,gpt4 --hint-baremetal=ahci1,gpt4  cb4fb6ab-daa4-405d-a278-99d4c4ca5e63
		else
		  search --no-floppy --fs-uuid --set=root cb4fb6ab-daa4-405d-a278-99d4c4ca5e63
		fi
		linux /boot/vmlinuz-4.15.0-50-generic root=UUID=5a6ea26b-1d35-48fd-902d-5b78a7c8b64e ro recovery nomodeset
		initrd /boot/initrd.img-4.15.0-50-generic
	}
}

set timeout_style=menu
if [ "${timeout}" = 0 ]; then
  set timeout=10
fi
### END /etc/grub.d/30_os-prober ###

### BEGIN /etc/grub.d/30_uefi-firmware ###
### END /etc/grub.d/30_uefi-firmware ###

### BEGIN /etc/grub.d/40_custom ###
# This file provides an easy way to add custom menu entries.  Simply type the
# menu entries you want to add after this comment.  Be careful not to change
# the 'exec tail' line above.
menuentry "Iso Live ubuntu-budgie-17.04-desktop-i386.iso dans cle USB3" {
insmod part_gpt
insmod iso9660
search --no-floppy --fs-uuid --set=root 0669-366B
set isofile="/ubuntu-budgie-17.04-desktop-i386.iso"
loopback loop $isofile
#echo	'Chargement du noyau Linux ...'
linux (loop)/casper/vmlinuz boot=casper iso-scan/filename=$isofile toram locale=fr_FR bootkbd=fr console-setup/layoutcode=fr noprompt noeject quiet splash --
#echo	'Chargement du disque mémoire initial ...'
initrd (loop)/casper/initrd.lz
}
menuentry "Iso Live ubuntu-artful-desktop-amd64.iso dans cle USB3-Emtec" {
insmod part_gpt
insmod iso9660
search --no-floppy --fs-uuid --set=root 0669-366B
set isofile="/artful-desktop-amd64.iso"
loopback loop $isofile
#echo	'Chargement du noyau Linux ...'
linux (loop)/casper/vmlinuz.efi boot=casper iso-scan/filename=$isofile toram locale=fr_FR bootkbd=fr console-setup/layoutcode=fr noprompt noeject quiet splash --
#echo	'Chargement du disque mémoire initial ...'
initrd (loop)/casper/initrd.lz
}
menuentry "Iso Live Ubuntu17.10-desktop-amd64.iso dans cle USB3-Emtec" {
insmod part_gpt
insmod iso9660
search --no-floppy --fs-uuid --set=root 0669-366B
set isofile="/ubuntu-17.10-desktop-amd64.iso"
loopback loop $isofile
#echo	'Chargement du noyau Linux ...'
linux (loop)/casper/vmlinuz.efi boot=casper iso-scan/filename=$isofile toram locale=fr_FR bootkbd=fr console-setup/layoutcode=fr noprompt noeject quiet splash --
#echo	'Chargement du disque mémoire initial ...'
initrd (loop)/casper/initrd.lz
}### END /etc/grub.d/40_custom ###

### BEGIN /etc/grub.d/41_custom ###
if [ -f  ${config_directory}/custom.cfg ]; then
  source ${config_directory}/custom.cfg
elif [ -z "${config_directory}" -a -f  $prefix/custom.cfg ]; then
  source $prefix/custom.cfg;
fi
### END /etc/grub.d/41_custom ###
--------------------------------------------------------------------------------

=============================== sdb3/etc/fstab: ================================

--------------------------------------------------------------------------------
# /etc/fstab: static file system information.
#
# Use 'blkid' to print the universally unique identifier for a
# device; this may be used with UUID= as a more robust way to name devices
# that works even if disks are added and removed. See fstab(5).
#
# <file system> <mount point>   <type>  <options>       <dump>  <pass>
# / was on /dev/sdb3 during installation
UUID=72a66c99-76c9-420b-b133-77d8811a67f5 /               ext4    errors=remount-ro 0       1
# /boot/efi was on /dev/sdb1 during installation
UUID=92C8-E043  /boot/efi       vfat    defaults        0       1
#UUID=92C8-E043	/boot/efi	vfat	defaults	0	1
--------------------------------------------------------------------------------

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

           GiB - GB             File                                 Fragment(s)

  21.382862091 = 22.959673344   boot/grub/grub.cfg                             1
  19.077713013 = 20.484538368   boot/vmlinuz-3.13.0-117-generic                2
  19.308181763 = 20.732002304   boot/vmlinuz-3.13.0-117-generic.efi.signed     1
  17.878444672 = 19.196833792   boot/vmlinuz-3.13.0-32-generic                 2
  17.878444672 = 19.196833792   vmlinuz                                        2
  21.895526886 = 23.510142976   boot/initrd.img-3.13.0-117-generic             2
  19.528972626 = 20.969074688   boot/initrd.img-3.13.0-32-generic              2
  19.528972626 = 20.969074688   initrd.img                                     2
  19.528972626 = 20.969074688   initrd.img.old                                 2

=========================== sdb4/boot/grub/grub.cfg: ===========================

--------------------------------------------------------------------------------
#
# DO NOT EDIT THIS FILE
#
# It is automatically generated by grub-mkconfig using templates
# from /etc/grub.d and settings from /etc/default/grub
#

### BEGIN /etc/grub.d/00_header ###
if [ -s $prefix/grubenv ]; then
  set have_grubenv=true
  load_env
fi
if [ "${next_entry}" ] ; then
   set default="${next_entry}"
   set next_entry=
   save_env next_entry
   set boot_once=true
else
   set default="0"
fi

if [ x"${feature_menuentry_id}" = xy ]; then
  menuentry_id_option="--id"
else
  menuentry_id_option=""
fi

export menuentry_id_option

if [ "${prev_saved_entry}" ]; then
  set saved_entry="${prev_saved_entry}"
  save_env saved_entry
  set prev_saved_entry=
  save_env prev_saved_entry
  set boot_once=true
fi

function savedefault {
  if [ -z "${boot_once}" ]; then
    saved_entry="${chosen}"
    save_env saved_entry
  fi
}
function recordfail {
  set recordfail=1
  if [ -n "${have_grubenv}" ]; then if [ -z "${boot_once}" ]; then save_env recordfail; fi; fi
}
function load_video {
  if [ x$feature_all_video_module = xy ]; then
    insmod all_video
  else
    insmod efi_gop
    insmod efi_uga
    insmod ieee1275_fb
    insmod vbe
    insmod vga
    insmod video_bochs
    insmod video_cirrus
  fi
}

if [ x$feature_default_font_path = xy ] ; then
   font=unicode
else
insmod part_gpt
insmod ext2
set root='hd1,gpt4'
if [ x$feature_platform_search_hint = xy ]; then
  search --no-floppy --fs-uuid --set=root --hint-bios=hd1,gpt4 --hint-efi=hd1,gpt4 --hint-baremetal=ahci1,gpt4  cb4fb6ab-daa4-405d-a278-99d4c4ca5e63
else
  search --no-floppy --fs-uuid --set=root cb4fb6ab-daa4-405d-a278-99d4c4ca5e63
fi
    font="/usr/share/grub/unicode.pf2"
fi

if loadfont $font ; then
  set gfxmode=auto
  load_video
  insmod gfxterm
  set locale_dir=$prefix/locale
  set lang=fr_FR
  insmod gettext
fi
terminal_output gfxterm
if [ "${recordfail}" = 1 ] ; then
  set timeout=30
else
  if [ x$feature_timeout_style = xy ] ; then
    set timeout_style=menu
    set timeout=10
  # Fallback normal timeout code in case the timeout_style feature is
  # unavailable.
  else
    set timeout=10
  fi
fi
### END /etc/grub.d/00_header ###

### BEGIN /etc/grub.d/05_debian_theme ###
set menu_color_normal=white/black
set menu_color_highlight=black/light-gray
if background_color 44,0,30,0; then
  clear
fi
### END /etc/grub.d/05_debian_theme ###

### BEGIN /etc/grub.d/10_linux ###
function gfxmode {
	set gfxpayload="${1}"
	if [ "${1}" = "keep" ]; then
		set vt_handoff=vt.handoff=1
	else
		set vt_handoff=
	fi
}
if [ "${recordfail}" != 1 ]; then
  if [ -e ${prefix}/gfxblacklist.txt ]; then
    if hwmatch ${prefix}/gfxblacklist.txt 3; then
      if [ ${match} = 0 ]; then
        set linux_gfx_mode=keep
      else
        set linux_gfx_mode=text
      fi
    else
      set linux_gfx_mode=text
    fi
  else
    set linux_gfx_mode=keep
  fi
else
  set linux_gfx_mode=text
fi
export linux_gfx_mode
menuentry 'Ubuntu' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-simple-cb4fb6ab-daa4-405d-a278-99d4c4ca5e63' {
	recordfail
	load_video
	gfxmode $linux_gfx_mode
	insmod gzio
	if [ x$grub_platform = xxen ]; then insmod xzio; insmod lzopio; fi
	insmod part_gpt
	insmod ext2
	set root='hd1,gpt4'
	if [ x$feature_platform_search_hint = xy ]; then
	  search --no-floppy --fs-uuid --set=root --hint-bios=hd1,gpt4 --hint-efi=hd1,gpt4 --hint-baremetal=ahci1,gpt4  cb4fb6ab-daa4-405d-a278-99d4c4ca5e63
	else
	  search --no-floppy --fs-uuid --set=root cb4fb6ab-daa4-405d-a278-99d4c4ca5e63
	fi
        linux	/boot/vmlinuz-4.15.0-51-generic root=UUID=cb4fb6ab-daa4-405d-a278-99d4c4ca5e63 ro  quiet splash $vt_handoff
	initrd	/boot/initrd.img-4.15.0-51-generic
}
submenu 'Options avancées pour Ubuntu' $menuentry_id_option 'gnulinux-advanced-cb4fb6ab-daa4-405d-a278-99d4c4ca5e63' {
	menuentry 'Ubuntu, avec Linux 4.15.0-51-generic' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-4.15.0-51-generic-advanced-cb4fb6ab-daa4-405d-a278-99d4c4ca5e63' {
		recordfail
		load_video
		gfxmode $linux_gfx_mode
		insmod gzio
		if [ x$grub_platform = xxen ]; then insmod xzio; insmod lzopio; fi
		insmod part_gpt
		insmod ext2
		set root='hd1,gpt4'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd1,gpt4 --hint-efi=hd1,gpt4 --hint-baremetal=ahci1,gpt4  cb4fb6ab-daa4-405d-a278-99d4c4ca5e63
		else
		  search --no-floppy --fs-uuid --set=root cb4fb6ab-daa4-405d-a278-99d4c4ca5e63
		fi
		echo	'Chargement de Linux 4.15.0-51-generic…'
	        linux	/boot/vmlinuz-4.15.0-51-generic root=UUID=cb4fb6ab-daa4-405d-a278-99d4c4ca5e63 ro  quiet splash $vt_handoff
		echo	'Chargement du disque mémoire initial…'
		initrd	/boot/initrd.img-4.15.0-51-generic
	}
	menuentry 'Ubuntu, with Linux 4.15.0-51-generic (recovery mode)' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-4.15.0-51-generic-recovery-cb4fb6ab-daa4-405d-a278-99d4c4ca5e63' {
		recordfail
		load_video
		insmod gzio
		if [ x$grub_platform = xxen ]; then insmod xzio; insmod lzopio; fi
		insmod part_gpt
		insmod ext2
		set root='hd1,gpt4'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd1,gpt4 --hint-efi=hd1,gpt4 --hint-baremetal=ahci1,gpt4  cb4fb6ab-daa4-405d-a278-99d4c4ca5e63
		else
		  search --no-floppy --fs-uuid --set=root cb4fb6ab-daa4-405d-a278-99d4c4ca5e63
		fi
		echo	'Chargement de Linux 4.15.0-51-generic…'
	        linux	/boot/vmlinuz-4.15.0-51-generic root=UUID=cb4fb6ab-daa4-405d-a278-99d4c4ca5e63 ro recovery nomodeset 
		echo	'Chargement du disque mémoire initial…'
		initrd	/boot/initrd.img-4.15.0-51-generic
	}
	menuentry 'Ubuntu, avec Linux 4.15.0-50-generic' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-4.15.0-50-generic-advanced-cb4fb6ab-daa4-405d-a278-99d4c4ca5e63' {
		recordfail
		load_video
		gfxmode $linux_gfx_mode
		insmod gzio
		if [ x$grub_platform = xxen ]; then insmod xzio; insmod lzopio; fi
		insmod part_gpt
		insmod ext2
		set root='hd1,gpt4'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd1,gpt4 --hint-efi=hd1,gpt4 --hint-baremetal=ahci1,gpt4  cb4fb6ab-daa4-405d-a278-99d4c4ca5e63
		else
		  search --no-floppy --fs-uuid --set=root cb4fb6ab-daa4-405d-a278-99d4c4ca5e63
		fi
		echo	'Chargement de Linux 4.15.0-50-generic…'
	        linux	/boot/vmlinuz-4.15.0-50-generic root=UUID=cb4fb6ab-daa4-405d-a278-99d4c4ca5e63 ro  quiet splash $vt_handoff
		echo	'Chargement du disque mémoire initial…'
		initrd	/boot/initrd.img-4.15.0-50-generic
	}
	menuentry 'Ubuntu, with Linux 4.15.0-50-generic (recovery mode)' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-4.15.0-50-generic-recovery-cb4fb6ab-daa4-405d-a278-99d4c4ca5e63' {
		recordfail
		load_video
		insmod gzio
		if [ x$grub_platform = xxen ]; then insmod xzio; insmod lzopio; fi
		insmod part_gpt
		insmod ext2
		set root='hd1,gpt4'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd1,gpt4 --hint-efi=hd1,gpt4 --hint-baremetal=ahci1,gpt4  cb4fb6ab-daa4-405d-a278-99d4c4ca5e63
		else
		  search --no-floppy --fs-uuid --set=root cb4fb6ab-daa4-405d-a278-99d4c4ca5e63
		fi
		echo	'Chargement de Linux 4.15.0-50-generic…'
	        linux	/boot/vmlinuz-4.15.0-50-generic root=UUID=cb4fb6ab-daa4-405d-a278-99d4c4ca5e63 ro recovery nomodeset 
		echo	'Chargement du disque mémoire initial…'
		initrd	/boot/initrd.img-4.15.0-50-generic
	}
	menuentry 'Ubuntu, avec Linux 4.15.0-46-generic' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-4.15.0-46-generic-advanced-cb4fb6ab-daa4-405d-a278-99d4c4ca5e63' {
		recordfail
		load_video
		gfxmode $linux_gfx_mode
		insmod gzio
		if [ x$grub_platform = xxen ]; then insmod xzio; insmod lzopio; fi
		insmod part_gpt
		insmod ext2
		set root='hd1,gpt4'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd1,gpt4 --hint-efi=hd1,gpt4 --hint-baremetal=ahci1,gpt4  cb4fb6ab-daa4-405d-a278-99d4c4ca5e63
		else
		  search --no-floppy --fs-uuid --set=root cb4fb6ab-daa4-405d-a278-99d4c4ca5e63
		fi
		echo	'Chargement de Linux 4.15.0-46-generic…'
	        linux	/boot/vmlinuz-4.15.0-46-generic root=UUID=cb4fb6ab-daa4-405d-a278-99d4c4ca5e63 ro  quiet splash $vt_handoff
		echo	'Chargement du disque mémoire initial…'
		initrd	/boot/initrd.img-4.15.0-46-generic
	}
	menuentry 'Ubuntu, with Linux 4.15.0-46-generic (recovery mode)' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-4.15.0-46-generic-recovery-cb4fb6ab-daa4-405d-a278-99d4c4ca5e63' {
		recordfail
		load_video
		insmod gzio
		if [ x$grub_platform = xxen ]; then insmod xzio; insmod lzopio; fi
		insmod part_gpt
		insmod ext2
		set root='hd1,gpt4'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd1,gpt4 --hint-efi=hd1,gpt4 --hint-baremetal=ahci1,gpt4  cb4fb6ab-daa4-405d-a278-99d4c4ca5e63
		else
		  search --no-floppy --fs-uuid --set=root cb4fb6ab-daa4-405d-a278-99d4c4ca5e63
		fi
		echo	'Chargement de Linux 4.15.0-46-generic…'
	        linux	/boot/vmlinuz-4.15.0-46-generic root=UUID=cb4fb6ab-daa4-405d-a278-99d4c4ca5e63 ro recovery nomodeset 
		echo	'Chargement du disque mémoire initial…'
		initrd	/boot/initrd.img-4.15.0-46-generic
	}
}

### END /etc/grub.d/10_linux ###

### BEGIN /etc/grub.d/20_linux_xen ###

### END /etc/grub.d/20_linux_xen ###

### BEGIN /etc/grub.d/20_memtest86+ ###
menuentry 'Memory test (memtest86+)' {
	insmod part_gpt
	insmod ext2
	set root='hd1,gpt4'
	if [ x$feature_platform_search_hint = xy ]; then
	  search --no-floppy --fs-uuid --set=root --hint-bios=hd1,gpt4 --hint-efi=hd1,gpt4 --hint-baremetal=ahci1,gpt4  cb4fb6ab-daa4-405d-a278-99d4c4ca5e63
	else
	  search --no-floppy --fs-uuid --set=root cb4fb6ab-daa4-405d-a278-99d4c4ca5e63
	fi
	knetbsd	/boot/memtest86+.elf
}
menuentry 'Memory test (memtest86+, serial console 115200)' {
	insmod part_gpt
	insmod ext2
	set root='hd1,gpt4'
	if [ x$feature_platform_search_hint = xy ]; then
	  search --no-floppy --fs-uuid --set=root --hint-bios=hd1,gpt4 --hint-efi=hd1,gpt4 --hint-baremetal=ahci1,gpt4  cb4fb6ab-daa4-405d-a278-99d4c4ca5e63
	else
	  search --no-floppy --fs-uuid --set=root cb4fb6ab-daa4-405d-a278-99d4c4ca5e63
	fi
	linux16	/boot/memtest86+.bin console=ttyS0,115200n8
}
### END /etc/grub.d/20_memtest86+ ###

### BEGIN /etc/grub.d/30_os-prober ###
menuentry 'Windows 7 (sur /dev/sda1)' --class windows --class os $menuentry_id_option 'osprober-chain-FA2AC6152AC5CF37' {
	insmod part_msdos
	insmod ntfs
	set root='hd0,msdos1'
	if [ x$feature_platform_search_hint = xy ]; then
	  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos1 --hint-efi=hd0,msdos1 --hint-baremetal=ahci0,msdos1  FA2AC6152AC5CF37
	else
	  search --no-floppy --fs-uuid --set=root FA2AC6152AC5CF37
	fi
	parttool ${root} hidden-
	chainloader +1
}
menuentry 'Ubuntu 14.04.6 LTS (14.04) (sur /dev/sda2)' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-simple-041cfc74-96e1-4c0f-ad6f-61ae768a1a3c' {
	insmod part_msdos
	insmod ext2
	set root='hd0,msdos2'
	if [ x$feature_platform_search_hint = xy ]; then
	  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos2 --hint-efi=hd0,msdos2 --hint-baremetal=ahci0,msdos2  041cfc74-96e1-4c0f-ad6f-61ae768a1a3c
	else
	  search --no-floppy --fs-uuid --set=root 041cfc74-96e1-4c0f-ad6f-61ae768a1a3c
	fi
	linux /boot/vmlinuz-3.13.0-170-generic root=UUID=041cfc74-96e1-4c0f-ad6f-61ae768a1a3c ro quiet splash $vt_handoff
	initrd /boot/initrd.img-3.13.0-170-generic
}
submenu 'Options avancées pour Ubuntu 14.04.6 LTS (14.04) (sur /dev/sda2)' $menuentry_id_option 'osprober-gnulinux-advanced-041cfc74-96e1-4c0f-ad6f-61ae768a1a3c' {
	menuentry 'HYBRYDE FUSION 14.04_Dell-Latitude-E4310 GNU/Linux (sur /dev/sda2)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-3.13.0-170-generic--041cfc74-96e1-4c0f-ad6f-61ae768a1a3c' {
		insmod part_msdos
		insmod ext2
		set root='hd0,msdos2'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos2 --hint-efi=hd0,msdos2 --hint-baremetal=ahci0,msdos2  041cfc74-96e1-4c0f-ad6f-61ae768a1a3c
		else
		  search --no-floppy --fs-uuid --set=root 041cfc74-96e1-4c0f-ad6f-61ae768a1a3c
		fi
		linux /boot/vmlinuz-3.13.0-170-generic root=UUID=041cfc74-96e1-4c0f-ad6f-61ae768a1a3c ro quiet splash $vt_handoff
		initrd /boot/initrd.img-3.13.0-170-generic
	}
	menuentry 'HYBRYDE FUSION 14.04_Dell-Latitude-E4310 GNU/Linux, avec Linux 3.13.0-170-generic (sur /dev/sda2)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-3.13.0-170-generic--041cfc74-96e1-4c0f-ad6f-61ae768a1a3c' {
		insmod part_msdos
		insmod ext2
		set root='hd0,msdos2'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos2 --hint-efi=hd0,msdos2 --hint-baremetal=ahci0,msdos2  041cfc74-96e1-4c0f-ad6f-61ae768a1a3c
		else
		  search --no-floppy --fs-uuid --set=root 041cfc74-96e1-4c0f-ad6f-61ae768a1a3c
		fi
		linux /boot/vmlinuz-3.13.0-170-generic root=UUID=041cfc74-96e1-4c0f-ad6f-61ae768a1a3c ro quiet splash $vt_handoff
		initrd /boot/initrd.img-3.13.0-170-generic
	}
	menuentry 'HYBRYDE FUSION 14.04_Dell-Latitude-E4310 GNU/Linux, with Linux 3.13.0-170-generic (recovery mode) (sur /dev/sda2)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-3.13.0-170-generic-root=UUID=041cfc74-96e1-4c0f-ad6f-61ae768a1a3c ro recovery nomodeset-041cfc74-96e1-4c0f-ad6f-61ae768a1a3c' {
		insmod part_msdos
		insmod ext2
		set root='hd0,msdos2'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos2 --hint-efi=hd0,msdos2 --hint-baremetal=ahci0,msdos2  041cfc74-96e1-4c0f-ad6f-61ae768a1a3c
		else
		  search --no-floppy --fs-uuid --set=root 041cfc74-96e1-4c0f-ad6f-61ae768a1a3c
		fi
		linux /boot/vmlinuz-3.13.0-170-generic root=UUID=041cfc74-96e1-4c0f-ad6f-61ae768a1a3c ro recovery nomodeset
		initrd /boot/initrd.img-3.13.0-170-generic
	}
	menuentry 'HYBRYDE FUSION 14.04_Dell-Latitude-E4310 GNU/Linux, avec Linux 3.13.0-169-generic (sur /dev/sda2)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-3.13.0-169-generic--041cfc74-96e1-4c0f-ad6f-61ae768a1a3c' {
		insmod part_msdos
		insmod ext2
		set root='hd0,msdos2'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos2 --hint-efi=hd0,msdos2 --hint-baremetal=ahci0,msdos2  041cfc74-96e1-4c0f-ad6f-61ae768a1a3c
		else
		  search --no-floppy --fs-uuid --set=root 041cfc74-96e1-4c0f-ad6f-61ae768a1a3c
		fi
		linux /boot/vmlinuz-3.13.0-169-generic root=UUID=041cfc74-96e1-4c0f-ad6f-61ae768a1a3c ro quiet splash $vt_handoff
		initrd /boot/initrd.img-3.13.0-169-generic
	}
	menuentry 'HYBRYDE FUSION 14.04_Dell-Latitude-E4310 GNU/Linux, with Linux 3.13.0-169-generic (recovery mode) (sur /dev/sda2)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-3.13.0-169-generic-root=UUID=041cfc74-96e1-4c0f-ad6f-61ae768a1a3c ro recovery nomodeset-041cfc74-96e1-4c0f-ad6f-61ae768a1a3c' {
		insmod part_msdos
		insmod ext2
		set root='hd0,msdos2'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos2 --hint-efi=hd0,msdos2 --hint-baremetal=ahci0,msdos2  041cfc74-96e1-4c0f-ad6f-61ae768a1a3c
		else
		  search --no-floppy --fs-uuid --set=root 041cfc74-96e1-4c0f-ad6f-61ae768a1a3c
		fi
		linux /boot/vmlinuz-3.13.0-169-generic root=UUID=041cfc74-96e1-4c0f-ad6f-61ae768a1a3c ro recovery nomodeset
		initrd /boot/initrd.img-3.13.0-169-generic
	}
}

menuentry 'Ubuntu 18.04.2 LTS (18.04) (sur /dev/sda3)' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-simple-5a6ea26b-1d35-48fd-902d-5b78a7c8b64e' {
	insmod part_msdos
	insmod ext2
	set root='hd0,msdos3'
	if [ x$feature_platform_search_hint = xy ]; then
	  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos3 --hint-efi=hd0,msdos3 --hint-baremetal=ahci0,msdos3  5a6ea26b-1d35-48fd-902d-5b78a7c8b64e
	else
	  search --no-floppy --fs-uuid --set=root 5a6ea26b-1d35-48fd-902d-5b78a7c8b64e
	fi
	linux /boot/vmlinuz-4.15.0-51-generic root=UUID=5a6ea26b-1d35-48fd-902d-5b78a7c8b64e ro quiet splash $vt_handoff
	initrd /boot/initrd.img-4.15.0-51-generic
}
submenu 'Options avancées pour Ubuntu 18.04.2 LTS (18.04) (sur /dev/sda3)' $menuentry_id_option 'osprober-gnulinux-advanced-5a6ea26b-1d35-48fd-902d-5b78a7c8b64e' {
	menuentry 'Ubuntu (sur /dev/sda3)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-4.15.0-51-generic--5a6ea26b-1d35-48fd-902d-5b78a7c8b64e' {
		insmod part_msdos
		insmod ext2
		set root='hd0,msdos3'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos3 --hint-efi=hd0,msdos3 --hint-baremetal=ahci0,msdos3  5a6ea26b-1d35-48fd-902d-5b78a7c8b64e
		else
		  search --no-floppy --fs-uuid --set=root 5a6ea26b-1d35-48fd-902d-5b78a7c8b64e
		fi
		linux /boot/vmlinuz-4.15.0-51-generic root=UUID=5a6ea26b-1d35-48fd-902d-5b78a7c8b64e ro quiet splash $vt_handoff
		initrd /boot/initrd.img-4.15.0-51-generic
	}
	menuentry 'Ubuntu, avec Linux 4.15.0-51-generic (sur /dev/sda3)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-4.15.0-51-generic--5a6ea26b-1d35-48fd-902d-5b78a7c8b64e' {
		insmod part_msdos
		insmod ext2
		set root='hd0,msdos3'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos3 --hint-efi=hd0,msdos3 --hint-baremetal=ahci0,msdos3  5a6ea26b-1d35-48fd-902d-5b78a7c8b64e
		else
		  search --no-floppy --fs-uuid --set=root 5a6ea26b-1d35-48fd-902d-5b78a7c8b64e
		fi
		linux /boot/vmlinuz-4.15.0-51-generic root=UUID=5a6ea26b-1d35-48fd-902d-5b78a7c8b64e ro quiet splash $vt_handoff
		initrd /boot/initrd.img-4.15.0-51-generic
	}
	menuentry 'Ubuntu, with Linux 4.15.0-51-generic (recovery mode) (sur /dev/sda3)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-4.15.0-51-generic-root=UUID=5a6ea26b-1d35-48fd-902d-5b78a7c8b64e ro recovery nomodeset-5a6ea26b-1d35-48fd-902d-5b78a7c8b64e' {
		insmod part_msdos
		insmod ext2
		set root='hd0,msdos3'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos3 --hint-efi=hd0,msdos3 --hint-baremetal=ahci0,msdos3  5a6ea26b-1d35-48fd-902d-5b78a7c8b64e
		else
		  search --no-floppy --fs-uuid --set=root 5a6ea26b-1d35-48fd-902d-5b78a7c8b64e
		fi
		linux /boot/vmlinuz-4.15.0-51-generic root=UUID=5a6ea26b-1d35-48fd-902d-5b78a7c8b64e ro recovery nomodeset
		initrd /boot/initrd.img-4.15.0-51-generic
	}
	menuentry 'Ubuntu, avec Linux 4.15.0-50-generic (sur /dev/sda3)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-4.15.0-50-generic--5a6ea26b-1d35-48fd-902d-5b78a7c8b64e' {
		insmod part_msdos
		insmod ext2
		set root='hd0,msdos3'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos3 --hint-efi=hd0,msdos3 --hint-baremetal=ahci0,msdos3  5a6ea26b-1d35-48fd-902d-5b78a7c8b64e
		else
		  search --no-floppy --fs-uuid --set=root 5a6ea26b-1d35-48fd-902d-5b78a7c8b64e
		fi
		linux /boot/vmlinuz-4.15.0-50-generic root=UUID=5a6ea26b-1d35-48fd-902d-5b78a7c8b64e ro quiet splash $vt_handoff
		initrd /boot/initrd.img-4.15.0-50-generic
	}
	menuentry 'Ubuntu, with Linux 4.15.0-50-generic (recovery mode) (sur /dev/sda3)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-4.15.0-50-generic-root=UUID=5a6ea26b-1d35-48fd-902d-5b78a7c8b64e ro recovery nomodeset-5a6ea26b-1d35-48fd-902d-5b78a7c8b64e' {
		insmod part_msdos
		insmod ext2
		set root='hd0,msdos3'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos3 --hint-efi=hd0,msdos3 --hint-baremetal=ahci0,msdos3  5a6ea26b-1d35-48fd-902d-5b78a7c8b64e
		else
		  search --no-floppy --fs-uuid --set=root 5a6ea26b-1d35-48fd-902d-5b78a7c8b64e
		fi
		linux /boot/vmlinuz-4.15.0-50-generic root=UUID=5a6ea26b-1d35-48fd-902d-5b78a7c8b64e ro recovery nomodeset
		initrd /boot/initrd.img-4.15.0-50-generic
	}
	menuentry 'Ubuntu, avec Linux 4.15.0-48-generic (sur /dev/sda3)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-4.15.0-48-generic--5a6ea26b-1d35-48fd-902d-5b78a7c8b64e' {
		insmod part_msdos
		insmod ext2
		set root='hd0,msdos3'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos3 --hint-efi=hd0,msdos3 --hint-baremetal=ahci0,msdos3  5a6ea26b-1d35-48fd-902d-5b78a7c8b64e
		else
		  search --no-floppy --fs-uuid --set=root 5a6ea26b-1d35-48fd-902d-5b78a7c8b64e
		fi
		linux /boot/vmlinuz-4.15.0-48-generic root=UUID=5a6ea26b-1d35-48fd-902d-5b78a7c8b64e ro quiet splash $vt_handoff
		initrd /boot/initrd.img-4.15.0-48-generic
	}
	menuentry 'Ubuntu, with Linux 4.15.0-48-generic (recovery mode) (sur /dev/sda3)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-4.15.0-48-generic-root=UUID=5a6ea26b-1d35-48fd-902d-5b78a7c8b64e ro recovery nomodeset-5a6ea26b-1d35-48fd-902d-5b78a7c8b64e' {
		insmod part_msdos
		insmod ext2
		set root='hd0,msdos3'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos3 --hint-efi=hd0,msdos3 --hint-baremetal=ahci0,msdos3  5a6ea26b-1d35-48fd-902d-5b78a7c8b64e
		else
		  search --no-floppy --fs-uuid --set=root 5a6ea26b-1d35-48fd-902d-5b78a7c8b64e
		fi
		linux /boot/vmlinuz-4.15.0-48-generic root=UUID=5a6ea26b-1d35-48fd-902d-5b78a7c8b64e ro recovery nomodeset
		initrd /boot/initrd.img-4.15.0-48-generic
	}
}

menuentry 'Ubuntu 14.04.1 LTS (14.04) (sur /dev/sdb3)' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-simple-72a66c99-76c9-420b-b133-77d8811a67f5' {
	insmod part_gpt
	insmod ext2
	set root='hd1,gpt3'
	if [ x$feature_platform_search_hint = xy ]; then
	  search --no-floppy --fs-uuid --set=root --hint-bios=hd1,gpt3 --hint-efi=hd1,gpt3 --hint-baremetal=ahci1,gpt3  72a66c99-76c9-420b-b133-77d8811a67f5
	else
	  search --no-floppy --fs-uuid --set=root 72a66c99-76c9-420b-b133-77d8811a67f5
	fi
	linux /boot/vmlinuz-3.13.0-117-generic.efi.signed root=UUID=72a66c99-76c9-420b-b133-77d8811a67f5 ro quiet splash $vt_handoff
	initrd /boot/initrd.img-3.13.0-117-generic
}
submenu 'Options avancées pour Ubuntu 14.04.1 LTS (14.04) (sur /dev/sdb3)' $menuentry_id_option 'osprober-gnulinux-advanced-72a66c99-76c9-420b-b133-77d8811a67f5' {
	menuentry 'XUBUNTU 14.04 EFI GNU/Linux-usb-EMTEC (sur /dev/sdb3)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-3.13.0-117-generic.efi.signed--72a66c99-76c9-420b-b133-77d8811a67f5' {
		insmod part_gpt
		insmod ext2
		set root='hd1,gpt3'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd1,gpt3 --hint-efi=hd1,gpt3 --hint-baremetal=ahci1,gpt3  72a66c99-76c9-420b-b133-77d8811a67f5
		else
		  search --no-floppy --fs-uuid --set=root 72a66c99-76c9-420b-b133-77d8811a67f5
		fi
		linux /boot/vmlinuz-3.13.0-117-generic.efi.signed root=UUID=72a66c99-76c9-420b-b133-77d8811a67f5 ro quiet splash $vt_handoff
		initrd /boot/initrd.img-3.13.0-117-generic
	}
	menuentry 'XUBUNTU 14.04 EFI GNU/Linux (sur /dev/sdb3)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-3.13.0-117-generic.efi.signed--72a66c99-76c9-420b-b133-77d8811a67f5' {
		insmod part_gpt
		insmod ext2
		set root='hd1,gpt3'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd1,gpt3 --hint-efi=hd1,gpt3 --hint-baremetal=ahci1,gpt3  72a66c99-76c9-420b-b133-77d8811a67f5
		else
		  search --no-floppy --fs-uuid --set=root 72a66c99-76c9-420b-b133-77d8811a67f5
		fi
		linux /boot/vmlinuz-3.13.0-117-generic.efi.signed root=UUID=72a66c99-76c9-420b-b133-77d8811a67f5 ro quiet splash $vt_handoff
		initrd /boot/initrd.img-3.13.0-117-generic
	}
	menuentry 'XUBUNTU 14.04 EFI GNU/Linux, avec Linux 3.13.0-117-generic (sur /dev/sdb3)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-3.13.0-117-generic.efi.signed--72a66c99-76c9-420b-b133-77d8811a67f5' {
		insmod part_gpt
		insmod ext2
		set root='hd1,gpt3'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd1,gpt3 --hint-efi=hd1,gpt3 --hint-baremetal=ahci1,gpt3  72a66c99-76c9-420b-b133-77d8811a67f5
		else
		  search --no-floppy --fs-uuid --set=root 72a66c99-76c9-420b-b133-77d8811a67f5
		fi
		linux /boot/vmlinuz-3.13.0-117-generic.efi.signed root=UUID=72a66c99-76c9-420b-b133-77d8811a67f5 ro quiet splash $vt_handoff
		initrd /boot/initrd.img-3.13.0-117-generic
	}
	menuentry 'XUBUNTU 14.04 EFI GNU/Linux, with Linux 3.13.0-117-generic (recovery mode) (sur /dev/sdb3)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-3.13.0-117-generic.efi.signed-root=UUID=72a66c99-76c9-420b-b133-77d8811a67f5 ro recovery nomodeset-72a66c99-76c9-420b-b133-77d8811a67f5' {
		insmod part_gpt
		insmod ext2
		set root='hd1,gpt3'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd1,gpt3 --hint-efi=hd1,gpt3 --hint-baremetal=ahci1,gpt3  72a66c99-76c9-420b-b133-77d8811a67f5
		else
		  search --no-floppy --fs-uuid --set=root 72a66c99-76c9-420b-b133-77d8811a67f5
		fi
		linux /boot/vmlinuz-3.13.0-117-generic.efi.signed root=UUID=72a66c99-76c9-420b-b133-77d8811a67f5 ro recovery nomodeset
		initrd /boot/initrd.img-3.13.0-117-generic
	}
	menuentry 'XUBUNTU 14.04 EFI GNU/Linux, avec Linux 3.13.0-32-generic (sur /dev/sdb3)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-3.13.0-32-generic--72a66c99-76c9-420b-b133-77d8811a67f5' {
		insmod part_gpt
		insmod ext2
		set root='hd1,gpt3'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd1,gpt3 --hint-efi=hd1,gpt3 --hint-baremetal=ahci1,gpt3  72a66c99-76c9-420b-b133-77d8811a67f5
		else
		  search --no-floppy --fs-uuid --set=root 72a66c99-76c9-420b-b133-77d8811a67f5
		fi
		linux /boot/vmlinuz-3.13.0-32-generic root=UUID=72a66c99-76c9-420b-b133-77d8811a67f5 ro quiet splash $vt_handoff
		initrd /boot/initrd.img-3.13.0-32-generic
	}
	menuentry 'XUBUNTU 14.04 EFI GNU/Linux, with Linux 3.13.0-32-generic (recovery mode) (sur /dev/sdb3)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-3.13.0-32-generic-root=UUID=72a66c99-76c9-420b-b133-77d8811a67f5 ro recovery nomodeset-72a66c99-76c9-420b-b133-77d8811a67f5' {
		insmod part_gpt
		insmod ext2
		set root='hd1,gpt3'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd1,gpt3 --hint-efi=hd1,gpt3 --hint-baremetal=ahci1,gpt3  72a66c99-76c9-420b-b133-77d8811a67f5
		else
		  search --no-floppy --fs-uuid --set=root 72a66c99-76c9-420b-b133-77d8811a67f5
		fi
		linux /boot/vmlinuz-3.13.0-32-generic root=UUID=72a66c99-76c9-420b-b133-77d8811a67f5 ro recovery nomodeset
		initrd /boot/initrd.img-3.13.0-32-generic
	}
}

set timeout_style=menu
if [ "${timeout}" = 0 ]; then
  set timeout=10
fi
### END /etc/grub.d/30_os-prober ###

### BEGIN /etc/grub.d/30_uefi-firmware ###
### END /etc/grub.d/30_uefi-firmware ###

### BEGIN /etc/grub.d/40_custom ###
# This file provides an easy way to add custom menu entries.  Simply type the
# menu entries you want to add after this comment.  Be careful not to change
# the 'exec tail' line above.
### END /etc/grub.d/40_custom ###

### BEGIN /etc/grub.d/41_custom ###
if [ -f  ${config_directory}/custom.cfg ]; then
  source ${config_directory}/custom.cfg
elif [ -z "${config_directory}" -a -f  $prefix/custom.cfg ]; then
  source $prefix/custom.cfg;
fi
### END /etc/grub.d/41_custom ###
--------------------------------------------------------------------------------

=============================== sdb4/etc/fstab: ================================

--------------------------------------------------------------------------------
# /etc/fstab: static file system information.
#
# Use 'blkid' to print the universally unique identifier for a
# device; this may be used with UUID= as a more robust way to name devices
# that works even if disks are added and removed. See fstab(5).
#
# <file system> <mount point>   <type>  <options>       <dump>  <pass>
# /
UUID=cb4fb6ab-daa4-405d-a278-99d4c4ca5e63   /   ext4   noatime,errors=remount-ro   0   1
--------------------------------------------------------------------------------

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

           GiB - GB             File                                 Fragment(s)

  43.153488159 = 46.335705088   boot/grub/grub.cfg                             3
  54.364910126 = 58.373877760   boot/grub/i386-pc/core.img                     1
  38.649311066 = 41.499381760   boot/vmlinuz-4.15.0-46-generic                 2
  57.364166260 = 61.594304512   boot/vmlinuz-4.15.0-50-generic                 1
  39.395416260 = 42.300506112   boot/vmlinuz-4.15.0-51-generic                 1
  39.395416260 = 42.300506112   vmlinuz                                        1
  57.364166260 = 61.594304512   vmlinuz.old                                    1
  44.689357758 = 47.984832512   boot/initrd.img-4.15.0-46-generic              3
  58.529434204 = 62.845501440   boot/initrd.img-4.15.0-50-generic              4
  53.093406677 = 57.008611328   boot/initrd.img-4.15.0-51-generic              6
  53.093406677 = 57.008611328   initrd.img                                     6
  58.529434204 = 62.845501440   initrd.img.old                                 4

=============================== StdErr Messages: ===============================

umount: /mnt/BootInfo/sdb4: device is busy.
        (In some cases useful info about processes that use
         the device is found by lsof(8) or fuser(1))

ADDITIONAL INFORMATION :
=================== log of boot-info 20190612_1802 ===================
boot-info version : 4ppa65
boot-sav version : 4ppa65
boot-sav-extra version : 4ppa65
glade2script version : 3.2.3~ppa4

WARNING: GPT (GUID Partition Table) detected on '/dev/sdb'! The util fdisk doesn't support GPT. Use GNU Parted.

boot-info is executed in installed-session (Ubuntu 14.04.1 LTS, trusty, Ubuntu, x86_64)
CPU op-mode(s):        32-bit, 64-bit
BOOT_IMAGE=/boot/vmlinuz-3.13.0-117-generic.efi.signed root=UUID=72a66c99-76c9-420b-b133-77d8811a67f5 ro quiet splash vt.handoff=7

=================== os-prober:
/dev/sdb3:L'OS actuellement utilisé - Ubuntu 14.04.1 LTS CurrentSession:linux
/dev/sda2:Ubuntu 14.04.6 LTS (14.04):Ubuntu:linux
/dev/sda3:Ubuntu 18.04.2 LTS (18.04):Ubuntu1:linux
/dev/sdb4:Ubuntu 18.04.2 LTS (18.04):Ubuntu2:linux

=================== blkid:
/dev/sda1: LABEL="windows-7-del" UUID="FA2AC6152AC5CF37" TYPE="ntfs"
/dev/sda2: LABEL="fusion-14._dell" UUID="041cfc74-96e1-4c0f-ad6f-61ae768a1a3c" TYPE="ext4"
/dev/sda3: LABEL="ubuntu-18.04_del" UUID="5a6ea26b-1d35-48fd-902d-5b78a7c8b64e" TYPE="ext4"
/dev/sdb1: UUID="92C8-E043" TYPE="vfat"
/dev/sdb3: LABEL="xubuntu-efi" UUID="72a66c99-76c9-420b-b133-77d8811a67f5" TYPE="ext4"
/dev/sdb4: LABEL="SB@" UUID="cb4fb6ab-daa4-405d-a278-99d4c4ca5e63" TYPE="ext4"
/dev/sdb5: LABEL="test-multi" UUID="0669-366B" TYPE="vfat"


2 disks with OS, 4 OS : 4 Linux, 0 MacOS, 0 Windows, 0 unknown type OS.

Windows not detected by os-prober on sda1.

Attention : identifiant de table de partitions GPT (GUID) détecté sur « /dev/sdb ». L'utilitaire sfdisk ne prend pas GPT en charge. Utilisez GNU Parted.


WARNING: GPT (GUID Partition Table) detected on '/dev/sdb'! The util fdisk doesn't support GPT. Use GNU Parted.


=================== /etc/grub.d/ :
drwxr-xr-x  2 root root     4096 mars   8  2018 grub.d
total 88
-rwxr-xr-x 1 root root  9791 août   2  2016 00_header
-rwxr-xr-x 1 root root  6058 mai    8  2014 05_debian_theme
-rwxr-xr-x 1 root root  3217 mai    4  2018 07_custom
-rwxr-xr-x 1 root root 11608 mai   15  2014 10_linux
-rwxr-xr-x 1 root root 10412 mai   15  2014 20_linux_xen
-rwxr-xr-x 1 root root  1992 mars  12  2014 20_memtest86+
-rwxr-xr-x 1 root root   170 oct.  30  2017 25_custom
-rwxr-xr-x 1 root root 11692 mai   15  2014 30_os-prober
-rwxr-xr-x 1 root root  1418 août   2  2016 30_uefi-firmware
-rwxr-xr-x 1 root root  1730 mars  25  2018 40_custom
-rwxr-xr-x 1 root root   723 juil.  9  2017 40_custom~
-rwxr-xr-x 1 root root   216 mai   15  2014 41_custom
-rw-r--r-- 1 root root   483 mai   15  2014 README


=================== /etc/grub.d/40_custom :
menuentry "Iso Live ubuntu-budgie-17.04-desktop-i386.iso dans cle USB3" {
insmod part_gpt
insmod iso9660
search --no-floppy --fs-uuid --set=root 0669-366B
set isofile="/ubuntu-budgie-17.04-desktop-i386.iso"
loopback loop $isofile
#echo	'Chargement du noyau Linux ...'
linux (loop)/casper/vmlinuz boot=casper iso-scan/filename=$isofile toram locale=fr_FR bootkbd=fr console-setup/layoutcode=fr noprompt noeject quiet splash --
#echo	'Chargement du disque mémoire initial ...'
initrd (loop)/casper/initrd.lz
}
menuentry "Iso Live ubuntu-artful-desktop-amd64.iso dans cle USB3-Emtec" {
insmod part_gpt
insmod iso9660
search --no-floppy --fs-uuid --set=root 0669-366B
set isofile="/artful-desktop-amd64.iso"
loopback loop $isofile
#echo	'Chargement du noyau Linux ...'
linux (loop)/casper/vmlinuz.efi boot=casper iso-scan/filename=$isofile toram locale=fr_FR bootkbd=fr console-setup/layoutcode=fr noprompt noeject quiet splash --
#echo	'Chargement du disque mémoire initial ...'
initrd (loop)/casper/initrd.lz
}
menuentry "Iso Live Ubuntu17.10-desktop-amd64.iso dans cle USB3-Emtec" {
insmod part_gpt
insmod iso9660
search --no-floppy --fs-uuid --set=root 0669-366B
set isofile="/ubuntu-17.10-desktop-amd64.iso"
loopback loop $isofile
#echo	'Chargement du noyau Linux ...'
linux (loop)/casper/vmlinuz.efi boot=casper iso-scan/filename=$isofile toram locale=fr_FR bootkbd=fr console-setup/layoutcode=fr noprompt noeject quiet splash --
#echo	'Chargement du disque mémoire initial ...'
initrd (loop)/casper/initrd.lz
}




=================== /etc/default/grub :

# If you change this file, run 'update-grub' afterwards to update
# /boot/grub/grub.cfg.
# For full documentation of the options in this file, see:
#   info -f grub -n 'Simple configuration'

GRUB_DEFAULT=0
#GRUB_HIDDEN_TIMEOUT=0
GRUB_HIDDEN_TIMEOUT_QUIET=true
GRUB_TIMEOUT=10
#GRUB_DISTRIBUTOR=`lsb_release -i -s 2> /dev/null || echo Debian`
GRUB_DISTRIBUTOR=`echo -n XUBUNTU 14.04 EFI`
GRUB_CMDLINE_LINUX_DEFAULT="quiet splash"
GRUB_CMDLINE_LINUX=""

# Uncomment to enable BadRAM filtering, modify to suit your needs
# This works with Linux (no patch required) and with any kernel that obtains
# the memory map information from GRUB (GNU Mach, kernel of FreeBSD ...)
#GRUB_BADRAM="0x01234567,0xfefefefe,0x89abcdef,0xefefefef"

# Uncomment to disable graphical terminal (grub-pc only)
#GRUB_TERMINAL=console

# The resolution used on graphical terminal
# note that you can use only modes which your graphic card supports via VBE
# you can see them in real GRUB with the command `vbeinfo'
#GRUB_GFXMODE=640x480

# Uncomment if you don't want GRUB to pass "root=UUID=xxx" parameter to Linux
#GRUB_DISABLE_LINUX_UUID=true

# Uncomment to disable generation of recovery mode menu entries
#GRUB_DISABLE_RECOVERY="true"

# Uncomment to get a beep at grub start
#GRUB_INIT_TUNE="480 440 1"



/boot/efi detected in the fstab of sdb3: UUID=92C8-E043   (sdb1)

=================== sdb3saved_entry=osprober-chain-FA2AC6152AC5CF37/grub/grubenv :
saved_entry=osprober-chain-FA2AC6152AC5CF37




=================== sda2/etc/grub.d/ :
drwxr-xr-x  2 root root       4096 mai   30 22:34 grub.d
total 84
-rwxr-xr-x 1 root root  9791 déc.  19  2015 00_header
-rwxr-xr-x 1 root root  6058 avril 10  2014 05_debian_theme
-rwxr-xr-x 1 root root 11608 avril 11  2014 10_linux
-rwxr-xr-x 1 root root 10412 avril 11  2014 20_linux_xen
-rwxr-xr-x 1 root root  1992 mars  12  2014 20_memtest86+
-rwxr-xr-x 1 root root 11692 avril 11  2014 30_os-prober
-rwxr-xr-x 1 root root  1418 août   2  2016 30_uefi-firmware
-rwxr-xr-x 1 root root  2996 mai   30 22:34 40_custom
-rwxr-xr-x 1 root root  4622 mai   30 21:01 40_custom~
-rwxr-xr-x 1 root root   216 avril  9  2013 41_custom
-rw-r--r-- 1 root root   483 avril  9  2013 README


=================== sda2/etc/grub.d/40_custom :
menuentry "Iso Live ubuntu-budgie-17.04-desktop-i386.iso dans cle USB3-Emtec" {
insmod part_gpt
insmod iso9660
search --no-floppy --fs-uuid --set=root 0669-366B
set isofile="/ubuntu-budgie-17.04-desktop-i386.iso"
loopback loop $isofile
#echo	'Chargement du noyau Linux ...'
linux (loop)/casper/vmlinuz boot=casper iso-scan/filename=$isofile toram locale=fr_FR bootkbd=fr console-setup/layoutcode=fr noprompt noeject quiet splash --
#echo	'Chargement du disque mémoire initial ...'
initrd (loop)/casper/initrd.lz
}
menuentry "Iso Live ubuntu-17.10-desktop-amd64.iso dans cle USB3-Emtec" {
insmod part_gpt
insmod iso9660
search --no-floppy --fs-uuid --set=root 0669-366B
set isofile="/ubuntu-17.10-desktop-amd64.iso"
loopback loop $isofile
#echo	'Chargement du noyau Linux ...'
linux (loop)/casper/vmlinuz.efi boot=casper iso-scan/filename=$isofile toram locale=fr_FR bootkbd=fr console-setup/layoutcode=fr noprompt noeject quiet splash --
#echo	'Chargement du disque mémoire initial ...'
initrd (loop)/casper/initrd.lz
}
menuentry "Iso Live xubuntu-16.04.3-desktop-amd64.iso dans partition Windows-7-dell" {
insmod part_msdos
insmod iso9660
search --no-floppy --fs-uuid --set=root FA2AC6152AC5CF37
set isofile="/xubuntu-16.04.3-desktop-amd64.iso"
loopback loop $isofile
linux (loop)/casper/vmlinuz.efi boot=casper iso-scan/filename=$isofile toram locale=fr_FR bootkbd=fr console-setup/layoutcode=fr noprompt noeject quiet splash --
initrd (loop)/casper/initrd.lz
}
menuentry "Iso Live Ubuntu-16.04.4-desktop-i386.iso dans partition Windows-7-dell" {
insmod part_msdos
insmod iso9660
search --no-floppy --fs-uuid --set=root FA2AC6152AC5CF37
set isofile="/ubuntu-16.04.4-desktop-i386.iso"
loopback loop $isofile
linux (loop)/casper/vmlinuz boot=casper iso-scan/filename=$isofile toram locale=fr_FR bootkbd=fr console-setup/layoutcode=fr noprompt noeject quiet splash --
initrd (loop)/casper/initrd.lz
}
menuentry "Iso Live ubuntu-17.10-desktop-amd64.iso dans partition Windows-7-dell" {
insmod part_msdos
insmod iso9660
search --no-floppy --fs-uuid --set=root FA2AC6152AC5CF37
set isofile="/ubuntu-17.10-desktop-amd64.iso"
loopback loop $isofile
linux (loop)/casper/vmlinuz.efi boot=casper iso-scan/filename=$isofile toram locale=fr_FR bootkbd=fr console-setup/layoutcode=fr noprompt noeject quiet splash --
initrd (loop)/casper/initrd.lz
}
menuentry "Iso Live ubuntu-18.04.2-desktop-amd64.iso dans partition Windows-7-dell" {
insmod part_msdos
insmod iso9660
search --no-floppy --fs-uuid --set=root FA2AC6152AC5CF37
set isofile="/ubuntu-18.04.2-desktop-amd64.iso"
loopback loop $isofile
linux (loop)/casper/vmlinuz.efi boot=casper iso-scan/filename=$isofile toram locale=fr_FR bootkbd=fr console-setup/layoutcode=fr noprompt noeject quiet splash --
initrd (loop)/casper/initrd.lz
}




=================== sda2/etc/default/grub :

# If you change this file, run 'update-grub' afterwards to update
# /boot/grub/grub.cfg.
# For full documentation of the options in this file, see:
#   info -f grub -n 'Simple configuration'

GRUB_SAVEDEFAULT="true"
GRUB_DEFAULT="saved"
#GRUB_DEFAULT=0
#GRUB_HIDDEN_TIMEOUT=0
GRUB_HIDDEN_TIMEOUT_QUIET=true
GRUB_TIMEOUT=10
#GRUB_DISTRIBUTOR=`lsb_release -i -s 2> /dev/null || echo Debian`
GRUB_DISTRIBUTOR=`echo -n HYBRYDE FUSION 14.04_Dell-Latitude-E4310`
GRUB_CMDLINE_LINUX_DEFAULT="quiet splash"
GRUB_CMDLINE_LINUX=""

# Uncomment to enable BadRAM filtering, modify to suit your needs
# This works with Linux (no patch required) and with any kernel that obtains
# the memory map information from GRUB (GNU Mach, kernel of FreeBSD ...)
#GRUB_BADRAM="0x01234567,0xfefefefe,0x89abcdef,0xefefefef"

# Uncomment to disable graphical terminal (grub-pc only)
#GRUB_TERMINAL=console

# The resolution used on graphical terminal
# note that you can use only modes which your graphic card supports via VBE
# you can see them in real GRUB with the command `vbeinfo'
#GRUB_GFXMODE=640x480

# Uncomment if you don't want GRUB to pass "root=UUID=xxx" parameter to Linux
#GRUB_DISABLE_LINUX_UUID=true

# Uncomment to disable generation of recovery mode menu entries
#GRUB_DISABLE_RECOVERY="true"

# Uncomment to get a beep at grub start
#GRUB_INIT_TUNE="480 440 1"

GRUB_BACKGROUND="/etc/remastersys/grub.jpg"




=================== sda2saved_entry=osprober-gnulinux-simple-5a6ea26b-1d35-48fd-902d-5b78a7c8b64e/grub/grubenv :
saved_entry=osprober-gnulinux-simple-5a6ea26b-1d35-48fd-902d-5b78a7c8b64e




=================== sda3/etc/grub.d/ :
drwxr-xr-x  2 root root     4096 avril  6 09:21 grub.d
total 80
-rwxr-xr-x 1 root root 10046 févr.  8 00:20 00_header
-rwxr-xr-x 1 root root  6258 mars   4  2018 05_debian_theme
-rwxr-xr-x 1 root root 12693 mars   4  2018 10_linux
-rwxr-xr-x 1 root root 11298 mars   4  2018 20_linux_xen
-rwxr-xr-x 1 root root  1992 janv. 28  2016 20_memtest86+
-rw-r--r-- 1 root root 12059 mars   4  2018 30_os-prober
-rwxr-xr-x 1 root root  1418 mars   4  2018 30_uefi-firmware
-rwxr-xr-x 1 root root   214 mars   4  2018 40_custom
-rwxr-xr-x 1 root root   216 mars   4  2018 41_custom
-rw-r--r-- 1 root root   483 mars   4  2018 README




=================== sda3/etc/default/grub :

# If you change this file, run 'update-grub' afterwards to update
# /boot/grub/grub.cfg.
# For full documentation of the options in this file, see:
#   info -f grub -n 'Simple configuration'

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

# Uncomment to enable BadRAM filtering, modify to suit your needs
# This works with Linux (no patch required) and with any kernel that obtains
# the memory map information from GRUB (GNU Mach, kernel of FreeBSD ...)
#GRUB_BADRAM="0x01234567,0xfefefefe,0x89abcdef,0xefefefef"

# Uncomment to disable graphical terminal (grub-pc only)
#GRUB_TERMINAL=console

# The resolution used on graphical terminal
# note that you can use only modes which your graphic card supports via VBE
# you can see them in real GRUB with the command `vbeinfo'
#GRUB_GFXMODE=640x480

# Uncomment if you don't want GRUB to pass "root=UUID=xxx" parameter to Linux
#GRUB_DISABLE_LINUX_UUID=true

# Uncomment to disable generation of recovery mode menu entries
#GRUB_DISABLE_RECOVERY="true"

# Uncomment to get a beep at grub start
#GRUB_INIT_TUNE="480 440 1"



Presence of EFI/Boot file detected: /boot/efi/EFI/Boot/bootx64.efi

=================== sdb4/etc/grub.d/ :
drwxr-xr-x  2 root root     4096 mai   31 23:42 grub.d
total 80
-rwxr-xr-x 1 root root 10046 févr.  8 00:20 00_header
-rwxr-xr-x 1 root root  6258 mars   4  2018 05_debian_theme
-rwxr-xr-x 1 root root 12693 mars   4  2018 10_linux
-rwxr-xr-x 1 root root 11298 mars   4  2018 20_linux_xen
-rwxr-xr-x 1 root root  1992 janv. 28  2016 20_memtest86+
-rwxr-xr-x 1 root root 12059 mars   4  2018 30_os-prober
-rwxr-xr-x 1 root root  1418 mars   4  2018 30_uefi-firmware
-rwxr-xr-x 1 root root   214 mars   4  2018 40_custom
-rwxr-xr-x 1 root root   216 mars   4  2018 41_custom
-rw-r--r-- 1 root root   483 mars   4  2018 README




=================== sdb4/etc/default/grub :

# If you change this file, run 'update-grub' afterwards to update
# /boot/grub/grub.cfg.
# For full documentation of the options in this file, see:
#   info -f grub -n 'Simple configuration'

GRUB_DEFAULT=0
#GRUB_TIMEOUT_STYLE=hidden
GRUB_TIMEOUT=10
GRUB_DISTRIBUTOR=`lsb_release -i -s 2> /dev/null || echo Debian`
GRUB_CMDLINE_LINUX_DEFAULT="quiet splash"
GRUB_CMDLINE_LINUX=""

# Uncomment to enable BadRAM filtering, modify to suit your needs
# This works with Linux (no patch required) and with any kernel that obtains
# the memory map information from GRUB (GNU Mach, kernel of FreeBSD ...)
#GRUB_BADRAM="0x01234567,0xfefefefe,0x89abcdef,0xefefefef"

# Uncomment to disable graphical terminal (grub-pc only)
#GRUB_TERMINAL=console

# The resolution used on graphical terminal
# note that you can use only modes which your graphic card supports via VBE
# you can see them in real GRUB with the command `vbeinfo'
#GRUB_GFXMODE=640x480

# Uncomment if you don't want GRUB to pass "root=UUID=xxx" parameter to Linux
#GRUB_DISABLE_LINUX_UUID=true

# Uncomment to disable generation of recovery mode menu entries
#GRUB_DISABLE_RECOVERY="true"

# Uncomment to get a beep at grub start
#GRUB_INIT_TUNE="480 440 1"



ls /sys/firmware/efi/vars : TimeZone-99578ad9-cfe9-47ce-88ed-6ab26894c6e4,Timeout-8be4df61-93ca-11d2-aa0d-00e098032b8c,Setup-ec87d643-eba4-4bb5-a1e5-3f3e36b20da9,SetupCpuFeatures-ec87d643-eba4-4bb5-a1e5-3f3e36b20da9,SetupAmtFeatures-ec87d643-eba4-4bb5-a1e5-3f3e36b20da9,SerialPortsEnabledVar-560bf58a-1e0d-4d7e-953f-2980a261e031,SendProgressEvent-acc8e1e4-9f9f-4e40-a57e-f99e52f34ca5,SBRev-8be4df61-93ca-11d2-aa0d-00e098032b8c,PhysicalPresence-f4498787-28c7-4f07-9dfd-39996815151f,PetAlertCfg-8be4df61-93ca-11d2-aa0d-00e098032b8c,PciSerialPortsLocationVar-560bf58a-1e0d-4d7e-953f-2980a261e031,PchInit-e6c2f70a-b604-4877-85ba-deec89e117eb,OsType-a66919d2-6c45-403e-b00a-9bce58e97315,new_var,NBRev-8be4df61-93ca-11d2-aa0d-00e098032b8c,MTC-eb704011-1402-11d3-8e77-00a0c969723b,MsgCodeSession-1439c37f-ef85-4620-8300-04275c3fd523,MsgCodeIndex-653ff75e-f761-4ddd-91b6-0fd691bacc7d,MonotonicCounter-8be4df61-93ca-11d2-aa0d-00e098032b8c,MokListRT-605dab50-e046-4300-abb6-3dd810dd8b23,MemoryTypeInformation-4c19049f-4137-4dd3-9c10-8b97a83ffdfa,MemoryOverwriteRequestControl-e20939be-32d4-41be-a150-897f85d49829,MeBiosExtensionSetup-1bad711c-d451-4241-b1f3-8537812e0c70,LegacyDevOrder-a56074db-65fe-45f7-bd21-2d2bdd8e9652,LangCodes-8be4df61-93ca-11d2-aa0d-00e098032b8c,Lang-8be4df61-93ca-11d2-aa0d-00e098032b8c,IgdVBIOSRevL-8be4df61-93ca-11d2-aa0d-00e098032b8c,IgdVBIOSRevH-8be4df61-93ca-11d2-aa0d-00e098032b8c,GsetUefiIplDefaultValue-7f3301c7-2405-4765-aa2e-d9ed28aea950,GsetLegacyIplDefaultValue-3a21751e-bd32-4825-8754-82a47f01b09b,ExtdAcpiGlobalVariable-bf0c61cd-09ba-49d8-9187-c23a193841a4,DtsGlobalVariable-78109c08-a204-41e0-b30d-115bfea8ab90,del_var,DefaultBootOrder-45cf35f6-0d6e-4d04-856a-0370a5b16f53,CpuS3Resume-30b98b95-dfa3-4501-a3ce-e38c186384a0,ConsoleLock-368cda0d-cf31-4b9b-8cf6-e7d1bfff157e,ConOutDev-8be4df61-93ca-11d2-aa0d-00e098032b8c,ConOut-8be4df61-93ca-11d2-aa0d-00e098032b8c,ConInDev-8be4df61-93ca-11d2-aa0d-00e098032b8c,ConIn-8be4df61-93ca-11d2-aa0d-00e098032b8c,ConErrDev-8be4df61-93ca-11d2-aa0d-00e098032b8c,ColdReset-8be4df61-93ca-11d2-aa0d-00e098032b8c,BootOrder-8be4df61-93ca-11d2-aa0d-00e098032b8c,BootOneDevice-8be4df61-93ca-11d2-aa0d-00e098032b8c,BootList-8be4df61-93ca-11d2-aa0d-00e098032b8c,BootFlow-ef152fb4-7b2f-427d-bdb4-7e0a05826e64,BootFFFE-5990c250-676b-4ff7-8a0d-529319d0b254,BootFFFD-5990c250-676b-4ff7-8a0d-529319d0b254,BootFFFC-5990c250-676b-4ff7-8a0d-529319d0b254,BootFFFB-5990c250-676b-4ff7-8a0d-529319d0b254,BootFFFA-5990c250-676b-4ff7-8a0d-529319d0b254,BootCurrent-8be4df61-93ca-11d2-aa0d-00e098032b8c,Boot0007-8be4df61-93ca-11d2-aa0d-00e098032b8c,Boot0006-8be4df61-93ca-11d2-aa0d-00e098032b8c,Boot0004-8be4df61-93ca-11d2-aa0d-00e098032b8c,Boot0003-8be4df61-93ca-11d2-aa0d-00e098032b8c,Boot0002-8be4df61-93ca-11d2-aa0d-00e098032b8c,Boot0001-8be4df61-93ca-11d2-aa0d-00e098032b8c,Boot0000-8be4df61-93ca-11d2-aa0d-00e098032b8c,AMITSESetup-c811fa38-42c8-4579-a9bb-60e94eddfb34,AcpiGlobalVariable-af9ffd67-ec10-488a-9dfc-6cbf5ee22c2e,4-e9b5af65-a3ca-4219-a016-b0f752c4e432,3-e9b5af65-a3ca-4219-a016-b0f752c4e432,2-e9b5af65-a3ca-4219-a016-b0f752c4e432,1-e9b5af65-a3ca-4219-a016-b0f752c4e432,0-e9b5af65-a3ca-4219-a016-b0f752c4e432,
Veuillez indiquer ce message à boot.repair@gmail.com
ls /sys/firmware/efi/vars : TimeZone-99578ad9-cfe9-47ce-88ed-6ab26894c6e4,Timeout-8be4df61-93ca-11d2-aa0d-00e098032b8c,Setup-ec87d643-eba4-4bb5-a1e5-3f3e36b20da9,SetupCpuFeatures-ec87d643-eba4-4bb5-a1e5-3f3e36b20da9,SetupAmtFeatures-ec87d643-eba4-4bb5-a1e5-3f3e36b20da9,SerialPortsEnabledVar-560bf58a-1e0d-4d7e-953f-2980a261e031,SendProgressEvent-acc8e1e4-9f9f-4e40-a57e-f99e52f34ca5,SBRev-8be4df61-93ca-11d2-aa0d-00e098032b8c,PhysicalPresence-f4498787-28c7-4f07-9dfd-39996815151f,PetAlertCfg-8be4df61-93ca-11d2-aa0d-00e098032b8c,PciSerialPortsLocationVar-560bf58a-1e0d-4d7e-953f-2980a261e031,PchInit-e6c2f70a-b604-4877-85ba-deec89e117eb,OsType-a66919d2-6c45-403e-b00a-9bce58e97315,new_var,NBRev-8be4df61-93ca-11d2-aa0d-00e098032b8c,MTC-eb704011-1402-11d3-8e77-00a0c969723b,MsgCodeSession-1439c37f-ef85-4620-8300-04275c3fd523,MsgCodeIndex-653ff75e-f761-4ddd-91b6-0fd691bacc7d,MonotonicCounter-8be4df61-93ca-11d2-aa0d-00e098032b8c,MokListRT-605dab50-e046-4300-abb6-3dd810dd8b23,MemoryTypeInformation-4c19049f-4137-4dd3-9c10-8b97a83ffdfa,MemoryOverwriteRequestControl-e20939be-32d4-41be-a150-897f85d49829,MeBiosExtensionSetup-1bad711c-d451-4241-b1f3-8537812e0c70,LegacyDevOrder-a56074db-65fe-45f7-bd21-2d2bdd8e9652,LangCodes-8be4df61-93ca-11d2-aa0d-00e098032b8c,Lang-8be4df61-93ca-11d2-aa0d-00e098032b8c,IgdVBIOSRevL-8be4df61-93ca-11d2-aa0d-00e098032b8c,IgdVBIOSRevH-8be4df61-93ca-11d2-aa0d-00e098032b8c,GsetUefiIplDefaultValue-7f3301c7-2405-4765-aa2e-d9ed28aea950,GsetLegacyIplDefaultValue-3a21751e-bd32-4825-8754-82a47f01b09b,ExtdAcpiGlobalVariable-bf0c61cd-09ba-49d8-9187-c23a193841a4,DtsGlobalVariable-78109c08-a204-41e0-b30d-115bfea8ab90,del_var,DefaultBootOrder-45cf35f6-0d6e-4d04-856a-0370a5b16f53,CpuS3Resume-30b98b95-dfa3-4501-a3ce-e38c186384a0,ConsoleLock-368cda0d-cf31-4b9b-8cf6-e7d1bfff157e,ConOutDev-8be4df61-93ca-11d2-aa0d-00e098032b8c,ConOut-8be4df61-93ca-11d2-aa0d-00e098032b8c,ConInDev-8be4df61-93ca-11d2-aa0d-00e098032b8c,ConIn-8be4df61-93ca-11d2-aa0d-00e098032b8c,ConErrDev-8be4df61-93ca-11d2-aa0d-00e098032b8c,ColdReset-8be4df61-93ca-11d2-aa0d-00e098032b8c,BootOrder-8be4df61-93ca-11d2-aa0d-00e098032b8c,BootOneDevice-8be4df61-93ca-11d2-aa0d-00e098032b8c,BootList-8be4df61-93ca-11d2-aa0d-00e098032b8c,BootFlow-ef152fb4-7b2f-427d-bdb4-7e0a05826e64,BootFFFE-5990c250-676b-4ff7-8a0d-529319d0b254,BootFFFD-5990c250-676b-4ff7-8a0d-529319d0b254,BootFFFC-5990c250-676b-4ff7-8a0d-529319d0b254,BootFFFB-5990c250-676b-4ff7-8a0d-529319d0b254,BootFFFA-5990c250-676b-4ff7-8a0d-529319d0b254,BootCurrent-8be4df61-93ca-11d2-aa0d-00e098032b8c,Boot0007-8be4df61-93ca-11d2-aa0d-00e098032b8c,Boot0006-8be4df61-93ca-11d2-aa0d-00e098032b8c,Boot0004-8be4df61-93ca-11d2-aa0d-00e098032b8c,Boot0003-8be4df61-93ca-11d2-aa0d-00e098032b8c,Boot0002-8be4df61-93ca-11d2-aa0d-00e098032b8c,Boot0001-8be4df61-93ca-11d2-aa0d-00e098032b8c,Boot0000-8be4df61-93ca-11d2-aa0d-00e098032b8c,AMITSESetup-c811fa38-42c8-4579-a9bb-60e94eddfb34,AcpiGlobalVariable-af9ffd67-ec10-488a-9dfc-6cbf5ee22c2e,4-e9b5af65-a3ca-4219-a016-b0f752c4e432,3-e9b5af65-a3ca-4219-a016-b0f752c4e432,2-e9b5af65-a3ca-4219-a016-b0f752c4e432,1-e9b5af65-a3ca-4219-a016-b0f752c4e432,0-e9b5af65-a3ca-4219-a016-b0f752c4e432,
Special SecureBoot. Veuillez indiquer ce message à boot.repair@gmail.com

=================== efibootmgr -v
BootCurrent: 0006
Timeout: 2 seconds
BootOrder: 0006,0000,0001,0002,0003,0004,0007
Boot0000  Diskette Drive	BIOS(1,0,00)
Boot0001* Internal HDD	BIOS(2,0,00)P0: LDLC                      .
Boot0002* USB Storage Device	BIOS(5,0,00)USB Storage Device.
Boot0003* CD/DVD/CD-RW Drive	BIOS(3,0,00)P1: TSSTcorp DVD+/-RW TS-U633J.
Boot0004  Onboard NIC	BIOS(6,0,00)
Boot0006* ubuntu	HD(1,2007000,c8000,c279ab17-8851-4486-b8fb-7ae86a52026d)File(EFIubuntushimx64.efi)
Boot0007  UEFI: INT13(USB,0x80)	ACPI(a0341d0,0)PCI(1d,0)Vendor(aa7ba38a-dabf-40c3-8d18-b55b39609ef7,8001000000005553422020202020ffffffffffffffffffffffffffffffffffffffffffffffff)HD(1,2007000,c8000,c279ab17-8851-4486-b8fb-7ae86a52026d)
BootFFFA* Internal Shell       	Vendor(5990c250-676b-4ff7-8a0d-529319d0b254,)
BootFFFB* Diagnostic Boot      	Vendor(5990c250-676b-4ff7-8a0d-529319d0b254,)
BootFFFC* Temporary Boot Menu  	Vendor(5990c250-676b-4ff7-8a0d-529319d0b254,)
BootFFFD* Graphic Setup        	Vendor(5990c250-676b-4ff7-8a0d-529319d0b254,)
BootFFFE* Text Setup           	Vendor(5990c250-676b-4ff7-8a0d-529319d0b254,)

=================== UEFI/Legacy mode:
BIOS is EFI-compatible, and is setup in EFI-mode for this installed-session.
SecureBoot enabled.


=================== PARTITIONS & DISKS:
sdb3	: sdb,	not-sepboot,	grubenv-ng	grub2,	signed grub-efi ,	update-grub,	64,	with-boot,	is-os,	not--efi--part,	fstab-without-boot,	fstab-has-goodEFI,	no-nt,	no-winload,	no-recov-nor-hid,	no-bmgr,	notwinboot,	apt-get,	grub-install,	with--usr,	fstab-without-usr,	not-sep-usr,	standard,	not-far,	notbiosboot, .
sda1	: sda,	not-sepboot,	no-grubenv	nogrub,	no-docgrub,	no-update-grub,	32,	no-boot,	is-os,	not--efi--part,	part-has-no-fstab,	part-has-no-fstab,	no-nt,	haswinload,	no-recov-nor-hid,	bootmgr,	is-winboot,	nopakmgr,	nogrubinstall,	no---usr,	part-has-no-fstab,	not-sep-usr,	standard,	not-far,	notbiosboot, /mnt/boot-sav/sda1.
sda2	: sda,	not-sepboot,	grubenv-ng	grub2,	grub-pc grub-efi ,	update-grub,	32,	with-boot,	is-os,	not--efi--part,	fstab-without-boot,	fstab-without-efi,	no-nt,	no-winload,	no-recov-nor-hid,	no-bmgr,	notwinboot,	apt-get,	grub-install,	with--usr,	fstab-without-usr,	not-sep-usr,	standard,	not-far,	notbiosboot, /mnt/boot-sav/sda2.
sda3	: sda,	not-sepboot,	grubenv-ok	grub2,	grub-pc ,	update-grub,	64,	with-boot,	is-os,	not--efi--part,	fstab-without-boot,	fstab-without-efi,	no-nt,	no-winload,	no-recov-nor-hid,	no-bmgr,	notwinboot,	apt-get,	grub-install,	with--usr,	fstab-without-usr,	not-sep-usr,	standard,	farbios,	notbiosboot, /mnt/boot-sav/sda3.
sdb1	: sdb,	not-sepboot,	no-grubenv	nogrub,	no-docgrub,	no-update-grub,	32,	no-boot,	no-os,	is-correct-EFI,	part-has-no-fstab,	part-has-no-fstab,	no-nt,	no-winload,	no-recov-nor-hid,	no-bmgr,	notwinboot,	nopakmgr,	nogrubinstall,	no---usr,	part-has-no-fstab,	not-sep-usr,	standard,	not-far,	notbiosboot, /boot/efi.
sdb4	: sdb,	not-sepboot,	grubenv-ok	grub2,	grub-pc ,	update-grub,	64,	with-boot,	is-os,	not--efi--part,	fstab-without-boot,	fstab-without-efi,	no-nt,	no-winload,	no-recov-nor-hid,	no-bmgr,	notwinboot,	apt-get,	grub-install,	with--usr,	fstab-without-usr,	not-sep-usr,	standard,	not-far,	notbiosboot, /mnt/boot-sav/sdb4.
sdb5	: sdb,	not-sepboot,	no-grubenv	nogrub,	no-docgrub,	no-update-grub,	32,	no-boot,	no-os,	not--efi--part,	part-has-no-fstab,	part-has-no-fstab,	no-nt,	no-winload,	no-recov-nor-hid,	no-bmgr,	notwinboot,	nopakmgr,	nogrubinstall,	no---usr,	part-has-no-fstab,	not-sep-usr,	standard,	not-far,	notbiosboot, /mnt/boot-sav/sdb5.

sdb	: GPT,	BIOS_boot,	has-correctEFI, 	usb-disk,	not-mmc, has-os,	2048 sectors * 512 bytes
sda	: not-GPT,	BIOSboot-not-needed,	has-no-EFIpart, 	not-usb,	not-mmc, has-os,	2048 sectors * 512 bytes


=================== parted -lm:

BYT;
/dev/sda:120GB:scsi:512:512:msdos:ATA LDLC;
1:1049kB:28.9GB:28.9GB:ntfs::boot;
2:28.9GB:85.9GB:57.1GB:ext4::;
3:85.9GB:120GB:34.1GB:ext4::;

Error: The backup GPT table is corrupt, but the primary appears OK, so that will be used.
BYT;
/dev/sdb:63.2GB:scsi:512:512:gpt: USB DISK 3.0;
5:1049kB:17.2GB:17.2GB:fat32::msftdata;
1:17.2GB:17.6GB:419MB:fat32::boot;
2:17.6GB:18.1GB:524MB:::bios_grub;
3:18.1GB:40.7GB:22.5GB:ext4::;
4:40.7GB:63.2GB:22.5GB:ext4::;

=================== lsblk:
KNAME TYPE FSTYPE   SIZE LABEL
sda   disk        111,8G
sda1  part ntfs    26,9G windows-7-del
sda2  part ext4    53,2G fusion-14._dell
sda3  part ext4    31,8G ubuntu-18.04_del
sdb   disk         58,9G
sdb1  part vfat     400M
sdb2  part          500M
sdb3  part ext4      21G xubuntu-efi
sdb4  part ext4      21G SB@
sdb5  part vfat      16G test-multi
sr0   rom          1024M

KNAME ROTA RO RM STATE   MOUNTPOINT
sda      0  0  0 running
sda1     0  0  0         /mnt/boot-sav/sda1
sda2     0  0  0         /mnt/boot-sav/sda2
sda3     0  0  0         /mnt/boot-sav/sda3
sdb      1  0  1 running
sdb1     1  0  1         /boot/efi
sdb2     1  0  1
sdb3     1  0  1         /
sdb4     1  0  1         /mnt/boot-sav/sdb4
sdb5     1  0  1         /mnt/boot-sav/sdb5
sr0      1  0  1 running


=================== mount:
/dev/sdb3 on / type ext4 (rw,errors=remount-ro)
proc on /proc type proc (rw,noexec,nosuid,nodev)
sysfs on /sys type sysfs (rw,noexec,nosuid,nodev)
none on /sys/fs/cgroup type tmpfs (rw)
none on /sys/fs/fuse/connections type fusectl (rw)
none on /sys/kernel/debug type debugfs (rw)
none on /sys/kernel/security type securityfs (rw)
none on /sys/firmware/efi/efivars type efivarfs (rw)
udev on /dev type devtmpfs (rw,mode=0755)
devpts on /dev/pts type devpts (rw,noexec,nosuid,gid=5,mode=0620)
tmpfs on /run type tmpfs (rw,noexec,nosuid,size=10%,mode=0755)
none on /run/lock type tmpfs (rw,noexec,nosuid,nodev,size=5242880)
none on /run/shm type tmpfs (rw,nosuid,nodev)
none on /run/user type tmpfs (rw,noexec,nosuid,nodev,size=104857600,mode=0755)
none on /sys/fs/pstore type pstore (rw)
/dev/sdb1 on /boot/efi type vfat (rw)
systemd on /sys/fs/cgroup/systemd type cgroup (rw,noexec,nosuid,nodev,none,name=systemd)
gvfsd-fuse on /run/user/1000/gvfs type fuse.gvfsd-fuse (rw,nosuid,nodev,user=bernard)
/dev/sda1 on /mnt/boot-sav/sda1 type fuseblk (rw,nosuid,nodev,allow_other,blksize=4096)
/dev/sda2 on /mnt/boot-sav/sda2 type ext4 (rw)
/dev/sda3 on /mnt/boot-sav/sda3 type ext4 (rw)
/dev/sdb4 on /mnt/boot-sav/sdb4 type ext4 (rw)
/dev/sdb5 on /mnt/boot-sav/sdb5 type vfat (rw)


=================== ls:
/sys/block/sda (filtered):  alignment_offset bdi capability dev device discard_alignment events events_async events_poll_msecs ext_range holders inflight power queue range removable ro sda1 sda2 sda3 size slaves stat subsystem trace uevent
/sys/block/sdb (filtered):  alignment_offset bdi capability dev device discard_alignment events events_async events_poll_msecs ext_range holders inflight power queue range removable ro sdb1 sdb2 sdb3 sdb4 sdb5 size slaves stat subsystem trace uevent
/sys/block/sr0 (filtered):  alignment_offset bdi capability dev device discard_alignment events events_async events_poll_msecs ext_range holders inflight power queue range removable ro size slaves stat subsystem trace uevent
/dev (filtered):  agpgart autofs block bsg btrfs-control bus cdrom char console core cpu cpu_dma_latency cuse disk dri ecryptfs fb0 fd full fuse hidraw0 hpet input kmsg kvm log mapper mcelog mei mem net network_latency network_throughput null port ppp psaux ptmx pts random rfkill rtc rtc0 sda sda1 sda2 sda3 sdb sdb1 sdb2 sdb3 sdb4 sdb5 sg0 sg1 sg2 shm snapshot snd sr0 stderr stdin stdout uhid uinput urandom v4l vga_arbiter vhci vhost-net video0 watchdog watchdog0 zero
ls /dev/mapper:  control

=================== hexdump -n512 -C /dev/sda1
00000000  eb 52 90 4e 54 46 53 20  20 20 20 00 02 08 00 00  |.R.NTFS    .....|
00000010  00 00 00 00 00 f8 00 00  3f 00 ff 00 00 08 00 00  |........?.......|
00000020  00 00 00 00 80 00 80 00  fd 4f 5c 03 00 00 00 00  |.........O.....|
00000030  00 00 0c 00 00 00 00 00  02 00 00 00 00 00 00 00  |................|
00000040  f6 00 00 00 01 00 00 00  37 cf c5 2a 15 c6 2a fa  |........7..*..*.|
00000050  00 00 00 00 fa 33 c0 8e  d0 bc 00 7c fb 68 c0 07  |.....3.....|.h..|
00000060  1f 1e 68 66 00 cb 88 16  0e 00 66 81 3e 03 00 4e  |..hf......f.>..N|
00000070  54 46 53 75 15 b4 41 bb  aa 55 cd 13 72 0c 81 fb  |TFSu..A..U..r...|
00000080  55 aa 75 06 f7 c1 01 00  75 03 e9 dd 00 1e 83 ec  |U.u.....u.......|
00000090  18 68 1a 00 b4 48 8a 16  0e 00 8b f4 16 1f cd 13  |.h...H..........|
000000a0  9f 83 c4 18 9e 58 1f 72  e1 3b 06 0b 00 75 db a3  |.....X.r.;...u..|
000000b0  0f 00 c1 2e 0f 00 04 1e  5a 33 db b9 00 20 2b c8  |........Z3... +.|
000000c0  66 ff 06 11 00 03 16 0f  00 8e c2 ff 06 16 00 e8  |f...............|
000000d0  4b 00 2b c8 77 ef b8 00  bb cd 1a 66 23 c0 75 2d  |K.+.w......f#.u-|
000000e0  66 81 fb 54 43 50 41 75  24 81 f9 02 01 72 1e 16  |f..TCPAu$....r..|
000000f0  68 07 bb 16 68 70 0e 16  68 09 00 66 53 66 53 66  |h...hp..h..fSfSf|
00000100  55 16 16 16 68 b8 01 66  61 0e 07 cd 1a 33 c0 bf  |U...h..fa....3..|
00000110  28 10 b9 d8 0f fc f3 aa  e9 5f 01 90 90 66 60 1e  |(........_...f`.|
00000120  06 66 a1 11 00 66 03 06  1c 00 1e 66 68 00 00 00  |.f...f.....fh...|
00000130  00 66 50 06 53 68 01 00  68 10 00 b4 42 8a 16 0e  |.fP.Sh..h...B...|
00000140  00 16 1f 8b f4 cd 13 66  59 5b 5a 66 59 66 59 1f  |.......fY[ZfYfY.|
00000150  0f 82 16 00 66 ff 06 11  00 03 16 0f 00 8e c2 ff  |....f...........|
00000160  0e 16 00 75 bc 07 1f 66  61 c3 a0 f8 01 e8 09 00  |...u...fa.......|
00000170  a0 fb 01 e8 03 00 f4 eb  fd b4 01 8b f0 ac 3c 00  |..............<.|
00000180  74 09 b4 0e bb 07 00 cd  10 eb f2 c3 0d 0a 41 20  |t.............A |
00000190  64 69 73 6b 20 72 65 61  64 20 65 72 72 6f 72 20  |disk read error |
000001a0  6f 63 63 75 72 72 65 64  00 0d 0a 42 4f 4f 54 4d  |occurred...BOOTM|
000001b0  47 52 20 69 73 20 6d 69  73 73 69 6e 67 00 0d 0a  |GR is missing...|
000001c0  42 4f 4f 54 4d 47 52 20  69 73 20 63 6f 6d 70 72  |BOOTMGR is compr|
000001d0  65 73 73 65 64 00 0d 0a  50 72 65 73 73 20 43 74  |essed...Press Ct|
000001e0  72 6c 2b 41 6c 74 2b 44  65 6c 20 74 6f 20 72 65  |rl+Alt+Del to re|
000001f0  73 74 61 72 74 0d 0a 00  8c a9 be d6 00 00 55 aa  |start.........U.|
00000200

=================== hexdump -n512 -C /dev/sdb1
00000000  eb 58 90 6d 6b 66 73 2e  66 61 74 00 02 08 20 00  |.X.mkfs.fat... .|
00000010  02 00 00 00 00 f8 00 00  20 00 40 00 00 70 00 02  |........ .@..p..|
00000020  00 80 0c 00 1f 03 00 00  00 00 00 00 02 00 00 00  |................|
00000030  01 00 06 00 00 00 00 00  00 00 00 00 00 00 00 00  |................|
00000040  80 01 29 43 e0 c8 92 20  20 20 20 20 20 20 20 20  |..)C...         |
00000050  20 20 46 41 54 33 32 20  20 20 0e 1f be 77 7c ac  |  FAT32   ...w|.|
00000060  22 c0 74 0b 56 b4 0e bb  07 00 cd 10 5e eb f0 32  |".t.V.......^..2|
00000070  e4 cd 16 cd 19 eb fe 54  68 69 73 20 69 73 20 6e  |.......This is n|
00000080  6f 74 20 61 20 62 6f 6f  74 61 62 6c 65 20 64 69  |ot a bootable di|
00000090  73 6b 2e 20 20 50 6c 65  61 73 65 20 69 6e 73 65  |sk.  Please inse|
000000a0  72 74 20 61 20 62 6f 6f  74 61 62 6c 65 20 66 6c  |rt a bootable fl|
000000b0  6f 70 70 79 20 61 6e 64  0d 0a 70 72 65 73 73 20  |oppy and..press |
000000c0  61 6e 79 20 6b 65 79 20  74 6f 20 74 72 79 20 61  |any key to try a|
000000d0  67 61 69 6e 20 2e 2e 2e  20 0d 0a 00 00 00 00 00  |gain ... .......|
000000e0  00 00 00 00 00 00 00 00  00 00 00 00 00 00 00 00  |................|
*
000001f0  00 00 00 00 00 00 00 00  00 00 00 00 00 00 55 aa  |..............U.|
00000200

=================== hexdump -n512 -C /dev/sdb5
00000000  eb 58 90 6d 6b 66 73 2e  66 61 74 00 02 20 20 00  |.X.mkfs.fat..  .|
00000010  02 00 00 00 00 f8 00 00  20 00 40 00 00 08 00 00  |........ .@.....|
00000020  00 68 00 02 03 20 00 00  00 00 00 00 02 00 00 00  |.h... ..........|
00000030  01 00 06 00 00 00 00 00  00 00 00 00 00 00 00 00  |................|
00000040  80 01 29 6b 36 69 06 74  65 73 74 2d 6d 75 6c 74  |..)k6i.test-mult|
00000050  69 20 46 41 54 33 32 20  20 20 0e 1f be 77 7c ac  |i FAT32   ...w|.|
00000060  22 c0 74 0b 56 b4 0e bb  07 00 cd 10 5e eb f0 32  |".t.V.......^..2|
00000070  e4 cd 16 cd 19 eb fe 54  68 69 73 20 69 73 20 6e  |.......This is n|
00000080  6f 74 20 61 20 62 6f 6f  74 61 62 6c 65 20 64 69  |ot a bootable di|
00000090  73 6b 2e 20 20 50 6c 65  61 73 65 20 69 6e 73 65  |sk.  Please inse|
000000a0  72 74 20 61 20 62 6f 6f  74 61 62 6c 65 20 66 6c  |rt a bootable fl|
000000b0  6f 70 70 79 20 61 6e 64  0d 0a 70 72 65 73 73 20  |oppy and..press |
000000c0  61 6e 79 20 6b 65 79 20  74 6f 20 74 72 79 20 61  |any key to try a|
000000d0  67 61 69 6e 20 2e 2e 2e  20 0d 0a 00 00 00 00 00  |gain ... .......|
000000e0  00 00 00 00 00 00 00 00  00 00 00 00 00 00 00 00  |................|
*
000001f0  00 00 00 00 00 00 00 00  00 00 00 00 00 00 55 aa  |..............U.|
00000200

WARNING: GPT (GUID Partition Table) detected on '/dev/sdb'! The util fdisk doesn't support GPT. Use GNU Parted.


=================== df -Th:

Filesystem     Type      Size  Used Avail Use% Mounted on
/dev/sdb3      ext4       21G  4.2G   16G  22% /
none           tmpfs     4.0K     0  4.0K   0% /sys/fs/cgroup
udev           devtmpfs  1.9G   12K  1.9G   1% /dev
tmpfs          tmpfs     376M  1.2M  375M   1% /run
none           tmpfs     5.0M     0  5.0M   0% /run/lock
none           tmpfs     1.9G   80K  1.9G   1% /run/shm
none           tmpfs     100M   24K  100M   1% /run/user
/dev/sdb1      vfat      400M  4.7M  395M   2% /boot/efi
/dev/sda1      fuseblk    27G   25G  2.2G  93% /mnt/boot-sav/sda1
/dev/sda2      ext4       53G   28G   22G  57% /mnt/boot-sav/sda2
/dev/sda3      ext4       32G   25G  5.3G  83% /mnt/boot-sav/sda3
/dev/sdb4      ext4       21G   17G  2.7G  87% /mnt/boot-sav/sdb4
/dev/sdb5      vfat       17G   15G  1.6G  91% /mnt/boot-sav/sdb5

=================== fdisk -l:

Disk /dev/sda: 120.0 GB, 120034123776 bytes
255 heads, 63 sectors/track, 14593 cylinders, total 234441648 sectors
Units = sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disk identifier: 0x00040603

Device Boot      Start         End      Blocks   Id  System
/dev/sda1   *        2048    56383487    28190720    7  HPFS/NTFS/exFAT
/dev/sda2        56383488   167847935    55732224   83  Linux
/dev/sda3       167847936   234441647    33296856   83  Linux

Disk /dev/sdb: 63.2 GB, 63216549888 bytes
255 heads, 63 sectors/track, 7685 cylinders, total 123469824 sectors
Units = sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disk identifier: 0x00000000

Device Boot      Start         End      Blocks   Id  System
/dev/sdb1               1   123469823    61734911+  ee  GPT



** (zenity:10858): WARNING **: Couldn't connect to accessibility bus: Failed to connect to socket /tmp/dbus-bd2atJg22O: Connexion refusée
User choice: Est-ce que sdb (gpt) est un disque amovible ? yes




=================== Suggested repair
The default repair of the Boot-Repair utility would purge (in order to fix packages) and reinstall the grub2 of sdb3 into the MBR of sdb.
It would also fix access to other systems (other MBRs) for the situations when the removable media is disconnected.
Grub-efi would not be selected by default because: no-win-efi
Additional repair would be performed: unhide-bootmenu-10s


=================== Advice in case of suggested repair
EFI détecté. Vous souhaiterez peut-être ré-essayer après avoir activé l'option [Partition /boot/efi séparée :].
Voulez-vous continuer ?


=================== Final advice in case of suggested repair
N'oubliez pas de régler votre BIOS pour qu'il amorce sur le disque amovible ! Veuillez désactiver SecureBoot dans le BIOS.


=================== User settings
The settings chosen by the user will not act on the boot.

utilisation du script; contenu de la fenêtre Yad;

  =================== Mode UEFI/Legacy


=================== Partition EFI


=================== OS détecté par os-prober


=================== Partition(s) avec OS


=================== Contenu de /etc/fstab
UUID=041cfc74-96e1-4c0f-ad6f-61ae768a1a3c   /   ext4   noatime,errors=remount-ro   0   1
====================== sda2/boot/extlinux/extlinux.conf: =======================
default l0
prompt 1
timeout 50
include themes/debian/theme.cfg
UUID=5a6ea26b-1d35-48fd-902d-5b78a7c8b64e   /   ext4   noatime,errors=remount-ro   0   1

=================== UUID blkid
Device           UUID                                   TYPE       LABEL
/dev/sda1        FA2AC6152AC5CF37                       ntfs       windows-7-del
/dev/sda2        041cfc74-96e1-4c0f-ad6f-61ae768a1a3c   ext4       fusion-14._dell
/dev/sda3        5a6ea26b-1d35-48fd-902d-5b78a7c8b64e   ext4       ubuntu-18.04_del
/dev/sdb1        92C8-E043                              vfat       
/dev/sdb3        72a66c99-76c9-420b-b133-77d8811a67f5   ext4       xubuntu-efi
/dev/sdb4        cb4fb6ab-daa4-405d-a278-99d4c4ca5e63   ext4       SB@
/dev/sdb5        0669-366B                              vfat       test-multi

=================== Type de disque et partition

Édit.

Je vais refaire la manip avec les PPA du boot info à jour.


@+.   Babdu89   .

Dernière modification par Babdu89 (Le 20/04/2020, à 09:36)


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

Hors ligne

#12 Le 20/04/2020, à 08:53

ar barzh paour

Re : [Script] Synthèse rapport boot

un extrait du rapport est là attention il y en a deux , je ne sais plus lequel j'ai utilisé
(post 30 et 31)
https://forum.ubuntu-fr.org/viewtopic.p … #p22257080

peut-être que le fichier source est corrompu

si j'ai un moment je refait un boot-info et je te donne le résultat ( j'hésite car cela me donne un problème logiciel)
néanmoins comme je l'ai dit un cat du fichier me donnait un résultat correct

Dernière modification par ar barzh paour (Le 20/04/2020, à 08:58)


PC          : B760M DS3H DDR4,  12th Gen Intel(R) Core(TM) i3-12100, RAM DDR4 8GiB -2400 Ubuntu 22.04, 22.04, 23.04
Portable1 : Intel(R) Core(TM)2 Duo CPU     T6570  @ 2.10GHz RAM 4GiB DDR2 667 MHz Ubuntu 23.04 ( en voyage )
Portable2 : T5750  @ 2.00GHz RAM 1GiB DDR2 667 Mhz Ubuntu 20.04 ( batterie HS )
stourm a ran war bep tachenn (Angela Duval) ( Je combats sur tous les fronts )

Hors ligne

#13 Le 20/04/2020, à 09:29

LukePerp

Re : [Script] Synthèse rapport boot

merci les gars, vos rapports mettent en évidence des anomalies dans mon script, je vais corriger ça smile
Baddu : je ne sais pas, montres moi un rapport avec des partitions crypté et je verrai bien


Desktop & Laptop - Ubuntu Mate dernière LTS - Intel i5 - 16 Go - Dual boot Windows offline

Hors ligne

#14 Le 20/04/2020, à 09:39

Babdu89

Re : [Script] Synthèse rapport boot

LukePerp a écrit :

merci les gars, vos rapports mettent en évidence des anomalies dans mon script, je vais corriger ça smile
Baddu : je ne sais pas, montres moi un rapport avec des partitions crypté et je verrai bien

Pour çà, il va falloir fouiller dans des demandes d'aide, je n'ai pas çà sous la main.
Je ne serais pas étonné que malbo s'intéresse nà ce sujet, lui qui est friand de boot info. wink

@+.   Babdu89   .


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

Hors ligne

#15 Le 20/04/2020, à 09:51

ar barzh paour

Re : [Script] Synthèse rapport boot

voilà j'ai refait un boot-info , je n'arrive toujours pas à avoir un lien mais le rapport est là

 Boot Info Script 71f6c5c + Boot-Repair extra info      [Boot-Info 16mar2020]


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

 => 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 (,msdos2)/boot/grub. It also embeds following components:
    
    modules
    ---------------------------------------------------------------------------
    fshelp ext2 part_msdos biosdisk
    ---------------------------------------------------------------------------
 => Grub2 (v2.00) is installed in the MBR of /dev/sdb and looks at sector 1 of 
    the same hard drive for core.img. core.img is at this location and looks 
    for (,msdos5)/boot/grub. It also embeds following components:
    
    modules
    ---------------------------------------------------------------------------
    fshelp ext2 part_msdos biosdisk
    ---------------------------------------------------------------------------
 => Grub2 (v2.00) is installed in the MBR of /dev/sdc and looks at sector 1 of 
    the same hard drive for core.img. core.img is at this location and looks 
    for (,msdos11)/boot/grub. It also embeds following components:
    
    modules
    ---------------------------------------------------------------------------
    fshelp ext2 part_msdos biosdisk
    ---------------------------------------------------------------------------
 => Grub2 (v2.00) is installed in the MBR of /dev/sdd and looks at sector 1 of 
    the same hard drive for core.img. core.img is at this location and looks 
    for (,msdos1)/boot/grub. It also embeds following components:
    
    modules
    ---------------------------------------------------------------------------
    fshelp ext2 part_msdos biosdisk
    ---------------------------------------------------------------------------
 => No boot loader is installed in the MBR of /dev/sde.

sda1: __________________________________________________________________________

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

sda2: __________________________________________________________________________

    File system:       ext4
    Boot sector type:  Grub2 (v1.99-2.00)
    Boot sector info:  Grub2 (v1.99-2.00) is installed in the boot sector of 
                       sda2 and looks at sector 938189065 of the same hard 
                       drive for core.img, but core.img can not be found at 
                       this location.
    Operating System:  Ubuntu 18.04.4 LTS
    Boot files:        /boot/grub/grub.cfg /etc/fstab 
                       /boot/grub/i386-pc/core.img

sda3: __________________________________________________________________________

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

sda4: __________________________________________________________________________

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

sda5: __________________________________________________________________________

    File system:       ext4
    Boot sector type:  Grub2 (v1.99-2.00)
    Boot sector info:  Grub2 (v2.00) is installed in the boot sector of sda5 
                       and looks at sector 1197941944 of the same hard drive 
                       for core.img. core.img is at this location and looks 
                       for (,msdos5)/boot/grub. It also embeds following 
                       components:
                       
                       modules
                       -------------------------------------------------------
                       fshelp ext2 part_msdos biosdisk
                       -------------------------------------------------------
    Operating System:  Ubuntu 14.04.5 LTS
    Boot files:        /etc/fstab /boot/grub/i386-pc/core.img

sda6: __________________________________________________________________________

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

sda7: __________________________________________________________________________

    File system:       ext4
    Boot sector type:  Grub2 (v1.99-2.00)
    Boot sector info:  Grub2 (v2.00) is installed in the boot sector of sda7 
                       and looks at sector 1296283544 of the same hard drive 
                       for core.img. core.img is at this location and looks 
                       for (,msdos7)/boot/grub. It also embeds following 
                       components:
                       
                       modules
                       -------------------------------------------------------
                       fshelp ext2 part_msdos biosdisk
                       -------------------------------------------------------
    Operating System:  Ubuntu 16.04.5 LTS
    Boot files:        /etc/fstab /boot/grub/i386-pc/core.img

sda8: __________________________________________________________________________

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

sda9: __________________________________________________________________________

    File system:       ext4
    Boot sector type:  Grub2 (v1.99-2.00)
    Boot sector info:  Grub2 (v2.00) is installed in the boot sector of sda9 
                       and looks at sector 1365350560 of the same hard drive 
                       for core.img. core.img is at this location and looks 
                       for (,msdos9)/boot/grub. It also embeds following 
                       components:
                       
                       modules
                       -------------------------------------------------------
                       fshelp ext2 part_msdos biosdisk
                       -------------------------------------------------------
    Operating System:  Ubuntu 16.04.6 LTS
    Boot files:        /etc/fstab /boot/grub/i386-pc/core.img

sda10: _________________________________________________________________________

    File system:       ext4
    Boot sector type:  Grub2 (v1.99-2.00)
    Boot sector info:  Grub2 (v1.99-2.00) is installed in the boot sector of 
                       sda10 and looks at sector 1400453248 of the same hard 
                       drive for core.img, but core.img can not be found at 
                       this location.
    Operating System:  Ubuntu 16.04.6 LTS
    Boot files:        /etc/fstab

sda11: _________________________________________________________________________

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

sda12: _________________________________________________________________________

    File system:       ext4
    Boot sector type:  Grub2 (v1.99-2.00)
    Boot sector info:  Grub2 (v2.00) is installed in the boot sector of 
                       sda12 and looks at sector 1490986680 of the same hard 
                       drive for core.img. core.img is at this location and 
                       looks for (,msdos12)/boot/grub. It also embeds 
                       following components:
                       
                       modules
                       -------------------------------------------------------
                       fshelp ext2 part_msdos biosdisk
                       -------------------------------------------------------
    Operating System:  Ubuntu 16.04.5 LTS
    Boot files:        /etc/fstab /boot/grub/i386-pc/core.img

sda13: _________________________________________________________________________

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

sda14: _________________________________________________________________________

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

sda15: _________________________________________________________________________

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

sda16: _________________________________________________________________________

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

sda17: _________________________________________________________________________

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

sdb1: __________________________________________________________________________

    File system:       ntfs
    Boot sector type:  Windows 2000/XP: NTFS
    Boot sector info:  No errors found in the Boot Parameter Block.
    Operating System:  Windows XP
    Boot files:        /boot.ini /ntldr /NTDETECT.COM

sdb2: __________________________________________________________________________

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

sdb3: __________________________________________________________________________

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

sdb4: __________________________________________________________________________

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

sdb5: __________________________________________________________________________

    File system:       ext4
    Boot sector type:  Grub2 (v1.99-2.00)
    Boot sector info:  Grub2 (v2.00) is installed in the boot sector of sdb5 
                       and looks at sector 1936474080 of the same hard drive 
                       for core.img. core.img is at this location and looks 
                       for (,msdos11)/boot/grub. It also embeds following 
                       components:
                       
                       modules
                       -------------------------------------------------------
                       fshelp ext2 part_msdos biosdisk
                       -------------------------------------------------------
    Operating System:  Ubuntu 16.04.6 LTS
    Boot files:        /boot/grub/grub.cfg /etc/fstab 
                       /boot/grub/i386-pc/core.img

sdb6: __________________________________________________________________________

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

sdb7: __________________________________________________________________________

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

sdb8: __________________________________________________________________________

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

sdb9: __________________________________________________________________________

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

sdb10: _________________________________________________________________________

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

sdb11: _________________________________________________________________________

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

sdc1: __________________________________________________________________________

    File system:       ntfs
    Boot sector type:  Windows 2000/XP: NTFS
    Boot sector info:  According to the info in the boot sector, sdc1 starts 
                       at sector 63. But according to the info from fdisk, 
                       sdc1 starts at sector 2048.
    Operating System:  Windows XP
    Boot files:        /boot.ini /ntldr /NTDETECT.COM

sdc2: __________________________________________________________________________

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

sdc5: __________________________________________________________________________

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

sdc6: __________________________________________________________________________

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

sdc7: __________________________________________________________________________

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

sdc8: __________________________________________________________________________

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

sdc9: __________________________________________________________________________

    File system:       ext4
    Boot sector type:  Grub2 (v1.99-2.00)
    Boot sector info:  Grub2 (v2.00) is installed in the boot sector of sdc9 
                       and looks at sector 1423464656 of the same hard drive 
                       for core.img. core.img is at this location and looks 
                       for (,msdos9)/boot/grub. It also embeds following 
                       components:
                       
                       modules
                       -------------------------------------------------------
                       fshelp ext2 part_msdos biosdisk
                       -------------------------------------------------------
    Operating System:  Ubuntu 17.04
    Boot files:        /etc/fstab /boot/grub/i386-pc/core.img

sdc10: _________________________________________________________________________

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

sdc11: _________________________________________________________________________

    File system:       ext4
    Boot sector type:  -
    Boot sector info: 
    Operating System:  Ubuntu 18.04.4 LTS
    Boot files:        /boot/grub/grub.cfg /etc/fstab 
                       /boot/grub/i386-pc/core.img

sdc12: _________________________________________________________________________

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

sdc13: _________________________________________________________________________

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

sdc14: _________________________________________________________________________

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

sdd1: __________________________________________________________________________

    File system:       ext4
    Boot sector type:  -
    Boot sector info: 
    Operating System:  Ubuntu 18.04.4 LTS
    Boot files:        /boot/grub/grub.cfg /etc/fstab 
                       /boot/grub/i386-pc/core.img

sdd2: __________________________________________________________________________

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

sdd3: __________________________________________________________________________

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

sdd5: __________________________________________________________________________

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

sdd6: __________________________________________________________________________

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

sde1: __________________________________________________________________________

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

sde2: __________________________________________________________________________

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

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

Drive: sda _____________________________________________________________________
Disk /dev/sda: 931.5 GiB, 1000204886016 bytes, 1953525168 sectors
Units: sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 4096 bytes
I/O size (minimum/optimal): 4096 bytes / 4096 bytes
Disklabel type: dos

Partition  Boot  Start Sector    End Sector  # of Sectors  Id System

/dev/sda1    *             63   781,417,664   781,417,602  83 Linux
/dev/sda2         781,417,665   976,767,274   195,349,610  83 Linux
/dev/sda3         976,768,065 1,172,118,464   195,350,400  83 Linux
/dev/sda4       1,172,121,598 1,953,525,167   781,403,570   5 Extended
/dev/sda5       1,172,121,600 1,213,082,537    40,960,938  83 Linux
/dev/sda6       1,213,083,648 1,228,707,839    15,624,192  82 Linux swap / Solaris
/dev/sda7       1,228,709,888 1,331,110,278   102,400,391  83 Linux
/dev/sda8       1,331,111,936 1,344,782,335    13,670,400  82 Linux swap / Solaris
/dev/sda9       1,344,784,384 1,387,397,665    42,613,282  83 Linux
/dev/sda10      1,387,399,168 1,469,319,167    81,920,000  83 Linux
/dev/sda11      1,469,321,216 1,481,609,215    12,288,000  83 Linux
/dev/sda12      1,481,613,312 1,510,899,711    29,286,400  83 Linux
/dev/sda13      1,510,901,760 1,541,621,759    30,720,000  83 Linux
/dev/sda14      1,541,623,808 1,562,103,807    20,480,000  83 Linux
/dev/sda15      1,562,105,856 1,582,585,855    20,480,000  83 Linux
/dev/sda16      1,582,587,904 1,674,506,239    91,918,336  83 Linux
/dev/sda17      1,695,234,048 1,913,749,503   218,515,456  83 Linux


Drive: sdb _____________________________________________________________________
Disk /dev/sdb: 931.5 GiB, 1000204886016 bytes, 1953525168 sectors
Units: sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 4096 bytes
I/O size (minimum/optimal): 4096 bytes / 4096 bytes
Disklabel type: dos

Partition  Boot  Start Sector    End Sector  # of Sectors  Id System

/dev/sdb1    *             63    16,386,047    16,385,985   7 NTFS / exFAT / HPFS
/dev/sdb2          16,386,048   129,026,047   112,640,000   7 NTFS / exFAT / HPFS
/dev/sdb3         129,026,048   377,509,887   248,483,840  83 Linux
/dev/sdb4         377,511,496 1,953,523,850 1,576,012,355   5 Extended
/dev/sdb5         377,513,984   438,953,983    61,440,000  83 Linux
/dev/sdb6         438,956,032   455,340,031    16,384,000  82 Linux swap / Solaris
/dev/sdb7         455,342,080 1,294,202,879   838,860,800  83 Linux
/dev/sdb8       1,294,204,928 1,713,635,327   419,430,400  83 Linux
/dev/sdb9       1,713,637,376 1,726,220,287    12,582,912  83 Linux
/dev/sdb10      1,726,222,336 1,778,651,135    52,428,800  83 Linux
/dev/sdb11      1,778,653,184 1,799,624,703    20,971,520  83 Linux


Drive: sdc _____________________________________________________________________
Disk /dev/sdc: 931.5 GiB, 1000204886016 bytes, 1953525168 sectors
Units: sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 4096 bytes
I/O size (minimum/optimal): 4096 bytes / 4096 bytes
Disklabel type: dos

Partition  Boot  Start Sector    End Sector  # of Sectors  Id System

/dev/sdc1    *          2,048    81,922,047    81,920,000   7 NTFS / exFAT / HPFS
/dev/sdc2          81,924,094 1,953,523,711 1,871,599,618   5 Extended
/dev/sdc5          81,924,096   920,784,895   838,860,800  83 Linux
/dev/sdc6         920,786,944 1,340,217,343   419,430,400  83 Linux
/dev/sdc7       1,340,219,392 1,381,180,329    40,960,938  83 Linux
/dev/sdc8       1,381,181,440 1,393,469,439    12,288,000  83 Linux
/dev/sdc9       1,393,471,488 1,473,438,284    79,966,797  83 Linux
/dev/sdc10      1,473,439,744 1,481,828,351     8,388,608  82 Linux swap / Solaris
/dev/sdc11      1,481,830,400 1,543,269,853    61,439,454  83 Linux
/dev/sdc12      1,543,272,448 1,651,998,719   108,726,272   7 NTFS / exFAT / HPFS
/dev/sdc13      1,669,294,080 1,721,542,655    52,248,576  83 Linux
/dev/sdc14      1,721,544,704 1,742,516,223    20,971,520  83 Linux


Drive: sdd _____________________________________________________________________
Disk /dev/sdd: 232.9 GiB, 250059350016 bytes, 488397168 sectors
Units: sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disklabel type: dos

Partition  Boot  Start Sector    End Sector  # of Sectors  Id System

/dev/sdd1    *             63    81,400,453    81,400,391  83 Linux
/dev/sdd2          81,401,856   110,696,447    29,294,592  83 Linux
/dev/sdd3         110,698,494   488,396,799   377,698,306   5 Extended
/dev/sdd5         110,698,496   130,228,223    19,529,728  83 Linux
/dev/sdd6         130,230,272   488,396,799   358,166,528  83 Linux


Drive: sde _____________________________________________________________________
Disk /dev/sde: 465.8 GiB, 500107862016 bytes, 976773168 sectors
Units: sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disklabel type: gpt

Partition  Boot  Start Sector    End Sector  # of Sectors  Id System

/dev/sde1                   1   976,773,167   976,773,167  ee GPT


GUID Partition Table detected.

Partition  Attrs   Start Sector    End Sector  # of Sectors System
/dev/sde1                 2,048     1,050,623     1,048,576 EFI System partition
/dev/sde2             1,050,624   976,771,071   975,720,448 Data partition (Linux)

Attributes: R=Required, N=No Block IO, B=Legacy BIOS Bootable, +=More bits set

"blkid" output: ________________________________________________________________

Device           UUID                                   TYPE       LABEL

/dev/loop0                                                         
/dev/sda1        f028ddf3-d3d9-49fa-a32f-e824801e87f0   ext4       film
/dev/sda10       21a7fb42-ce7c-47c3-a77c-e55dc3e12590   ext4       U16.04-P10-64b
/dev/sda11       70d8a884-f9b4-4c50-929a-cb2a02cbbcaf   ext4       ex-SH
/dev/sda12       cb9be900-e560-4c86-aa5c-8842b40fee00   ext4       M16.04-a12-64b
/dev/sda13       5081bcb8-8e05-4c14-bf04-478ff7bded31   ext4       h_SDD
/dev/sda14       20d009b8-7e01-4436-8292-95c98fdd333e   ext4       v_SDD
/dev/sda15       fa6b6015-f2a6-4d58-b865-2cd12ea8cc76   ext4       Solf
/dev/sda16       85dacada-76e8-4e54-913f-c5af400267bf   ext4       ISOS
/dev/sda17       c1ea4721-a093-41b2-ab34-1246fbec4b84   ext4       filmJPL
/dev/sda2        adb3563a-ddba-4f75-8e82-7df3e3d2a4a5   ext4       U18.04-a2-64b
/dev/sda3        7ff4db04-1b96-4084-9e98-2902fba48e97   ext4       les-homes
/dev/sda5        ed6801f3-ddfe-46ff-b3e9-83219cd58ca9   ext4       U14.04-a5-64b
/dev/sda6        81b7d41d-574c-4d4b-8740-3e6c55400674   swap       
/dev/sda7        c63335c7-be09-4782-978c-dff6cce2be94   ext4       U16.04-a7-32b
/dev/sda8        a1516336-9bb7-4c9f-b63e-9cab2d58e8f1   swap       
/dev/sda9        d4b0b586-0b8e-457e-b492-78c272d1954f   ext4       X16.04-a9-32b
/dev/sdb1        0AF8F8ED4E45274B                       ntfs       XP-b1
/dev/sdb10       08182cdd-01b5-4fc4-a869-6d22bc24adf4   ext4       s-home_SDD
/dev/sdb11       d4c029f2-c83c-4da9-84c6-474799451f2b   ext4       s-var_SDD
/dev/sdb2        672B204C384159C7                       ntfs       s-Z-b2
/dev/sdb3        5cb34c39-a85d-4480-bd87-8f3b4e792b52   ext4       s-les-homes
/dev/sdb5        a17886e2-7520-42fb-bb3c-7b43781cf5bc   ext4       U16.04-b5-64b
/dev/sdb6        7cfd4b7b-e842-45ee-b53f-89d738dc041d   swap       
/dev/sdb7        c2dfaed0-2fb6-4068-a321-8c6d9974801c   ext4       s-Data
/dev/sdb8        c40371ca-c326-4f39-bd8f-6b50a43998a5   ext4       s-Photos
/dev/sdb9        c44ae62d-a5bd-4951-9139-1e1feb08dada   ext4       s-SH
/dev/sdc1        78684472684430E4                       ntfs       XP-c1
/dev/sdc10       722d52ca-7c00-4e99-a810-9db3288fac4a   swap       
/dev/sdc11       3aabc8ae-d129-419c-bb5a-1292d98ec0f6   ext4       U18-04-c11
/dev/sdc12       276062A85EEF336D                       ntfs       Z-c12
/dev/sdc13       b2be1488-2032-4808-a596-6d53daf67f5f   ext4       home_SDD
/dev/sdc14       9b15bd6c-74e7-43f0-b0ed-4ef8cf7a67f9   ext4       var_SDD
/dev/sdc5        158730c0-4b38-42f9-853a-ea825678687a   ext4       Data
/dev/sdc6        3d84d1cf-035e-48bb-8b93-762bad2f41ca   ext4       Photos
/dev/sdc7        c5a33375-b59d-4451-9b5f-e3c1bdf3d5c0   ext4       home-c11
/dev/sdc8        207a6f34-be95-446b-85b2-17827a1d2cb9   ext4       SH
/dev/sdc9        3e774a44-b817-4b60-964c-46d4808d17ef   ext4       gnome
/dev/sdd1        c14de089-0371-46f3-829f-b3d2e715d031   ext4       U18.04-d1
/dev/sdd2        a0820a29-c024-4c15-b895-6f921d8af7eb   ext4       ex-home-d2
/dev/sdd5        856fb060-f337-45d1-89ef-5a0b2a25bbdc   ext4       ex-var-d5
/dev/sdd6        a8bcaa98-eb50-4ef2-b982-15e19331b3fd   ext4       
/dev/sde1        34D9-A436                              vfat       
/dev/sde2        b1e72033-59f5-47fa-84fa-5242a2580ed0   ext4       18-4-EFI

========================= "ls -l /dev/disk/by-id" output: ======================

total 0
lrwxrwxrwx 1 root root  9 Apr 20 09:15 ata-ST1000DM003-1CH162_Z1D7YJ92 -> ../../sdb
lrwxrwxrwx 1 root root 10 Apr 20 09:16 ata-ST1000DM003-1CH162_Z1D7YJ92-part1 -> ../../sdb1
lrwxrwxrwx 1 root root 11 Apr 20 09:15 ata-ST1000DM003-1CH162_Z1D7YJ92-part10 -> ../../sdb10
lrwxrwxrwx 1 root root 11 Apr 20 09:15 ata-ST1000DM003-1CH162_Z1D7YJ92-part11 -> ../../sdb11
lrwxrwxrwx 1 root root 10 Apr 20 09:16 ata-ST1000DM003-1CH162_Z1D7YJ92-part2 -> ../../sdb2
lrwxrwxrwx 1 root root 10 Apr 20 09:15 ata-ST1000DM003-1CH162_Z1D7YJ92-part3 -> ../../sdb3
lrwxrwxrwx 1 root root 10 Apr 20 09:15 ata-ST1000DM003-1CH162_Z1D7YJ92-part4 -> ../../sdb4
lrwxrwxrwx 1 root root 10 Apr 20 09:15 ata-ST1000DM003-1CH162_Z1D7YJ92-part5 -> ../../sdb5
lrwxrwxrwx 1 root root 10 Apr 20 09:15 ata-ST1000DM003-1CH162_Z1D7YJ92-part6 -> ../../sdb6
lrwxrwxrwx 1 root root 10 Apr 20 09:15 ata-ST1000DM003-1CH162_Z1D7YJ92-part7 -> ../../sdb7
lrwxrwxrwx 1 root root 10 Apr 20 09:15 ata-ST1000DM003-1CH162_Z1D7YJ92-part8 -> ../../sdb8
lrwxrwxrwx 1 root root 10 Apr 20 09:15 ata-ST1000DM003-1CH162_Z1D7YJ92-part9 -> ../../sdb9
lrwxrwxrwx 1 root root  9 Apr 20 09:15 ata-ST1000DM003-1ER162_Z4Y7YE2Q -> ../../sda
lrwxrwxrwx 1 root root 10 Apr 20 09:15 ata-ST1000DM003-1ER162_Z4Y7YE2Q-part1 -> ../../sda1
lrwxrwxrwx 1 root root 11 Apr 20 09:15 ata-ST1000DM003-1ER162_Z4Y7YE2Q-part10 -> ../../sda10
lrwxrwxrwx 1 root root 11 Apr 20 09:15 ata-ST1000DM003-1ER162_Z4Y7YE2Q-part11 -> ../../sda11
lrwxrwxrwx 1 root root 11 Apr 20 09:15 ata-ST1000DM003-1ER162_Z4Y7YE2Q-part12 -> ../../sda12
lrwxrwxrwx 1 root root 11 Apr 20 09:15 ata-ST1000DM003-1ER162_Z4Y7YE2Q-part13 -> ../../sda13
lrwxrwxrwx 1 root root 11 Apr 20 09:15 ata-ST1000DM003-1ER162_Z4Y7YE2Q-part14 -> ../../sda14
lrwxrwxrwx 1 root root 11 Apr 20 09:15 ata-ST1000DM003-1ER162_Z4Y7YE2Q-part15 -> ../../sda15
lrwxrwxrwx 1 root root 11 Apr 20 09:15 ata-ST1000DM003-1ER162_Z4Y7YE2Q-part16 -> ../../sda16
lrwxrwxrwx 1 root root 11 Apr 20 09:15 ata-ST1000DM003-1ER162_Z4Y7YE2Q-part17 -> ../../sda17
lrwxrwxrwx 1 root root 10 Apr 20 09:15 ata-ST1000DM003-1ER162_Z4Y7YE2Q-part2 -> ../../sda2
lrwxrwxrwx 1 root root 10 Apr 20 09:15 ata-ST1000DM003-1ER162_Z4Y7YE2Q-part3 -> ../../sda3
lrwxrwxrwx 1 root root 10 Apr 20 09:15 ata-ST1000DM003-1ER162_Z4Y7YE2Q-part4 -> ../../sda4
lrwxrwxrwx 1 root root 10 Apr 20 09:15 ata-ST1000DM003-1ER162_Z4Y7YE2Q-part5 -> ../../sda5
lrwxrwxrwx 1 root root 10 Apr 20 09:15 ata-ST1000DM003-1ER162_Z4Y7YE2Q-part6 -> ../../sda6
lrwxrwxrwx 1 root root 10 Apr 20 09:15 ata-ST1000DM003-1ER162_Z4Y7YE2Q-part7 -> ../../sda7
lrwxrwxrwx 1 root root 10 Apr 20 09:15 ata-ST1000DM003-1ER162_Z4Y7YE2Q-part8 -> ../../sda8
lrwxrwxrwx 1 root root 10 Apr 20 09:15 ata-ST1000DM003-1ER162_Z4Y7YE2Q-part9 -> ../../sda9
lrwxrwxrwx 1 root root  9 Apr 20 09:15 ata-ST1000DM003-1SB102_Z9A4GMQ3 -> ../../sdc
lrwxrwxrwx 1 root root 10 Apr 20 09:16 ata-ST1000DM003-1SB102_Z9A4GMQ3-part1 -> ../../sdc1
lrwxrwxrwx 1 root root 11 Apr 20 09:15 ata-ST1000DM003-1SB102_Z9A4GMQ3-part10 -> ../../sdc10
lrwxrwxrwx 1 root root 11 Apr 20 09:15 ata-ST1000DM003-1SB102_Z9A4GMQ3-part11 -> ../../sdc11
lrwxrwxrwx 1 root root 11 Apr 20 09:16 ata-ST1000DM003-1SB102_Z9A4GMQ3-part12 -> ../../sdc12
lrwxrwxrwx 1 root root 11 Apr 20 09:15 ata-ST1000DM003-1SB102_Z9A4GMQ3-part13 -> ../../sdc13
lrwxrwxrwx 1 root root 11 Apr 20 09:15 ata-ST1000DM003-1SB102_Z9A4GMQ3-part14 -> ../../sdc14
lrwxrwxrwx 1 root root 10 Apr 20 09:15 ata-ST1000DM003-1SB102_Z9A4GMQ3-part2 -> ../../sdc2
lrwxrwxrwx 1 root root 10 Apr 20 09:15 ata-ST1000DM003-1SB102_Z9A4GMQ3-part5 -> ../../sdc5
lrwxrwxrwx 1 root root 10 Apr 20 09:15 ata-ST1000DM003-1SB102_Z9A4GMQ3-part6 -> ../../sdc6
lrwxrwxrwx 1 root root 10 Apr 20 09:15 ata-ST1000DM003-1SB102_Z9A4GMQ3-part7 -> ../../sdc7
lrwxrwxrwx 1 root root 10 Apr 20 09:15 ata-ST1000DM003-1SB102_Z9A4GMQ3-part8 -> ../../sdc8
lrwxrwxrwx 1 root root 10 Apr 20 09:15 ata-ST1000DM003-1SB102_Z9A4GMQ3-part9 -> ../../sdc9
lrwxrwxrwx 1 root root  9 Apr 20 09:15 ata-Samsung_SSD_860_EVO_250GB_S3YJNC0KA05153K -> ../../sdd
lrwxrwxrwx 1 root root 10 Apr 20 09:15 ata-Samsung_SSD_860_EVO_250GB_S3YJNC0KA05153K-part1 -> ../../sdd1
lrwxrwxrwx 1 root root 10 Apr 20 09:15 ata-Samsung_SSD_860_EVO_250GB_S3YJNC0KA05153K-part2 -> ../../sdd2
lrwxrwxrwx 1 root root 10 Apr 20 09:15 ata-Samsung_SSD_860_EVO_250GB_S3YJNC0KA05153K-part3 -> ../../sdd3
lrwxrwxrwx 1 root root 10 Apr 20 09:15 ata-Samsung_SSD_860_EVO_250GB_S3YJNC0KA05153K-part5 -> ../../sdd5
lrwxrwxrwx 1 root root 10 Apr 20 09:15 ata-Samsung_SSD_860_EVO_250GB_S3YJNC0KA05153K-part6 -> ../../sdd6
lrwxrwxrwx 1 root root  9 Apr 20 09:15 ata-Samsung_SSD_860_EVO_500GB_S3Z2NB0K702795Z -> ../../sde
lrwxrwxrwx 1 root root 10 Apr 20 09:15 ata-Samsung_SSD_860_EVO_500GB_S3Z2NB0K702795Z-part1 -> ../../sde1
lrwxrwxrwx 1 root root 10 Apr 20 09:15 ata-Samsung_SSD_860_EVO_500GB_S3Z2NB0K702795Z-part2 -> ../../sde2
lrwxrwxrwx 1 root root  9 Apr 20 09:15 wwn-0x5000c500655aa5bd -> ../../sdb
lrwxrwxrwx 1 root root 10 Apr 20 09:16 wwn-0x5000c500655aa5bd-part1 -> ../../sdb1
lrwxrwxrwx 1 root root 11 Apr 20 09:15 wwn-0x5000c500655aa5bd-part10 -> ../../sdb10
lrwxrwxrwx 1 root root 11 Apr 20 09:15 wwn-0x5000c500655aa5bd-part11 -> ../../sdb11
lrwxrwxrwx 1 root root 10 Apr 20 09:16 wwn-0x5000c500655aa5bd-part2 -> ../../sdb2
lrwxrwxrwx 1 root root 10 Apr 20 09:15 wwn-0x5000c500655aa5bd-part3 -> ../../sdb3
lrwxrwxrwx 1 root root 10 Apr 20 09:15 wwn-0x5000c500655aa5bd-part4 -> ../../sdb4
lrwxrwxrwx 1 root root 10 Apr 20 09:15 wwn-0x5000c500655aa5bd-part5 -> ../../sdb5
lrwxrwxrwx 1 root root 10 Apr 20 09:15 wwn-0x5000c500655aa5bd-part6 -> ../../sdb6
lrwxrwxrwx 1 root root 10 Apr 20 09:15 wwn-0x5000c500655aa5bd-part7 -> ../../sdb7
lrwxrwxrwx 1 root root 10 Apr 20 09:15 wwn-0x5000c500655aa5bd-part8 -> ../../sdb8
lrwxrwxrwx 1 root root 10 Apr 20 09:15 wwn-0x5000c500655aa5bd-part9 -> ../../sdb9
lrwxrwxrwx 1 root root  9 Apr 20 09:15 wwn-0x5000c5007b84b32e -> ../../sda
lrwxrwxrwx 1 root root 10 Apr 20 09:15 wwn-0x5000c5007b84b32e-part1 -> ../../sda1
lrwxrwxrwx 1 root root 11 Apr 20 09:15 wwn-0x5000c5007b84b32e-part10 -> ../../sda10
lrwxrwxrwx 1 root root 11 Apr 20 09:15 wwn-0x5000c5007b84b32e-part11 -> ../../sda11
lrwxrwxrwx 1 root root 11 Apr 20 09:15 wwn-0x5000c5007b84b32e-part12 -> ../../sda12
lrwxrwxrwx 1 root root 11 Apr 20 09:15 wwn-0x5000c5007b84b32e-part13 -> ../../sda13
lrwxrwxrwx 1 root root 11 Apr 20 09:15 wwn-0x5000c5007b84b32e-part14 -> ../../sda14
lrwxrwxrwx 1 root root 11 Apr 20 09:15 wwn-0x5000c5007b84b32e-part15 -> ../../sda15
lrwxrwxrwx 1 root root 11 Apr 20 09:15 wwn-0x5000c5007b84b32e-part16 -> ../../sda16
lrwxrwxrwx 1 root root 11 Apr 20 09:15 wwn-0x5000c5007b84b32e-part17 -> ../../sda17
lrwxrwxrwx 1 root root 10 Apr 20 09:15 wwn-0x5000c5007b84b32e-part2 -> ../../sda2
lrwxrwxrwx 1 root root 10 Apr 20 09:15 wwn-0x5000c5007b84b32e-part3 -> ../../sda3
lrwxrwxrwx 1 root root 10 Apr 20 09:15 wwn-0x5000c5007b84b32e-part4 -> ../../sda4
lrwxrwxrwx 1 root root 10 Apr 20 09:15 wwn-0x5000c5007b84b32e-part5 -> ../../sda5
lrwxrwxrwx 1 root root 10 Apr 20 09:15 wwn-0x5000c5007b84b32e-part6 -> ../../sda6
lrwxrwxrwx 1 root root 10 Apr 20 09:15 wwn-0x5000c5007b84b32e-part7 -> ../../sda7
lrwxrwxrwx 1 root root 10 Apr 20 09:15 wwn-0x5000c5007b84b32e-part8 -> ../../sda8
lrwxrwxrwx 1 root root 10 Apr 20 09:15 wwn-0x5000c5007b84b32e-part9 -> ../../sda9
lrwxrwxrwx 1 root root  9 Apr 20 09:15 wwn-0x5000c50091d86f9d -> ../../sdc
lrwxrwxrwx 1 root root 10 Apr 20 09:16 wwn-0x5000c50091d86f9d-part1 -> ../../sdc1
lrwxrwxrwx 1 root root 11 Apr 20 09:15 wwn-0x5000c50091d86f9d-part10 -> ../../sdc10
lrwxrwxrwx 1 root root 11 Apr 20 09:15 wwn-0x5000c50091d86f9d-part11 -> ../../sdc11
lrwxrwxrwx 1 root root 11 Apr 20 09:16 wwn-0x5000c50091d86f9d-part12 -> ../../sdc12
lrwxrwxrwx 1 root root 11 Apr 20 09:15 wwn-0x5000c50091d86f9d-part13 -> ../../sdc13
lrwxrwxrwx 1 root root 11 Apr 20 09:15 wwn-0x5000c50091d86f9d-part14 -> ../../sdc14
lrwxrwxrwx 1 root root 10 Apr 20 09:15 wwn-0x5000c50091d86f9d-part2 -> ../../sdc2
lrwxrwxrwx 1 root root 10 Apr 20 09:15 wwn-0x5000c50091d86f9d-part5 -> ../../sdc5
lrwxrwxrwx 1 root root 10 Apr 20 09:15 wwn-0x5000c50091d86f9d-part6 -> ../../sdc6
lrwxrwxrwx 1 root root 10 Apr 20 09:15 wwn-0x5000c50091d86f9d-part7 -> ../../sdc7
lrwxrwxrwx 1 root root 10 Apr 20 09:15 wwn-0x5000c50091d86f9d-part8 -> ../../sdc8
lrwxrwxrwx 1 root root 10 Apr 20 09:15 wwn-0x5000c50091d86f9d-part9 -> ../../sdc9
lrwxrwxrwx 1 root root  9 Apr 20 09:15 wwn-0x5002538e405613b2 -> ../../sde
lrwxrwxrwx 1 root root 10 Apr 20 09:15 wwn-0x5002538e405613b2-part1 -> ../../sde1
lrwxrwxrwx 1 root root 10 Apr 20 09:15 wwn-0x5002538e405613b2-part2 -> ../../sde2
lrwxrwxrwx 1 root root  9 Apr 20 09:15 wwn-0x5002538e700dec23 -> ../../sdd
lrwxrwxrwx 1 root root 10 Apr 20 09:15 wwn-0x5002538e700dec23-part1 -> ../../sdd1
lrwxrwxrwx 1 root root 10 Apr 20 09:15 wwn-0x5002538e700dec23-part2 -> ../../sdd2
lrwxrwxrwx 1 root root 10 Apr 20 09:15 wwn-0x5002538e700dec23-part3 -> ../../sdd3
lrwxrwxrwx 1 root root 10 Apr 20 09:15 wwn-0x5002538e700dec23-part5 -> ../../sdd5
lrwxrwxrwx 1 root root 10 Apr 20 09:15 wwn-0x5002538e700dec23-part6 -> ../../sdd6

================================ Mount points: =================================

Device           Mount_Point              Type       Options

/dev/fuse        /root/.cache/doc         fuse       (rw,nosuid,nodev,relatime,user_id=0,group_id=0)
/dev/sda16       /media/ISOS              ext4       (rw,relatime,data=ordered)
/dev/sdc13       /home                    ext4       (rw,relatime,data=ordered)
/dev/sdc14       /var                     ext4       (rw,relatime,data=ordered)
/dev/sdc5        /media/Data              ext4       (rw,relatime,data=ordered)
/dev/sdc8        /media/SH                ext4       (rw,relatime,data=ordered)
/dev/sdd1        /                        ext4       (rw,relatime,errors=remount-ro,data=ordered)


=========================== sda2/boot/grub/grub.cfg: ===========================

--------------------------------------------------------------------------------
#### 2020:04:12-13:40:03 : /boot/grub/grub.cfg modifié par /media/SH/grub/V46/modif_grub_V46_bis ####
# DO NOT EDIT THIS FILE
#
# It is automatically generated by grub-mkconfig using templates
# from /etc/grub.d and settings from /etc/default/grub
#

### BEGIN /etc/grub.d/00_header ###
if [ -s $prefix/grubenv ]; then
  set have_grubenv=true
  load_env
fi
if [ "${next_entry}" ] ; then
   set default="${next_entry}"
   set next_entry=
   save_env next_entry
   set boot_once=true
else
   set default="0"
fi

if [ x"${feature_menuentry_id}" = xy ]; then
  menuentry_id_option="--id"
else
  menuentry_id_option=""
fi

export menuentry_id_option

if [ "${prev_saved_entry}" ]; then
  set saved_entry="${prev_saved_entry}"
  save_env saved_entry
  set prev_saved_entry=
  save_env prev_saved_entry
  set boot_once=true
fi

function savedefault {
  if [ -z "${boot_once}" ]; then
    saved_entry="${chosen}"
    save_env saved_entry
  fi
}
function recordfail {
  set recordfail=1
  if [ -n "${have_grubenv}" ]; then if [ -z "${boot_once}" ]; then save_env recordfail; fi; fi
}
function load_video {
  if [ x$feature_all_video_module = xy ]; then
    insmod all_video
  else
    insmod efi_gop
    insmod efi_uga
    insmod ieee1275_fb
    insmod vbe
    insmod vga
    insmod video_bochs
    insmod video_cirrus
  fi
}

if [ x$feature_default_font_path = xy ] ; then
   font=unicode
else
insmod part_msdos
insmod ext2
set root='hd0,msdos2'
if [ x$feature_platform_search_hint = xy ]; then
  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos2 --hint-efi=hd0,msdos2 --hint-baremetal=ahci0,msdos2  adb3563a-ddba-4f75-8e82-7df3e3d2a4a5
else
  search --no-floppy --fs-uuid --set=root adb3563a-ddba-4f75-8e82-7df3e3d2a4a5
fi
    font="/usr/share/grub/unicode.pf2"
fi

if loadfont $font ; then
  set gfxmode=auto
  load_video
  insmod gfxterm
  set locale_dir=$prefix/locale
  set lang=fr_FR
  insmod gettext
fi
terminal_output gfxterm
if [ "${recordfail}" = 1 ] ; then
  set timeout=30
else
  if [ x$feature_timeout_style = xy ] ; then
    set timeout_style=hidden
    set timeout=10
  # Fallback hidden-timeout code in case the timeout_style feature is
  # unavailable.
  elif sleep --interruptible 10 ; then
    set timeout=0
  fi
fi
### END /etc/grub.d/00_header ###

### BEGIN /etc/grub.d/05_debian_theme ###
set menu_color_normal=white/black
set menu_color_highlight=black/light-gray
if background_color 44,0,30,0; then
  clear
fi
### END /etc/grub.d/05_debian_theme ###

### BEGIN /etc/grub.d/10_linux ###
function gfxmode {
	set gfxpayload="${1}"
	if [ "${1}" = "keep" ]; then
		set vt_handoff=vt.handoff=1
	else
		set vt_handoff=
	fi
}
if [ "${recordfail}" != 1 ]; then
  if [ -e ${prefix}/gfxblacklist.txt ]; then
    if hwmatch ${prefix}/gfxblacklist.txt 3; then
      if [ ${match} = 0 ]; then
        set linux_gfx_mode=keep
      else
        set linux_gfx_mode=text
      fi
    else
      set linux_gfx_mode=text
    fi
  else
    set linux_gfx_mode=keep
  fi
else
  set linux_gfx_mode=text
fi
export linux_gfx_mode
menuentry 'U18.04-a2-64b : Ubuntu' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-simple-adb3563a-ddba-4f75-8e82-7df3e3d2a4a5' {
	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,msdos2'
	if [ x$feature_platform_search_hint = xy ]; then
	  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos2 --hint-efi=hd0,msdos2 --hint-baremetal=ahci0,msdos2  adb3563a-ddba-4f75-8e82-7df3e3d2a4a5
	else
	  search --no-floppy --fs-uuid --set=root adb3563a-ddba-4f75-8e82-7df3e3d2a4a5
	fi
        linux	/boot/vmlinuz-4.15.0-96-generic root=UUID=adb3563a-ddba-4f75-8e82-7df3e3d2a4a5 ro  quiet splash $vt_handoff
	initrd	/boot/initrd.img-4.15.0-96-generic
}
submenu 'U18.04-a2-64b : Options avancées pour Ubuntu' $menuentry_id_option 'gnulinux-advanced-adb3563a-ddba-4f75-8e82-7df3e3d2a4a5' {
	menuentry 'U18.04-a2-64b : Ubuntu, avec Linux 4.15.0-96-generic' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-4.15.0-96-generic-advanced-adb3563a-ddba-4f75-8e82-7df3e3d2a4a5' {
		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,msdos2'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos2 --hint-efi=hd0,msdos2 --hint-baremetal=ahci0,msdos2  adb3563a-ddba-4f75-8e82-7df3e3d2a4a5
		else
		  search --no-floppy --fs-uuid --set=root adb3563a-ddba-4f75-8e82-7df3e3d2a4a5
		fi
		echo	'Chargement de Linux 4.15.0-96-generic…'
	        linux	/boot/vmlinuz-4.15.0-96-generic root=UUID=adb3563a-ddba-4f75-8e82-7df3e3d2a4a5 ro  quiet splash $vt_handoff
		echo	'Chargement du disque mémoire initial…'
		initrd	/boot/initrd.img-4.15.0-96-generic
	}
	menuentry 'U18.04-a2-64b : Ubuntu, with Linux 4.15.0-96-generic (recovery mode)' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-4.15.0-96-generic-recovery-adb3563a-ddba-4f75-8e82-7df3e3d2a4a5' {
		recordfail
		load_video
		insmod gzio
		if [ x$grub_platform = xxen ]; then insmod xzio; insmod lzopio; fi
		insmod part_msdos
		insmod ext2
		set root='hd0,msdos2'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos2 --hint-efi=hd0,msdos2 --hint-baremetal=ahci0,msdos2  adb3563a-ddba-4f75-8e82-7df3e3d2a4a5
		else
		  search --no-floppy --fs-uuid --set=root adb3563a-ddba-4f75-8e82-7df3e3d2a4a5
		fi
		echo	'Chargement de Linux 4.15.0-96-generic…'
	        linux	/boot/vmlinuz-4.15.0-96-generic root=UUID=adb3563a-ddba-4f75-8e82-7df3e3d2a4a5 ro recovery nomodeset 
		echo	'Chargement du disque mémoire initial…'
		initrd	/boot/initrd.img-4.15.0-96-generic
	}
	menuentry 'U18.04-a2-64b : Ubuntu, avec Linux 4.15.0-88-generic' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-4.15.0-88-generic-advanced-adb3563a-ddba-4f75-8e82-7df3e3d2a4a5' {
		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,msdos2'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos2 --hint-efi=hd0,msdos2 --hint-baremetal=ahci0,msdos2  adb3563a-ddba-4f75-8e82-7df3e3d2a4a5
		else
		  search --no-floppy --fs-uuid --set=root adb3563a-ddba-4f75-8e82-7df3e3d2a4a5
		fi
		echo	'Chargement de Linux 4.15.0-88-generic…'
	        linux	/boot/vmlinuz-4.15.0-88-generic root=UUID=adb3563a-ddba-4f75-8e82-7df3e3d2a4a5 ro  quiet splash $vt_handoff
		echo	'Chargement du disque mémoire initial…'
		initrd	/boot/initrd.img-4.15.0-88-generic
	}
	menuentry 'U18.04-a2-64b : Ubuntu, with Linux 4.15.0-88-generic (recovery mode)' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-4.15.0-88-generic-recovery-adb3563a-ddba-4f75-8e82-7df3e3d2a4a5' {
		recordfail
		load_video
		insmod gzio
		if [ x$grub_platform = xxen ]; then insmod xzio; insmod lzopio; fi
		insmod part_msdos
		insmod ext2
		set root='hd0,msdos2'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos2 --hint-efi=hd0,msdos2 --hint-baremetal=ahci0,msdos2  adb3563a-ddba-4f75-8e82-7df3e3d2a4a5
		else
		  search --no-floppy --fs-uuid --set=root adb3563a-ddba-4f75-8e82-7df3e3d2a4a5
		fi
		echo	'Chargement de Linux 4.15.0-88-generic…'
	        linux	/boot/vmlinuz-4.15.0-88-generic root=UUID=adb3563a-ddba-4f75-8e82-7df3e3d2a4a5 ro recovery nomodeset 
		echo	'Chargement du disque mémoire initial…'
		initrd	/boot/initrd.img-4.15.0-88-generic
	}
	menuentry 'U18.04-a2-64b : Ubuntu, avec Linux 4.15.0-76-generic' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-4.15.0-76-generic-advanced-adb3563a-ddba-4f75-8e82-7df3e3d2a4a5' {
		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,msdos2'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos2 --hint-efi=hd0,msdos2 --hint-baremetal=ahci0,msdos2  adb3563a-ddba-4f75-8e82-7df3e3d2a4a5
		else
		  search --no-floppy --fs-uuid --set=root adb3563a-ddba-4f75-8e82-7df3e3d2a4a5
		fi
		echo	'Chargement de Linux 4.15.0-76-generic…'
	        linux	/boot/vmlinuz-4.15.0-76-generic root=UUID=adb3563a-ddba-4f75-8e82-7df3e3d2a4a5 ro  quiet splash $vt_handoff
		echo	'Chargement du disque mémoire initial…'
		initrd	/boot/initrd.img-4.15.0-76-generic
	}
	menuentry 'U18.04-a2-64b : Ubuntu, with Linux 4.15.0-76-generic (recovery mode)' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-4.15.0-76-generic-recovery-adb3563a-ddba-4f75-8e82-7df3e3d2a4a5' {
		recordfail
		load_video
		insmod gzio
		if [ x$grub_platform = xxen ]; then insmod xzio; insmod lzopio; fi
		insmod part_msdos
		insmod ext2
		set root='hd0,msdos2'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos2 --hint-efi=hd0,msdos2 --hint-baremetal=ahci0,msdos2  adb3563a-ddba-4f75-8e82-7df3e3d2a4a5
		else
		  search --no-floppy --fs-uuid --set=root adb3563a-ddba-4f75-8e82-7df3e3d2a4a5
		fi
		echo	'Chargement de Linux 4.15.0-76-generic…'
	        linux	/boot/vmlinuz-4.15.0-76-generic root=UUID=adb3563a-ddba-4f75-8e82-7df3e3d2a4a5 ro recovery nomodeset 
		echo	'Chargement du disque mémoire initial…'
		initrd	/boot/initrd.img-4.15.0-76-generic
	}
}

### END /etc/grub.d/10_linux ###

### BEGIN /etc/grub.d/20_linux_xen ###

### END /etc/grub.d/20_linux_xen ###

### BEGIN /etc/grub.d/20_memtest86+ ###
menuentry 'Memory test (memtest86+)' {
	insmod part_msdos
	insmod ext2
	set root='hd0,msdos2'
	if [ x$feature_platform_search_hint = xy ]; then
	  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos2 --hint-efi=hd0,msdos2 --hint-baremetal=ahci0,msdos2  adb3563a-ddba-4f75-8e82-7df3e3d2a4a5
	else
	  search --no-floppy --fs-uuid --set=root adb3563a-ddba-4f75-8e82-7df3e3d2a4a5
	fi
	knetbsd	/boot/memtest86+.elf
}
menuentry 'Memory test (memtest86+, serial console 115200)' {
	insmod part_msdos
	insmod ext2
	set root='hd0,msdos2'
	if [ x$feature_platform_search_hint = xy ]; then
	  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos2 --hint-efi=hd0,msdos2 --hint-baremetal=ahci0,msdos2  adb3563a-ddba-4f75-8e82-7df3e3d2a4a5
	else
	  search --no-floppy --fs-uuid --set=root adb3563a-ddba-4f75-8e82-7df3e3d2a4a5
	fi
	linux16	/boot/memtest86+.bin console=ttyS0,115200n8
}
### END /etc/grub.d/20_memtest86+ ###

### BEGIN /etc/grub.d/30_os-prober ###
menuentry 'Windows NT/2000/XP (sur /dev/sdb1)' --class windows --class os $menuentry_id_option 'osprober-chain-0AF8F8ED4E45274B' {
	insmod part_msdos
	insmod ntfs
	set root='hd1,msdos1'
	if [ x$feature_platform_search_hint = xy ]; then
	  search --no-floppy --fs-uuid --set=root --hint-bios=hd1,msdos1 --hint-efi=hd1,msdos1 --hint-baremetal=ahci1,msdos1  0AF8F8ED4E45274B
	else
	  search --no-floppy --fs-uuid --set=root 0AF8F8ED4E45274B
	fi
	parttool ${root} hidden-
	drivemap -s (hd0) ${root}
	chainloader +1
}
menuentry 'Windows NT/2000/XP (sur /dev/sdc1)' --class windows --class os $menuentry_id_option 'osprober-chain-78684472684430E4' {
	insmod part_msdos
	insmod ntfs
	set root='hd2,msdos1'
	if [ x$feature_platform_search_hint = xy ]; then
	  search --no-floppy --fs-uuid --set=root --hint-bios=hd2,msdos1 --hint-efi=hd2,msdos1 --hint-baremetal=ahci2,msdos1  78684472684430E4
	else
	  search --no-floppy --fs-uuid --set=root 78684472684430E4
	fi
	parttool ${root} hidden-
	drivemap -s (hd0) ${root}
	chainloader +1
}
menuentry 'U18.04-d1 : Ubuntu 18.04.4 LTS (18.04) (sur /dev/sdd1)' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-simple-c14de089-0371-46f3-829f-b3d2e715d031' {
	insmod part_msdos
	insmod ext2
	set root='hd3,msdos1'
	if [ x$feature_platform_search_hint = xy ]; then
	  search --no-floppy --fs-uuid --set=root --hint-bios=hd3,msdos1 --hint-efi=hd3,msdos1 --hint-baremetal=ahci3,msdos1  c14de089-0371-46f3-829f-b3d2e715d031
	else
	  search --no-floppy --fs-uuid --set=root c14de089-0371-46f3-829f-b3d2e715d031
	fi
	linux /boot/vmlinuz-4.15.0-96-generic root=UUID=c14de089-0371-46f3-829f-b3d2e715d031 ro quiet splash $vt_handoff
	initrd /boot/initrd.img-4.15.0-96-generic
}
submenu 'U18.04-d1 : Options avancées pour Ubuntu 18.04.4 LTS (18.04) (sur /dev/sdd1)' $menuentry_id_option 'osprober-gnulinux-advanced-c14de089-0371-46f3-829f-b3d2e715d031' {
	menuentry 'U18.04-d1  Ubuntu (sur /dev/sdd1)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-4.15.0-96-generic--c14de089-0371-46f3-829f-b3d2e715d031' {
		insmod part_msdos
		insmod ext2
		set root='hd3,msdos1'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd3,msdos1 --hint-efi=hd3,msdos1 --hint-baremetal=ahci3,msdos1  c14de089-0371-46f3-829f-b3d2e715d031
		else
		  search --no-floppy --fs-uuid --set=root c14de089-0371-46f3-829f-b3d2e715d031
		fi
		linux /boot/vmlinuz-4.15.0-96-generic root=UUID=c14de089-0371-46f3-829f-b3d2e715d031 ro quiet splash $vt_handoff
		initrd /boot/initrd.img-4.15.0-96-generic
	}
	menuentry 'U18.04-d1  Ubuntu, avec Linux 4.15.0-96-generic (sur /dev/sdd1)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-4.15.0-96-generic--c14de089-0371-46f3-829f-b3d2e715d031' {
		insmod part_msdos
		insmod ext2
		set root='hd3,msdos1'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd3,msdos1 --hint-efi=hd3,msdos1 --hint-baremetal=ahci3,msdos1  c14de089-0371-46f3-829f-b3d2e715d031
		else
		  search --no-floppy --fs-uuid --set=root c14de089-0371-46f3-829f-b3d2e715d031
		fi
		linux /boot/vmlinuz-4.15.0-96-generic root=UUID=c14de089-0371-46f3-829f-b3d2e715d031 ro quiet splash $vt_handoff
		initrd /boot/initrd.img-4.15.0-96-generic
	}
	menuentry 'U18.04-d1  Ubuntu, with Linux 4.15.0-96-generic (recovery mode) (sur /dev/sdd1)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-4.15.0-96-generic-root=UUID=c14de089-0371-46f3-829f-b3d2e715d031 ro recovery nomodeset-c14de089-0371-46f3-829f-b3d2e715d031' {
		insmod part_msdos
		insmod ext2
		set root='hd3,msdos1'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd3,msdos1 --hint-efi=hd3,msdos1 --hint-baremetal=ahci3,msdos1  c14de089-0371-46f3-829f-b3d2e715d031
		else
		  search --no-floppy --fs-uuid --set=root c14de089-0371-46f3-829f-b3d2e715d031
		fi
		linux /boot/vmlinuz-4.15.0-96-generic root=UUID=c14de089-0371-46f3-829f-b3d2e715d031 ro recovery nomodeset
		initrd /boot/initrd.img-4.15.0-96-generic
	}
	menuentry 'U18.04-d1  Ubuntu, avec Linux 4.15.0-91-generic (sur /dev/sdd1)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-4.15.0-91-generic--c14de089-0371-46f3-829f-b3d2e715d031' {
		insmod part_msdos
		insmod ext2
		set root='hd3,msdos1'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd3,msdos1 --hint-efi=hd3,msdos1 --hint-baremetal=ahci3,msdos1  c14de089-0371-46f3-829f-b3d2e715d031
		else
		  search --no-floppy --fs-uuid --set=root c14de089-0371-46f3-829f-b3d2e715d031
		fi
		linux /boot/vmlinuz-4.15.0-91-generic root=UUID=c14de089-0371-46f3-829f-b3d2e715d031 ro quiet splash $vt_handoff
		initrd /boot/initrd.img-4.15.0-91-generic
	}
	menuentry 'U18.04-d1  Ubuntu, with Linux 4.15.0-91-generic (recovery mode) (sur /dev/sdd1)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-4.15.0-91-generic-root=UUID=c14de089-0371-46f3-829f-b3d2e715d031 ro recovery nomodeset-c14de089-0371-46f3-829f-b3d2e715d031' {
		insmod part_msdos
		insmod ext2
		set root='hd3,msdos1'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd3,msdos1 --hint-efi=hd3,msdos1 --hint-baremetal=ahci3,msdos1  c14de089-0371-46f3-829f-b3d2e715d031
		else
		  search --no-floppy --fs-uuid --set=root c14de089-0371-46f3-829f-b3d2e715d031
		fi
		linux /boot/vmlinuz-4.15.0-91-generic root=UUID=c14de089-0371-46f3-829f-b3d2e715d031 ro recovery nomodeset
		initrd /boot/initrd.img-4.15.0-91-generic
	}
}

menuentry '18-4-EFI : Ubuntu 18.04.4 LTS (18.04) (sur /dev/sde2)' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-simple-b1e72033-59f5-47fa-84fa-5242a2580ed0' {
	insmod part_gpt
	insmod ext2
	set root='hd4,gpt2'
	if [ x$feature_platform_search_hint = xy ]; then
	  search --no-floppy --fs-uuid --set=root --hint-bios=hd4,gpt2 --hint-efi=hd4,gpt2 --hint-baremetal=ahci4,gpt2  b1e72033-59f5-47fa-84fa-5242a2580ed0
	else
	  search --no-floppy --fs-uuid --set=root b1e72033-59f5-47fa-84fa-5242a2580ed0
	fi
	linux /boot/vmlinuz-4.15.0-96-generic root=UUID=b1e72033-59f5-47fa-84fa-5242a2580ed0 ro quiet splash $vt_handoff
	initrd /boot/initrd.img-4.15.0-96-generic
}
submenu '18-4-EFI : Options avancées pour Ubuntu 18.04.4 LTS (18.04) (sur /dev/sde2)' $menuentry_id_option 'osprober-gnulinux-advanced-b1e72033-59f5-47fa-84fa-5242a2580ed0' {
	menuentry '18-4-EFI  Ubuntu (sur /dev/sde2)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-4.15.0-96-generic--b1e72033-59f5-47fa-84fa-5242a2580ed0' {
		insmod part_gpt
		insmod ext2
		set root='hd4,gpt2'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd4,gpt2 --hint-efi=hd4,gpt2 --hint-baremetal=ahci4,gpt2  b1e72033-59f5-47fa-84fa-5242a2580ed0
		else
		  search --no-floppy --fs-uuid --set=root b1e72033-59f5-47fa-84fa-5242a2580ed0
		fi
		linux /boot/vmlinuz-4.15.0-96-generic root=UUID=b1e72033-59f5-47fa-84fa-5242a2580ed0 ro quiet splash $vt_handoff
		initrd /boot/initrd.img-4.15.0-96-generic
	}
	menuentry '18-4-EFI  Ubuntu, avec Linux 4.15.0-96-generic (sur /dev/sde2)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-4.15.0-96-generic--b1e72033-59f5-47fa-84fa-5242a2580ed0' {
		insmod part_gpt
		insmod ext2
		set root='hd4,gpt2'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd4,gpt2 --hint-efi=hd4,gpt2 --hint-baremetal=ahci4,gpt2  b1e72033-59f5-47fa-84fa-5242a2580ed0
		else
		  search --no-floppy --fs-uuid --set=root b1e72033-59f5-47fa-84fa-5242a2580ed0
		fi
		linux /boot/vmlinuz-4.15.0-96-generic root=UUID=b1e72033-59f5-47fa-84fa-5242a2580ed0 ro quiet splash $vt_handoff
		initrd /boot/initrd.img-4.15.0-96-generic
	}
	menuentry '18-4-EFI  Ubuntu, with Linux 4.15.0-96-generic (recovery mode) (sur /dev/sde2)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-4.15.0-96-generic-root=UUID=b1e72033-59f5-47fa-84fa-5242a2580ed0 ro recovery nomodeset-b1e72033-59f5-47fa-84fa-5242a2580ed0' {
		insmod part_gpt
		insmod ext2
		set root='hd4,gpt2'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd4,gpt2 --hint-efi=hd4,gpt2 --hint-baremetal=ahci4,gpt2  b1e72033-59f5-47fa-84fa-5242a2580ed0
		else
		  search --no-floppy --fs-uuid --set=root b1e72033-59f5-47fa-84fa-5242a2580ed0
		fi
		linux /boot/vmlinuz-4.15.0-96-generic root=UUID=b1e72033-59f5-47fa-84fa-5242a2580ed0 ro recovery nomodeset
		initrd /boot/initrd.img-4.15.0-96-generic
	}
	menuentry '18-4-EFI  Ubuntu, avec Linux 4.15.0-29-generic (sur /dev/sde2)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-4.15.0-29-generic--b1e72033-59f5-47fa-84fa-5242a2580ed0' {
		insmod part_gpt
		insmod ext2
		set root='hd4,gpt2'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd4,gpt2 --hint-efi=hd4,gpt2 --hint-baremetal=ahci4,gpt2  b1e72033-59f5-47fa-84fa-5242a2580ed0
		else
		  search --no-floppy --fs-uuid --set=root b1e72033-59f5-47fa-84fa-5242a2580ed0
		fi
		linux /boot/vmlinuz-4.15.0-29-generic root=UUID=b1e72033-59f5-47fa-84fa-5242a2580ed0 ro quiet splash $vt_handoff
		initrd /boot/initrd.img-4.15.0-29-generic
	}
	menuentry '18-4-EFI  Ubuntu, with Linux 4.15.0-29-generic (recovery mode) (sur /dev/sde2)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-4.15.0-29-generic-root=UUID=b1e72033-59f5-47fa-84fa-5242a2580ed0 ro recovery nomodeset-b1e72033-59f5-47fa-84fa-5242a2580ed0' {
		insmod part_gpt
		insmod ext2
		set root='hd4,gpt2'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd4,gpt2 --hint-efi=hd4,gpt2 --hint-baremetal=ahci4,gpt2  b1e72033-59f5-47fa-84fa-5242a2580ed0
		else
		  search --no-floppy --fs-uuid --set=root b1e72033-59f5-47fa-84fa-5242a2580ed0
		fi
		linux /boot/vmlinuz-4.15.0-29-generic root=UUID=b1e72033-59f5-47fa-84fa-5242a2580ed0 ro recovery nomodeset
		initrd /boot/initrd.img-4.15.0-29-generic
	}
}

set timeout_style=menu
if [ "${timeout}" = 0 ]; then
  set timeout=10
fi
### END /etc/grub.d/30_os-prober ###

### BEGIN /etc/grub.d/30_uefi-firmware ###
### END /etc/grub.d/30_uefi-firmware ###

### BEGIN /etc/grub.d/40_custom ###
# This file provides an easy way to add custom menu entries.  Simply type the
# menu entries you want to add after this comment.  Be careful not to change
# the 'exec tail' line above.
# true permet d'afficher la ligne de titre (i ci une ligne vide pour 'aérer' le menu) sans rien faire d'autre
menuentry "   "  {
	true	
}
menuentry "Menu du disque B" {
    set root='hd1,msdos10'
    configfile /boot/grub/grub.cfg
}

# appel du grub de C
menuentry "Menu du dique C" {
   set root='hd2,msdos11'
   configfile /boot/grub/grub.cfg
}

# true permet d'afficher la ligne de titre (ici une ligne vide pour 'aérer' le menu) sans rien faire d'autre
menuentry "   "  {
	true	
}

# appel d'un menu sur Data ( disque C ,partition5 )
menuentry "===>> Distribs lancées depuis leur fichier 'iso'" {
	set root='hd2,msdos5'
	configfile /informatique/isos/00_isoboot.cfg
}

### END /etc/grub.d/40_custom ###

### BEGIN /etc/grub.d/41_custom ###
if [ -f  ${config_directory}/custom.cfg ]; then
  source ${config_directory}/custom.cfg
elif [ -z "${config_directory}" -a -f  $prefix/custom.cfg ]; then
  source $prefix/custom.cfg;
fi
### END /etc/grub.d/41_custom ###
--------------------------------------------------------------------------------

=============================== sda2/etc/fstab: ================================

--------------------------------------------------------------------------------
# /etc/fstab: static file system information.
#
# Use 'blkid' to print the universally unique identifier for a
# device; this may be used with UUID= as a more robust way to name devices
# that works even if disks are added and removed. See fstab(5).
#
# <file system> <mount point>   <type>  <options>       <dump>  <pass>
# / was on /dev/sda2 during installation sda2
UUID=adb3563a-ddba-4f75-8e82-7df3e3d2a4a5 /               ext4    errors=remount-ro 0       1

# swap was on /dev/sda6 during installation sda6
UUID=81b7d41d-574c-4d4b-8740-3e6c55400674 none            swap    sw              0       0

/dev/fd0        /media/floppy0  auto    rw,user,noauto,exec,utf8 0       0

# ajout Data/sdc5 SH/sda11 film/sda1 Photos/sdc6
LABEL=Data      /media/Data    ext4     defaults       0    2
LABEL=SH        /media/SH      ext4     defaults       0    2
#LABEL=film      /media/film    ext4     defaults       0    2
#LABEL=Photos    /media/Photos  ext4     defaults       0    2

# la ligne suivante était pour essai
#UUID=672B204C384159C7 /media/Z ntfs     defaults       0    0   

# suppression des swap
# swap was on /dev/sda8 during installation
#UUID=a1516336-9bb7-4c9f-b63e-9cab2d58e8f1 none            swap    sw              0       0
# swap was on /dev/sdb5 during installation
#UUID=a4635c0b-fed5-4c44-aeb7-137447cf06da none            swap    sw              0       0
# swap was on /dev/sdc10 during installation
#UUID=722d52ca-7c00-4e99-a810-9db3288fac4a none            swap    sw              0       0
--------------------------------------------------------------------------------

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

           GiB - GB             File                                 Fragment(s)

 450.738514423 = 483.976794624  boot/grub/grub.cfg                             1
 450.527050495 = 483.749736960  boot/grub/i386-pc/core.img                     1
 403.663643360 = 433.430536704  boot/vmlinuz-4.15.0-76-generic                 1
 435.792553425 = 467.928691200  boot/vmlinuz-4.15.0-88-generic                 1
 452.030834675 = 485.364412928  boot/vmlinuz-4.15.0-96-generic                 1
 452.030834675 = 485.364412928  vmlinuz                                        1
 435.792553425 = 467.928691200  vmlinuz.old                                    1
 452.265224934 = 485.616087552  boot/initrd.img-4.15.0-76-generic              3
 452.244057178 = 485.593358848  boot/initrd.img-4.15.0-88-generic              2
 452.499237537 = 485.867356672  boot/initrd.img-4.15.0-96-generic              2
 452.499237537 = 485.867356672  initrd.img                                     2
 452.244057178 = 485.593358848  initrd.img.old                                 2

=============================== sda5/etc/fstab: ================================

--------------------------------------------------------------------------------
# /etc/fstab: static file system information.
#
# Use 'blkid' to print the universally unique identifier for a
# device; this may be used with UUID= as a more robust way to name devices
# that works even if disks are added and removed. See fstab(5).
#
# <file system> <mount point>   <type>  <options>       <dump>  <pass>
# / was on /dev/sda5 during installation
UUID=ed6801f3-ddfe-46ff-b3e9-83219cd58ca9 /               ext4    errors=remount-ro 0       1
# swap was on /dev/sda6 during installation
UUID=81b7d41d-574c-4d4b-8740-3e6c55400674 none            swap    sw              0       0
/dev/fd0        /media/floppy0  auto    rw,user,noauto,exec,utf8 0       0
--------------------------------------------------------------------------------

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

           GiB - GB             File                                 Fragment(s)

 571.223255157 = 613.346299904  boot/grub/i386-pc/core.img                     1
 572.369705200 = 614.577291264  boot/vmlinuz-3.13.0-107-generic                2
 572.408767700 = 614.619234304  boot/vmlinuz-3.13.0-117-generic                1
 574.330692291 = 616.682885120  boot/vmlinuz-3.13.0-162-generic                1
 574.330692291 = 616.682885120  vmlinuz                                        1
 572.408767700 = 614.619234304  vmlinuz.old                                    1
 560.450790405 = 601.779453952  boot/initrd.img-3.13.0-107-generic             1
 560.429794312 = 601.756909568  boot/initrd.img-3.13.0-117-generic             2
 560.499729156 = 601.832001536  boot/initrd.img-3.13.0-162-generic             1
 560.499729156 = 601.832001536  initrd.img                                     1
 560.429794312 = 601.756909568  initrd.img.old                                 2

=============================== sda7/etc/fstab: ================================

--------------------------------------------------------------------------------
# /etc/fstab: static file system information.
#
# Use 'blkid' to print the universally unique identifier for a
# device; this may be used with UUID= as a more robust way to name devices
# that works even if disks are added and removed. See fstab(5).
#
# <file system> <mount point>   <type>  <options>       <dump>  <pass>
# / was on /dev/sda7 during installation
UUID=c63335c7-be09-4782-978c-dff6cce2be94 /               ext4    errors=remount-ro 0       1
# swap was on /dev/sda6 during installation supprimée le 2016-04-22
#UUID=81b7d41d-574c-4d4b-8740-3e6c55400674 none            swap    sw              0       0
# swap was on /dev/sda8 during installation
UUID=a1516336-9bb7-4c9f-b63e-9cab2d58e8f1 none            swap    sw              0       0
/dev/fd0        /media/floppy0  auto    rw,user,noauto,exec,utf8 0       0
#SH 2016-04-22
LABEL=SH        /media/SH      ext4     defaults       0    2
#Nouveau Data en ext4
LABEL=Data        /media/Data      ext4       defaults 0 2


#/dev/sdc6 /media/jpb/Photos rw,user,noauto,unhide

#
# Data 2016-04-22
#UUID=47FB9C03336449C6        /media/Data      ntfs       rw,user,auto,exec,gid=100,uid=1000,nls=utf8,umask=022       0    0
#
# photos 2016-04-22
#UUID=079B6B49295F7AD1        /media/photos      ntfs     rw,user,auto,gid=100,uid=1000,nls=utf8,umask=022       0    0
#
--------------------------------------------------------------------------------

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

           GiB - GB             File                                 Fragment(s)

 618.116184235 = 663.697199104  boot/grub/i386-pc/core.img                     1
 627.438434601 = 673.706889216  boot/vmlinuz-4.4.0-139-generic                 1
 590.900871277 = 634.474979328  boot/vmlinuz-4.4.0-47-generic                  1
 625.528789520 = 671.656423424  boot/vmlinuz-4.4.0-81-generic                  1
 627.438434601 = 673.706889216  vmlinuz                                        1
 625.528789520 = 671.656423424  vmlinuz.old                                    1
 627.857887268 = 674.157273088  boot/initrd.img-4.4.0-139-generic              2
 626.236564636 = 672.416391168  boot/initrd.img-4.4.0-47-generic               3
 626.017814636 = 672.181510144  boot/initrd.img-4.4.0-81-generic               3
 627.857887268 = 674.157273088  initrd.img                                     2
 626.017814636 = 672.181510144  initrd.img.old                                 3

=============================== sda9/etc/fstab: ================================

--------------------------------------------------------------------------------
# /etc/fstab: static file system information.
#
# Use 'blkid' to print the universally unique identifier for a
# device; this may be used with UUID= as a more robust way to name devices
# that works even if disks are added and removed. See fstab(5).
#
# <file system> <mount point>   <type>  <options>       <dump>  <pass>
# / was on /dev/sdb9 during installation
UUID=d4b0b586-0b8e-457e-b492-78c272d1954f /               ext4    errors=remount-ro 0       1
# swap was on /dev/sdb11 during installation
#UUID=6de5ec52-d4e0-4fbe-adba-f6b088ddb64d none            swap    sw              0       0
/dev/fd0        /media/floppy0  auto    rw,user,noauto,exec,utf8 0       0
# swap was on /dev/sda6 during installation
#UUID=de7c7e33-a5b4-4bd4-be64-e1e59ae987a6 none            swap    sw              0       0
# swap was on /dev/sdb6 during installation
#UUID=81b7d41d-574c-4d4b-8740-3e6c55400674 none            swap    sw              0       0
# swap was on /dev/sdb8 during installation
#UUID=a1516336-9bb7-4c9f-b63e-9cab2d58e8f1 none            swap    sw              0       0
# swap was on /dev/sdc5 during installation
#UUID=a4635c0b-fed5-4c44-aeb7-137447cf06da none            swap    sw              0       0

--------------------------------------------------------------------------------

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

           GiB - GB             File                                 Fragment(s)

 651.049903870 = 699.059511296  boot/grub/i386-pc/core.img                     1
 654.162067413 = 702.401171456  boot/vmlinuz-4.4.0-139-generic                 1
 658.127651215 = 706.659184640  boot/vmlinuz-4.4.0-173-generic                 1
 644.107757568 = 691.605438464  boot/vmlinuz-4.4.0-28-generic                  1
 647.813171387 = 695.584096256  boot/vmlinuz-4.4.0-83-generic                  1
 652.353099823 = 700.458807296  boot/vmlinuz-4.4.0-97-generic                  1
 658.127651215 = 706.659184640  vmlinuz                                        1
 654.162067413 = 702.401171456  vmlinuz.old                                    1
 658.803035736 = 707.384373248  boot/initrd.img-4.4.0-139-generic              2
 658.875339508 = 707.462008832  boot/initrd.img-4.4.0-173-generic              2
 658.651126862 = 707.221262336  boot/initrd.img-4.4.0-28-generic               2
 658.639083862 = 707.208331264  boot/initrd.img-4.4.0-83-generic               2
 658.632228851 = 707.200970752  boot/initrd.img-4.4.0-97-generic               2
 658.875339508 = 707.462008832  initrd.img                                     2
 658.803035736 = 707.384373248  initrd.img.old                                 2

=============================== sda10/etc/fstab: ===============================

--------------------------------------------------------------------------------
# /etc/fstab: static file system information.
#
# Use 'blkid' to print the universally unique identifier for a
# device; this may be used with UUID= as a more robust way to name devices
# that works even if disks are added and removed. See fstab(5).
#
# <file system> <mount point>   <type>  <options>       <dump>  <pass>
# / was on /dev/sdb10 during installation
UUID=21a7fb42-ce7c-47c3-a77c-e55dc3e12590 /               ext4    errors=remount-ro 0       1

# swap was on /dev/sdb6 during installation
UUID=81b7d41d-574c-4d4b-8740-3e6c55400674 none            swap    sw              0       0

/dev/fd0        /media/floppy0  auto    rw,user,noauto,exec,utf8 0       0

#Nouveau Data en ext4
LABEL=Data        /media/Data      ext4       defaults 0 2

#SH mis sur ancienne partition de swap mis en ext4
LABEL=SH        /media/SH      ext4     defaults       0    2

#essai ntfs
#LABEL=ex-photos /media/ex-photos  ntfs  defaults 0 2



# ok mais donne root root
#UUID=c0837c4e-b3c8-4920-9cf2-2e820f159289        /media/SH      ext4     defaults       0    2

#swap was on /dev/sda6 during installation
#UUID=de7c7e33-a5b4-4bd4-be64-e1e59ae987a6 none            swap    sw              0       0
#swap was on /dev/sdb8 during installation
#UUID=a1516336-9bb7-4c9f-b63e-9cab2d58e8f1 none            swap    sw              0       0
#swap was on /dev/sdc5 during installation
#UUID=a4635c0b-fed5-4c44-aeb7-137447cf06da none            swap    sw              0       0
#ancien Data :
#UUID=47FB9C03336449C6        /media/Data      ntfs       rw,user,auto,exec,gid=100,uid=1000,nls=utf8,umask=022       0    0
#/dev/disk/by-uuid/d4b0b586-0b8e-457e-b492-78c272d1954f /mnt/d4b0b586-0b8e-457e-b492-78c272d1954f auto nosuid,nodev,nofail,noauto 0 0
--------------------------------------------------------------------------------

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

           GiB - GB             File                                 Fragment(s)

 698.203662872 = 749.690474496  boot/vmlinuz-4.4.0-138-generic                 1
 689.288902283 = 740.118323200  boot/vmlinuz-4.4.0-139-generic                 1
 692.351440430 = 743.406698496  boot/vmlinuz-4.4.0-173-generic                 1
 692.351440430 = 743.406698496  vmlinuz                                        1
 689.288902283 = 740.118323200  vmlinuz.old                                    1
 699.077579498 = 750.628835328  boot/initrd.img-4.4.0-138-generic              7
 699.148654938 = 750.705152000  boot/initrd.img-4.4.0-139-generic              4
 688.002273560 = 738.736816128  boot/initrd.img-4.4.0-173-generic              5
 688.002273560 = 738.736816128  initrd.img                                     5
 699.148654938 = 750.705152000  initrd.img.old                                 4

=============================== sda12/etc/fstab: ===============================

--------------------------------------------------------------------------------
# /etc/fstab: static file system information.
#
# Use 'blkid' to print the universally unique identifier for a
# device; this may be used with UUID= as a more robust way to name devices
# that works even if disks are added and removed. See fstab(5).
#
# <file system> <mount point>   <type>  <options>       <dump>  <pass>
# / was on /dev/sda12 during installation
UUID=cb9be900-e560-4c86-aa5c-8842b40fee00 /               ext4    errors=remount-ro 0       1
# swap was on /dev/sda6 during installation
#UUID=81b7d41d-574c-4d4b-8740-3e6c55400674 none            swap    sw              0       0
# swap was on /dev/sda8 during installation
UUID=a1516336-9bb7-4c9f-b63e-9cab2d58e8f1 none            swap    sw              0       0
# swap was on /dev/sdb5 during installation
#UUID=a4635c0b-fed5-4c44-aeb7-137447cf06da none            swap    sw              0       0
#Nouveau Data en ext4
#LABEL=Data        /media/Data      ext4       defaults 0 2

#SH mis sur ancienne partition de swap mis en ext4
#LABEL=SH        /media/SH      ext4     defaults       0    2
--------------------------------------------------------------------------------

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

           GiB - GB             File                                 Fragment(s)

 710.957874298 = 763.385204736  boot/grub/i386-pc/core.img                     1
 717.994956970 = 770.941214720  boot/vmlinuz-4.4.0-139-generic                 1
 708.479217529 = 760.723767296  boot/vmlinuz-4.4.0-31-generic                  2
 711.570163727 = 764.042645504  boot/vmlinuz-4.4.0-59-generic                  1
 717.994956970 = 770.941214720  vmlinuz                                        1
 711.570163727 = 764.042645504  vmlinuz.old                                    1
 711.455532074 = 763.919560704  boot/initrd.img-4.4.0-139-generic              3
 711.243476868 = 763.691868160  boot/initrd.img-4.4.0-31-generic               3
 711.189907074 = 763.634348032  boot/initrd.img-4.4.0-59-generic               3
 711.455532074 = 763.919560704  initrd.img                                     3
 711.189907074 = 763.634348032  initrd.img.old                                 3

================================ sdb1/boot.ini: ================================

--------------------------------------------------------------------------------
[boot loader]
timeout=30
default=multi(0)disk(0)rdisk(0)partition(1)\WINDOWS
[operating systems]
multi(0)disk(0)rdisk(0)partition(1)\WINDOWS="Microsoft Windows XP \90dition familiale" /noexecute=optin /fastdetect
--------------------------------------------------------------------------------

=========================== sdb5/boot/grub/grub.cfg: ===========================

--------------------------------------------------------------------------------
#### 2020:04:12-15:04:17 : /boot/grub/grub.cfg modifié par ./modif_grub_V46_bis ####
# DO NOT EDIT THIS FILE
#
# It is automatically generated by grub-mkconfig using templates
# from /etc/grub.d and settings from /etc/default/grub
#

### BEGIN /etc/grub.d/00_header ###
if [ -s $prefix/grubenv ]; then
  set have_grubenv=true
  load_env
fi
if [ "${next_entry}" ] ; then
   set default="${next_entry}"
   set next_entry=
   save_env next_entry
   set boot_once=true
else
   set default="0"
fi

if [ x"${feature_menuentry_id}" = xy ]; then
  menuentry_id_option="--id"
else
  menuentry_id_option=""
fi

export menuentry_id_option

if [ "${prev_saved_entry}" ]; then
  set saved_entry="${prev_saved_entry}"
  save_env saved_entry
  set prev_saved_entry=
  save_env prev_saved_entry
  set boot_once=true
fi

function savedefault {
  if [ -z "${boot_once}" ]; then
    saved_entry="${chosen}"
    save_env saved_entry
  fi
}
function recordfail {
  set recordfail=1
  if [ -n "${have_grubenv}" ]; then if [ -z "${boot_once}" ]; then save_env recordfail; fi; fi
}
function load_video {
  if [ x$feature_all_video_module = xy ]; then
    insmod all_video
  else
    insmod efi_gop
    insmod efi_uga
    insmod ieee1275_fb
    insmod vbe
    insmod vga
    insmod video_bochs
    insmod video_cirrus
  fi
}

if [ x$feature_default_font_path = xy ] ; then
   font=unicode
else
insmod part_msdos
insmod ext2
set root='hd1,msdos5'
if [ x$feature_platform_search_hint = xy ]; then
  search --no-floppy --fs-uuid --set=root --hint-bios=hd1,msdos5 --hint-efi=hd1,msdos5 --hint-baremetal=ahci1,msdos5  a17886e2-7520-42fb-bb3c-7b43781cf5bc
else
  search --no-floppy --fs-uuid --set=root a17886e2-7520-42fb-bb3c-7b43781cf5bc
fi
    font="/usr/share/grub/unicode.pf2"
fi

if loadfont $font ; then
  set gfxmode=auto
  load_video
  insmod gfxterm
  set locale_dir=$prefix/locale
  set lang=fr_FR
  insmod gettext
fi
terminal_output gfxterm
if [ "${recordfail}" = 1 ] ; then
  set timeout=30
else
  if [ x$feature_timeout_style = xy ] ; then
    set timeout_style=menu
    set timeout=10
  # Fallback normal timeout code in case the timeout_style feature is
  # unavailable.
  else
    set timeout=10
  fi
fi
### END /etc/grub.d/00_header ###

### BEGIN /etc/grub.d/05_debian_theme ###
set menu_color_normal=white/black
set menu_color_highlight=black/light-gray
if background_color 44,0,30,0; then
  clear
fi
### END /etc/grub.d/05_debian_theme ###

### BEGIN /etc/grub.d/10_linux ###
function gfxmode {
	set gfxpayload="${1}"
	if [ "${1}" = "keep" ]; then
		set vt_handoff=vt.handoff=7
	else
		set vt_handoff=
	fi
}
if [ "${recordfail}" != 1 ]; then
  if [ -e ${prefix}/gfxblacklist.txt ]; then
    if hwmatch ${prefix}/gfxblacklist.txt 3; then
      if [ ${match} = 0 ]; then
        set linux_gfx_mode=keep
      else
        set linux_gfx_mode=text
      fi
    else
      set linux_gfx_mode=text
    fi
  else
    set linux_gfx_mode=keep
  fi
else
  set linux_gfx_mode=text
fi
export linux_gfx_mode
menuentry 'U16.04-b5-64b : Ubuntu' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-simple-a17886e2-7520-42fb-bb3c-7b43781cf5bc' {
	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='hd1,msdos5'
	if [ x$feature_platform_search_hint = xy ]; then
	  search --no-floppy --fs-uuid --set=root --hint-bios=hd1,msdos5 --hint-efi=hd1,msdos5 --hint-baremetal=ahci1,msdos5  a17886e2-7520-42fb-bb3c-7b43781cf5bc
	else
	  search --no-floppy --fs-uuid --set=root a17886e2-7520-42fb-bb3c-7b43781cf5bc
	fi
        linux	/boot/vmlinuz-4.4.0-177-generic root=UUID=a17886e2-7520-42fb-bb3c-7b43781cf5bc ro  quiet splash $vt_handoff
	initrd	/boot/initrd.img-4.4.0-177-generic
}
submenu 'U16.04-b5-64b : Options avancées pour Ubuntu' $menuentry_id_option 'gnulinux-advanced-a17886e2-7520-42fb-bb3c-7b43781cf5bc' {
	menuentry 'U16.04-b5-64b : Ubuntu, avec Linux 4.4.0-177-generic' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-4.4.0-177-generic-advanced-a17886e2-7520-42fb-bb3c-7b43781cf5bc' {
		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='hd1,msdos5'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd1,msdos5 --hint-efi=hd1,msdos5 --hint-baremetal=ahci1,msdos5  a17886e2-7520-42fb-bb3c-7b43781cf5bc
		else
		  search --no-floppy --fs-uuid --set=root a17886e2-7520-42fb-bb3c-7b43781cf5bc
		fi
		echo	'Chargement de Linux 4.4.0-177-generic…'
	        linux	/boot/vmlinuz-4.4.0-177-generic root=UUID=a17886e2-7520-42fb-bb3c-7b43781cf5bc ro  quiet splash $vt_handoff
		echo	'Chargement du disque mémoire initial…'
		initrd	/boot/initrd.img-4.4.0-177-generic
	}
	menuentry 'U16.04-b5-64b : Ubuntu, with Linux 4.4.0-177-generic (upstart)' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-4.4.0-177-generic-init-upstart-a17886e2-7520-42fb-bb3c-7b43781cf5bc' {
		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='hd1,msdos5'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd1,msdos5 --hint-efi=hd1,msdos5 --hint-baremetal=ahci1,msdos5  a17886e2-7520-42fb-bb3c-7b43781cf5bc
		else
		  search --no-floppy --fs-uuid --set=root a17886e2-7520-42fb-bb3c-7b43781cf5bc
		fi
		echo	'Chargement de Linux 4.4.0-177-generic…'
	        linux	/boot/vmlinuz-4.4.0-177-generic root=UUID=a17886e2-7520-42fb-bb3c-7b43781cf5bc ro  quiet splash $vt_handoff init=/sbin/upstart
		echo	'Chargement du disque mémoire initial…'
		initrd	/boot/initrd.img-4.4.0-177-generic
	}
	menuentry 'U16.04-b5-64b : Ubuntu, with Linux 4.4.0-177-generic (recovery mode)' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-4.4.0-177-generic-recovery-a17886e2-7520-42fb-bb3c-7b43781cf5bc' {
		recordfail
		load_video
		insmod gzio
		if [ x$grub_platform = xxen ]; then insmod xzio; insmod lzopio; fi
		insmod part_msdos
		insmod ext2
		set root='hd1,msdos5'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd1,msdos5 --hint-efi=hd1,msdos5 --hint-baremetal=ahci1,msdos5  a17886e2-7520-42fb-bb3c-7b43781cf5bc
		else
		  search --no-floppy --fs-uuid --set=root a17886e2-7520-42fb-bb3c-7b43781cf5bc
		fi
		echo	'Chargement de Linux 4.4.0-177-generic…'
	        linux	/boot/vmlinuz-4.4.0-177-generic root=UUID=a17886e2-7520-42fb-bb3c-7b43781cf5bc ro recovery nomodeset 
		echo	'Chargement du disque mémoire initial…'
		initrd	/boot/initrd.img-4.4.0-177-generic
	}
	menuentry 'U16.04-b5-64b : Ubuntu, avec Linux 4.4.0-173-generic' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-4.4.0-173-generic-advanced-a17886e2-7520-42fb-bb3c-7b43781cf5bc' {
		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='hd1,msdos5'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd1,msdos5 --hint-efi=hd1,msdos5 --hint-baremetal=ahci1,msdos5  a17886e2-7520-42fb-bb3c-7b43781cf5bc
		else
		  search --no-floppy --fs-uuid --set=root a17886e2-7520-42fb-bb3c-7b43781cf5bc
		fi
		echo	'Chargement de Linux 4.4.0-173-generic…'
	        linux	/boot/vmlinuz-4.4.0-173-generic root=UUID=a17886e2-7520-42fb-bb3c-7b43781cf5bc ro  quiet splash $vt_handoff
		echo	'Chargement du disque mémoire initial…'
		initrd	/boot/initrd.img-4.4.0-173-generic
	}
	menuentry 'U16.04-b5-64b : Ubuntu, with Linux 4.4.0-173-generic (upstart)' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-4.4.0-173-generic-init-upstart-a17886e2-7520-42fb-bb3c-7b43781cf5bc' {
		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='hd1,msdos5'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd1,msdos5 --hint-efi=hd1,msdos5 --hint-baremetal=ahci1,msdos5  a17886e2-7520-42fb-bb3c-7b43781cf5bc
		else
		  search --no-floppy --fs-uuid --set=root a17886e2-7520-42fb-bb3c-7b43781cf5bc
		fi
		echo	'Chargement de Linux 4.4.0-173-generic…'
	        linux	/boot/vmlinuz-4.4.0-173-generic root=UUID=a17886e2-7520-42fb-bb3c-7b43781cf5bc ro  quiet splash $vt_handoff init=/sbin/upstart
		echo	'Chargement du disque mémoire initial…'
		initrd	/boot/initrd.img-4.4.0-173-generic
	}
	menuentry 'U16.04-b5-64b : Ubuntu, with Linux 4.4.0-173-generic (recovery mode)' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-4.4.0-173-generic-recovery-a17886e2-7520-42fb-bb3c-7b43781cf5bc' {
		recordfail
		load_video
		insmod gzio
		if [ x$grub_platform = xxen ]; then insmod xzio; insmod lzopio; fi
		insmod part_msdos
		insmod ext2
		set root='hd1,msdos5'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd1,msdos5 --hint-efi=hd1,msdos5 --hint-baremetal=ahci1,msdos5  a17886e2-7520-42fb-bb3c-7b43781cf5bc
		else
		  search --no-floppy --fs-uuid --set=root a17886e2-7520-42fb-bb3c-7b43781cf5bc
		fi
		echo	'Chargement de Linux 4.4.0-173-generic…'
	        linux	/boot/vmlinuz-4.4.0-173-generic root=UUID=a17886e2-7520-42fb-bb3c-7b43781cf5bc ro recovery nomodeset 
		echo	'Chargement du disque mémoire initial…'
		initrd	/boot/initrd.img-4.4.0-173-generic
	}
}

### END /etc/grub.d/10_linux ###

### BEGIN /etc/grub.d/20_linux_xen ###

### END /etc/grub.d/20_linux_xen ###

### BEGIN /etc/grub.d/20_memtest86+ ###
menuentry 'Memory test (memtest86+)' {
	insmod part_msdos
	insmod ext2
	set root='hd1,msdos5'
	if [ x$feature_platform_search_hint = xy ]; then
	  search --no-floppy --fs-uuid --set=root --hint-bios=hd1,msdos5 --hint-efi=hd1,msdos5 --hint-baremetal=ahci1,msdos5  a17886e2-7520-42fb-bb3c-7b43781cf5bc
	else
	  search --no-floppy --fs-uuid --set=root a17886e2-7520-42fb-bb3c-7b43781cf5bc
	fi
	knetbsd	/boot/memtest86+.elf
}
menuentry 'Memory test (memtest86+, serial console 115200)' {
	insmod part_msdos
	insmod ext2
	set root='hd1,msdos5'
	if [ x$feature_platform_search_hint = xy ]; then
	  search --no-floppy --fs-uuid --set=root --hint-bios=hd1,msdos5 --hint-efi=hd1,msdos5 --hint-baremetal=ahci1,msdos5  a17886e2-7520-42fb-bb3c-7b43781cf5bc
	else
	  search --no-floppy --fs-uuid --set=root a17886e2-7520-42fb-bb3c-7b43781cf5bc
	fi
	linux16	/boot/memtest86+.bin console=ttyS0,115200n8
}
### END /etc/grub.d/20_memtest86+ ###

### BEGIN /etc/grub.d/30_os-prober ###
menuentry 'Windows NT/2000/XP (sur /dev/sdb1)' --class windows --class os $menuentry_id_option 'osprober-chain-0AF8F8ED4E45274B' {
	insmod part_msdos
	insmod ntfs
	set root='hd1,msdos1'
	if [ x$feature_platform_search_hint = xy ]; then
	  search --no-floppy --fs-uuid --set=root --hint-bios=hd1,msdos1 --hint-efi=hd1,msdos1 --hint-baremetal=ahci1,msdos1  0AF8F8ED4E45274B
	else
	  search --no-floppy --fs-uuid --set=root 0AF8F8ED4E45274B
	fi
	parttool ${root} hidden-
	drivemap -s (hd0) ${root}
	chainloader +1
}
menuentry 'Windows NT/2000/XP (sur /dev/sdc1)' --class windows --class os $menuentry_id_option 'osprober-chain-78684472684430E4' {
	insmod part_msdos
	insmod ntfs
	set root='hd2,msdos1'
	if [ x$feature_platform_search_hint = xy ]; then
	  search --no-floppy --fs-uuid --set=root --hint-bios=hd2,msdos1 --hint-efi=hd2,msdos1 --hint-baremetal=ahci2,msdos1  78684472684430E4
	else
	  search --no-floppy --fs-uuid --set=root 78684472684430E4
	fi
	parttool ${root} hidden-
	drivemap -s (hd0) ${root}
	chainloader +1
}
menuentry 'U18.04-d1 : Ubuntu 18.04.4 LTS (18.04) (sur /dev/sdd1)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-simple-c14de089-0371-46f3-829f-b3d2e715d031' {
	insmod part_msdos
	insmod ext2
	set root='hd3,msdos1'
	if [ x$feature_platform_search_hint = xy ]; then
	  search --no-floppy --fs-uuid --set=root --hint-bios=hd3,msdos1 --hint-efi=hd3,msdos1 --hint-baremetal=ahci3,msdos1  c14de089-0371-46f3-829f-b3d2e715d031
	else
	  search --no-floppy --fs-uuid --set=root c14de089-0371-46f3-829f-b3d2e715d031
	fi
	linux /boot/vmlinuz-4.15.0-96-generic root=UUID=c14de089-0371-46f3-829f-b3d2e715d031 ro quiet splash $vt_handoff
	initrd /boot/initrd.img-4.15.0-96-generic
}
submenu 'U18.04-d1 : Options avancées pour Ubuntu 18.04.4 LTS (18.04) (sur /dev/sdd1)' $menuentry_id_option 'osprober-gnulinux-advanced-c14de089-0371-46f3-829f-b3d2e715d031' {
	menuentry 'U18.04-d1  Ubuntu (sur /dev/sdd1)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-4.15.0-96-generic--c14de089-0371-46f3-829f-b3d2e715d031' {
		insmod part_msdos
		insmod ext2
		set root='hd3,msdos1'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd3,msdos1 --hint-efi=hd3,msdos1 --hint-baremetal=ahci3,msdos1  c14de089-0371-46f3-829f-b3d2e715d031
		else
		  search --no-floppy --fs-uuid --set=root c14de089-0371-46f3-829f-b3d2e715d031
		fi
		linux /boot/vmlinuz-4.15.0-96-generic root=UUID=c14de089-0371-46f3-829f-b3d2e715d031 ro quiet splash $vt_handoff
		initrd /boot/initrd.img-4.15.0-96-generic
	}
	menuentry 'U18.04-d1  Ubuntu, avec Linux 4.15.0-96-generic (sur /dev/sdd1)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-4.15.0-96-generic--c14de089-0371-46f3-829f-b3d2e715d031' {
		insmod part_msdos
		insmod ext2
		set root='hd3,msdos1'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd3,msdos1 --hint-efi=hd3,msdos1 --hint-baremetal=ahci3,msdos1  c14de089-0371-46f3-829f-b3d2e715d031
		else
		  search --no-floppy --fs-uuid --set=root c14de089-0371-46f3-829f-b3d2e715d031
		fi
		linux /boot/vmlinuz-4.15.0-96-generic root=UUID=c14de089-0371-46f3-829f-b3d2e715d031 ro quiet splash $vt_handoff
		initrd /boot/initrd.img-4.15.0-96-generic
	}
	menuentry 'U18.04-d1  Ubuntu, with Linux 4.15.0-96-generic (recovery mode) (sur /dev/sdd1)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-4.15.0-96-generic-root=UUID=c14de089-0371-46f3-829f-b3d2e715d031 ro recovery nomodeset-c14de089-0371-46f3-829f-b3d2e715d031' {
		insmod part_msdos
		insmod ext2
		set root='hd3,msdos1'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd3,msdos1 --hint-efi=hd3,msdos1 --hint-baremetal=ahci3,msdos1  c14de089-0371-46f3-829f-b3d2e715d031
		else
		  search --no-floppy --fs-uuid --set=root c14de089-0371-46f3-829f-b3d2e715d031
		fi
		linux /boot/vmlinuz-4.15.0-96-generic root=UUID=c14de089-0371-46f3-829f-b3d2e715d031 ro recovery nomodeset
		initrd /boot/initrd.img-4.15.0-96-generic
	}
	menuentry 'U18.04-d1  Ubuntu, avec Linux 4.15.0-91-generic (sur /dev/sdd1)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-4.15.0-91-generic--c14de089-0371-46f3-829f-b3d2e715d031' {
		insmod part_msdos
		insmod ext2
		set root='hd3,msdos1'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd3,msdos1 --hint-efi=hd3,msdos1 --hint-baremetal=ahci3,msdos1  c14de089-0371-46f3-829f-b3d2e715d031
		else
		  search --no-floppy --fs-uuid --set=root c14de089-0371-46f3-829f-b3d2e715d031
		fi
		linux /boot/vmlinuz-4.15.0-91-generic root=UUID=c14de089-0371-46f3-829f-b3d2e715d031 ro quiet splash $vt_handoff
		initrd /boot/initrd.img-4.15.0-91-generic
	}
	menuentry 'U18.04-d1  Ubuntu, with Linux 4.15.0-91-generic (recovery mode) (sur /dev/sdd1)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-4.15.0-91-generic-root=UUID=c14de089-0371-46f3-829f-b3d2e715d031 ro recovery nomodeset-c14de089-0371-46f3-829f-b3d2e715d031' {
		insmod part_msdos
		insmod ext2
		set root='hd3,msdos1'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd3,msdos1 --hint-efi=hd3,msdos1 --hint-baremetal=ahci3,msdos1  c14de089-0371-46f3-829f-b3d2e715d031
		else
		  search --no-floppy --fs-uuid --set=root c14de089-0371-46f3-829f-b3d2e715d031
		fi
		linux /boot/vmlinuz-4.15.0-91-generic root=UUID=c14de089-0371-46f3-829f-b3d2e715d031 ro recovery nomodeset
		initrd /boot/initrd.img-4.15.0-91-generic
	}
}

menuentry '18-4-EFI : Ubuntu 18.04.4 LTS (18.04) (sur /dev/sde2)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-simple-b1e72033-59f5-47fa-84fa-5242a2580ed0' {
	insmod part_gpt
	insmod ext2
	set root='hd4,gpt2'
	if [ x$feature_platform_search_hint = xy ]; then
	  search --no-floppy --fs-uuid --set=root --hint-bios=hd4,gpt2 --hint-efi=hd4,gpt2 --hint-baremetal=ahci4,gpt2  b1e72033-59f5-47fa-84fa-5242a2580ed0
	else
	  search --no-floppy --fs-uuid --set=root b1e72033-59f5-47fa-84fa-5242a2580ed0
	fi
	linux /boot/vmlinuz-4.15.0-96-generic root=UUID=b1e72033-59f5-47fa-84fa-5242a2580ed0 ro quiet splash $vt_handoff
	initrd /boot/initrd.img-4.15.0-96-generic
}
submenu '18-4-EFI : Options avancées pour Ubuntu 18.04.4 LTS (18.04) (sur /dev/sde2)' $menuentry_id_option 'osprober-gnulinux-advanced-b1e72033-59f5-47fa-84fa-5242a2580ed0' {
	menuentry '18-4-EFI  Ubuntu (sur /dev/sde2)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-4.15.0-96-generic--b1e72033-59f5-47fa-84fa-5242a2580ed0' {
		insmod part_gpt
		insmod ext2
		set root='hd4,gpt2'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd4,gpt2 --hint-efi=hd4,gpt2 --hint-baremetal=ahci4,gpt2  b1e72033-59f5-47fa-84fa-5242a2580ed0
		else
		  search --no-floppy --fs-uuid --set=root b1e72033-59f5-47fa-84fa-5242a2580ed0
		fi
		linux /boot/vmlinuz-4.15.0-96-generic root=UUID=b1e72033-59f5-47fa-84fa-5242a2580ed0 ro quiet splash $vt_handoff
		initrd /boot/initrd.img-4.15.0-96-generic
	}
	menuentry '18-4-EFI  Ubuntu, avec Linux 4.15.0-96-generic (sur /dev/sde2)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-4.15.0-96-generic--b1e72033-59f5-47fa-84fa-5242a2580ed0' {
		insmod part_gpt
		insmod ext2
		set root='hd4,gpt2'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd4,gpt2 --hint-efi=hd4,gpt2 --hint-baremetal=ahci4,gpt2  b1e72033-59f5-47fa-84fa-5242a2580ed0
		else
		  search --no-floppy --fs-uuid --set=root b1e72033-59f5-47fa-84fa-5242a2580ed0
		fi
		linux /boot/vmlinuz-4.15.0-96-generic root=UUID=b1e72033-59f5-47fa-84fa-5242a2580ed0 ro quiet splash $vt_handoff
		initrd /boot/initrd.img-4.15.0-96-generic
	}
	menuentry '18-4-EFI  Ubuntu, with Linux 4.15.0-96-generic (recovery mode) (sur /dev/sde2)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-4.15.0-96-generic-root=UUID=b1e72033-59f5-47fa-84fa-5242a2580ed0 ro recovery nomodeset-b1e72033-59f5-47fa-84fa-5242a2580ed0' {
		insmod part_gpt
		insmod ext2
		set root='hd4,gpt2'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd4,gpt2 --hint-efi=hd4,gpt2 --hint-baremetal=ahci4,gpt2  b1e72033-59f5-47fa-84fa-5242a2580ed0
		else
		  search --no-floppy --fs-uuid --set=root b1e72033-59f5-47fa-84fa-5242a2580ed0
		fi
		linux /boot/vmlinuz-4.15.0-96-generic root=UUID=b1e72033-59f5-47fa-84fa-5242a2580ed0 ro recovery nomodeset
		initrd /boot/initrd.img-4.15.0-96-generic
	}
	menuentry '18-4-EFI  Ubuntu, avec Linux 4.15.0-29-generic (sur /dev/sde2)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-4.15.0-29-generic--b1e72033-59f5-47fa-84fa-5242a2580ed0' {
		insmod part_gpt
		insmod ext2
		set root='hd4,gpt2'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd4,gpt2 --hint-efi=hd4,gpt2 --hint-baremetal=ahci4,gpt2  b1e72033-59f5-47fa-84fa-5242a2580ed0
		else
		  search --no-floppy --fs-uuid --set=root b1e72033-59f5-47fa-84fa-5242a2580ed0
		fi
		linux /boot/vmlinuz-4.15.0-29-generic root=UUID=b1e72033-59f5-47fa-84fa-5242a2580ed0 ro quiet splash $vt_handoff
		initrd /boot/initrd.img-4.15.0-29-generic
	}
	menuentry '18-4-EFI  Ubuntu, with Linux 4.15.0-29-generic (recovery mode) (sur /dev/sde2)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-4.15.0-29-generic-root=UUID=b1e72033-59f5-47fa-84fa-5242a2580ed0 ro recovery nomodeset-b1e72033-59f5-47fa-84fa-5242a2580ed0' {
		insmod part_gpt
		insmod ext2
		set root='hd4,gpt2'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd4,gpt2 --hint-efi=hd4,gpt2 --hint-baremetal=ahci4,gpt2  b1e72033-59f5-47fa-84fa-5242a2580ed0
		else
		  search --no-floppy --fs-uuid --set=root b1e72033-59f5-47fa-84fa-5242a2580ed0
		fi
		linux /boot/vmlinuz-4.15.0-29-generic root=UUID=b1e72033-59f5-47fa-84fa-5242a2580ed0 ro recovery nomodeset
		initrd /boot/initrd.img-4.15.0-29-generic
	}
}

set timeout_style=menu
if [ "${timeout}" = 0 ]; then
  set timeout=10
fi
### END /etc/grub.d/30_os-prober ###

### BEGIN /etc/grub.d/30_uefi-firmware ###
### END /etc/grub.d/30_uefi-firmware ###

### BEGIN /etc/grub.d/40_custom ###
# This file provides an easy way to add custom menu entries.  Simply type the
# menu entries you want to add after this comment.  Be careful not to change
# the 'exec tail' line above.
### END /etc/grub.d/40_custom ###

### BEGIN /etc/grub.d/41_custom ###
if [ -f  ${config_directory}/custom.cfg ]; then
  source ${config_directory}/custom.cfg
elif [ -z "${config_directory}" -a -f  $prefix/custom.cfg ]; then
  source $prefix/custom.cfg;
fi
### END /etc/grub.d/41_custom ###
--------------------------------------------------------------------------------

=============================== sdb5/etc/fstab: ================================

--------------------------------------------------------------------------------
# /etc/fstab: static file system information.
#
# Use 'blkid' to print the universally unique identifier for a
# device; this may be used with UUID= as a more robust way to name devices
# that works even if disks are added and removed. See fstab(5).
#
# <file system> <mount point>   <type>  <options>       <dump>  <pass>
# / was on /dev/sdb11 during installation
UUID=a17886e2-7520-42fb-bb3c-7b43781cf5bc /               ext4    errors=remount-ro 0       1

# je ne laisse qu'une seule swap
# swap was on /dev/sdb5 during installation
#UUID=a4635c0b-fed5-4c44-aeb7-137447cf06da none            swap    sw              0       0
# modification du partitionnement-swap sur sdb6
UUID=7cfd4b7b-e842-45ee-b53f-89d738dc041d none            swap    sw              0       0


LABEL=SH        /media/SH      ext4     defaults       0    2
#LABEL=film      /media/film    ext4     defaults       0    2
LABEL=Data      /media/Data    ext4     defaults       0    2

# UUID=672B204C384159C7 /media/Z ntfs     defaults       0    0
# décommenter la ligne suivante fait planter le système (fuseblk au lieu de ntfs)
#UUID=672B204C384159C7 /media/ fuseblk rw,nosuid,nodev,relatime,user_id=0,group_id=0,default_permissions,allow_other,blksize=4096  0 0




/dev/fd0        /media/floppy0  auto    rw,user,noauto,exec,utf8 0       0

# swap was on /dev/sda6 during installation enlevée
#UUID=81b7d41d-574c-4d4b-8740-3e6c55400674 none            swap    sw              0       0

# swap was on /dev/sda8 during installation enlevée
#UUID=a1516336-9bb7-4c9f-b63e-9cab2d58e8f1 none            swap    sw              0       0

# swap was on /dev/sdd6 during installation enlevée
#UUID=de7c7e33-a5b4-4bd4-be64-e1e59ae987a6 none            swap    sw              0       0

--------------------------------------------------------------------------------

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

           GiB - GB             File                                 Fragment(s)

 198.294940948 = 212.917571584  boot/grub/grub.cfg                             1
 198.709224701 = 213.362405376  boot/grub/i386-pc/core.img                     1
 187.981082916 = 201.843150848  boot/vmlinuz-4.4.0-173-generic                 1
 189.363159180 = 203.327143936  boot/vmlinuz-4.4.0-177-generic                 1
 189.363159180 = 203.327143936  vmlinuz                                        1
 187.981082916 = 201.843150848  vmlinuz.old                                    1
 207.785652161 = 223.108145152  boot/initrd.img-4.4.0-173-generic              5
 207.770023346 = 223.091363840  boot/initrd.img-4.4.0-177-generic              7
 207.770023346 = 223.091363840  initrd.img                                     7
 207.785652161 = 223.108145152  initrd.img.old                                 5

================================ sdc1/boot.ini: ================================

--------------------------------------------------------------------------------
[boot loader]
timeout=30
default=multi(0)disk(0)rdisk(0)partition(1)\WINDOWS
[operating systems]
multi(0)disk(0)rdisk(0)partition(1)\WINDOWS="Microsoft Windows XP \90dition familiale" /noexecute=optin /fastdetect
--------------------------------------------------------------------------------

=============================== sdc9/etc/fstab: ================================

--------------------------------------------------------------------------------
# /etc/fstab: static file system information.
#
# Use 'blkid' to print the universally unique identifier for a
# device; this may be used with UUID= as a more robust way to name devices
# that works even if disks are added and removed. See fstab(5).
#
# <file system> <mount point>   <type>  <options>       <dump>  <pass>
# / was on /dev/sdc9 during installation
UUID=3e774a44-b817-4b60-964c-46d4808d17ef /               ext4    errors=remount-ro 0       1
# utilisation de la swap sur le même disque sdc
UUID=722d52ca-7c00-4e99-a810-9db3288fac4a none            swap    sw              0       0
# ajout manuel de Data
LABEL=Data        /media/Data      ext4       defaults 0 2
#Ajout manuel se SH
LABEL=SH        /media/SH      ext4     defaults       0    


/dev/fd0        /media/floppy0  auto    rw,user,noauto,exec,utf8 0       0

#suppression des swap sur sda et sdb
# swap was on /dev/sda6 during installation
#UUID=81b7d41d-574c-4d4b-8740-3e6c55400674 none            swap    sw              0       0
# swap was on /dev/sda8 during installation
#UUID=a1516336-9bb7-4c9f-b63e-9cab2d58e8f1 none            swap    sw              0       0
# swap was on /dev/sdb5 during installation
#UUID=a4635c0b-fed5-4c44-aeb7-137447cf06da none            swap    sw              0       0
--------------------------------------------------------------------------------

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

           GiB - GB             File                                 Fragment(s)

 678.760864258 = 728.813928448  boot/grub/i386-pc/core.img                     1
 665.637905121 = 714.723258368  boot/vmlinuz-4.10.0-19-generic                 1
 690.091037750 = 740.979609600  boot/vmlinuz-4.10.0-24-generic                 1
 667.764030457 = 717.006168064  boot/vmlinuz-4.10.0-38-generic                 1
 667.764030457 = 717.006168064  vmlinuz                                        1
 690.091037750 = 740.979609600  vmlinuz.old                                    1
 689.374114990 = 740.209819648  boot/initrd.img-4.10.0-19-generic              4
 691.405250549 = 742.390734848  boot/initrd.img-4.10.0-24-generic              1
 691.693233490 = 742.699954176  boot/initrd.img-4.10.0-38-generic              2
 691.693233490 = 742.699954176  initrd.img                                     2
 691.405250549 = 742.390734848  initrd.img.old                                 1

========================== sdc11/boot/grub/grub.cfg: ===========================

--------------------------------------------------------------------------------
#### 2020:04:12-14:42:27 : /boot/grub/grub.cfg modifié par /media/SH/grub/V46/modif_grub_V46_bis ####
# DO NOT EDIT THIS FILE
#
# It is automatically generated by grub-mkconfig using templates
# from /etc/grub.d and settings from /etc/default/grub
#

### BEGIN /etc/grub.d/00_header ###
if [ -s $prefix/grubenv ]; then
  set have_grubenv=true
  load_env
fi
if [ "${next_entry}" ] ; then
   set default="${next_entry}"
   set next_entry=
   save_env next_entry
   set boot_once=true
else
   set default="0"
fi

if [ x"${feature_menuentry_id}" = xy ]; then
  menuentry_id_option="--id"
else
  menuentry_id_option=""
fi

export menuentry_id_option

if [ "${prev_saved_entry}" ]; then
  set saved_entry="${prev_saved_entry}"
  save_env saved_entry
  set prev_saved_entry=
  save_env prev_saved_entry
  set boot_once=true
fi

function savedefault {
  if [ -z "${boot_once}" ]; then
    saved_entry="${chosen}"
    save_env saved_entry
  fi
}
function recordfail {
  set recordfail=1
  if [ -n "${have_grubenv}" ]; then if [ -z "${boot_once}" ]; then save_env recordfail; fi; fi
}
function load_video {
  if [ x$feature_all_video_module = xy ]; then
    insmod all_video
  else
    insmod efi_gop
    insmod efi_uga
    insmod ieee1275_fb
    insmod vbe
    insmod vga
    insmod video_bochs
    insmod video_cirrus
  fi
}

if [ x$feature_default_font_path = xy ] ; then
   font=unicode
else
insmod part_msdos
insmod ext2
set root='hd2,msdos11'
if [ x$feature_platform_search_hint = xy ]; then
  search --no-floppy --fs-uuid --set=root --hint-bios=hd2,msdos11 --hint-efi=hd2,msdos11 --hint-baremetal=ahci2,msdos11  3aabc8ae-d129-419c-bb5a-1292d98ec0f6
else
  search --no-floppy --fs-uuid --set=root 3aabc8ae-d129-419c-bb5a-1292d98ec0f6
fi
    font="/usr/share/grub/unicode.pf2"
fi

if loadfont $font ; then
  set gfxmode=auto
  load_video
  insmod gfxterm
  set locale_dir=$prefix/locale
  set lang=fr_FR
  insmod gettext
fi
terminal_output gfxterm
if [ "${recordfail}" = 1 ] ; then
  set timeout=30
else
  if [ x$feature_timeout_style = xy ] ; then
    set timeout_style=hidden
    set timeout=10
  # Fallback hidden-timeout code in case the timeout_style feature is
  # unavailable.
  elif sleep --interruptible 10 ; then
    set timeout=0
  fi
fi
### END /etc/grub.d/00_header ###

### BEGIN /etc/grub.d/05_debian_theme ###
set menu_color_normal=white/black
set menu_color_highlight=black/light-gray
if background_color 44,0,30,0; then
  clear
fi
### END /etc/grub.d/05_debian_theme ###

### BEGIN /etc/grub.d/10_linux ###
function gfxmode {
	set gfxpayload="${1}"
	if [ "${1}" = "keep" ]; then
		set vt_handoff=vt.handoff=1
	else
		set vt_handoff=
	fi
}
if [ "${recordfail}" != 1 ]; then
  if [ -e ${prefix}/gfxblacklist.txt ]; then
    if hwmatch ${prefix}/gfxblacklist.txt 3; then
      if [ ${match} = 0 ]; then
        set linux_gfx_mode=keep
      else
        set linux_gfx_mode=text
      fi
    else
      set linux_gfx_mode=text
    fi
  else
    set linux_gfx_mode=keep
  fi
else
  set linux_gfx_mode=text
fi
export linux_gfx_mode
menuentry 'U18-04-c11 : Ubuntu' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-simple-3aabc8ae-d129-419c-bb5a-1292d98ec0f6' {
	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='hd2,msdos11'
	if [ x$feature_platform_search_hint = xy ]; then
	  search --no-floppy --fs-uuid --set=root --hint-bios=hd2,msdos11 --hint-efi=hd2,msdos11 --hint-baremetal=ahci2,msdos11  3aabc8ae-d129-419c-bb5a-1292d98ec0f6
	else
	  search --no-floppy --fs-uuid --set=root 3aabc8ae-d129-419c-bb5a-1292d98ec0f6
	fi
        linux	/boot/vmlinuz-4.15.0-96-generic root=UUID=3aabc8ae-d129-419c-bb5a-1292d98ec0f6 ro  quiet splash $vt_handoff
	initrd	/boot/initrd.img-4.15.0-96-generic
}
submenu 'U18-04-c11 : Options avancées pour Ubuntu' $menuentry_id_option 'gnulinux-advanced-3aabc8ae-d129-419c-bb5a-1292d98ec0f6' {
	menuentry 'U18-04-c11 : Ubuntu, avec Linux 4.15.0-96-generic' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-4.15.0-96-generic-advanced-3aabc8ae-d129-419c-bb5a-1292d98ec0f6' {
		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='hd2,msdos11'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd2,msdos11 --hint-efi=hd2,msdos11 --hint-baremetal=ahci2,msdos11  3aabc8ae-d129-419c-bb5a-1292d98ec0f6
		else
		  search --no-floppy --fs-uuid --set=root 3aabc8ae-d129-419c-bb5a-1292d98ec0f6
		fi
		echo	'Chargement de Linux 4.15.0-96-generic…'
	        linux	/boot/vmlinuz-4.15.0-96-generic root=UUID=3aabc8ae-d129-419c-bb5a-1292d98ec0f6 ro  quiet splash $vt_handoff
		echo	'Chargement du disque mémoire initial…'
		initrd	/boot/initrd.img-4.15.0-96-generic
	}
	menuentry 'U18-04-c11 : Ubuntu, with Linux 4.15.0-96-generic (recovery mode)' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-4.15.0-96-generic-recovery-3aabc8ae-d129-419c-bb5a-1292d98ec0f6' {
		recordfail
		load_video
		insmod gzio
		if [ x$grub_platform = xxen ]; then insmod xzio; insmod lzopio; fi
		insmod part_msdos
		insmod ext2
		set root='hd2,msdos11'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd2,msdos11 --hint-efi=hd2,msdos11 --hint-baremetal=ahci2,msdos11  3aabc8ae-d129-419c-bb5a-1292d98ec0f6
		else
		  search --no-floppy --fs-uuid --set=root 3aabc8ae-d129-419c-bb5a-1292d98ec0f6
		fi
		echo	'Chargement de Linux 4.15.0-96-generic…'
	        linux	/boot/vmlinuz-4.15.0-96-generic root=UUID=3aabc8ae-d129-419c-bb5a-1292d98ec0f6 ro recovery nomodeset 
		echo	'Chargement du disque mémoire initial…'
		initrd	/boot/initrd.img-4.15.0-96-generic
	}
	menuentry 'U18-04-c11 : Ubuntu, avec Linux 4.15.0-55-generic' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-4.15.0-55-generic-advanced-3aabc8ae-d129-419c-bb5a-1292d98ec0f6' {
		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='hd2,msdos11'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd2,msdos11 --hint-efi=hd2,msdos11 --hint-baremetal=ahci2,msdos11  3aabc8ae-d129-419c-bb5a-1292d98ec0f6
		else
		  search --no-floppy --fs-uuid --set=root 3aabc8ae-d129-419c-bb5a-1292d98ec0f6
		fi
		echo	'Chargement de Linux 4.15.0-55-generic…'
	        linux	/boot/vmlinuz-4.15.0-55-generic root=UUID=3aabc8ae-d129-419c-bb5a-1292d98ec0f6 ro  quiet splash $vt_handoff
		echo	'Chargement du disque mémoire initial…'
		initrd	/boot/initrd.img-4.15.0-55-generic
	}
	menuentry 'U18-04-c11 : Ubuntu, with Linux 4.15.0-55-generic (recovery mode)' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-4.15.0-55-generic-recovery-3aabc8ae-d129-419c-bb5a-1292d98ec0f6' {
		recordfail
		load_video
		insmod gzio
		if [ x$grub_platform = xxen ]; then insmod xzio; insmod lzopio; fi
		insmod part_msdos
		insmod ext2
		set root='hd2,msdos11'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd2,msdos11 --hint-efi=hd2,msdos11 --hint-baremetal=ahci2,msdos11  3aabc8ae-d129-419c-bb5a-1292d98ec0f6
		else
		  search --no-floppy --fs-uuid --set=root 3aabc8ae-d129-419c-bb5a-1292d98ec0f6
		fi
		echo	'Chargement de Linux 4.15.0-55-generic…'
	        linux	/boot/vmlinuz-4.15.0-55-generic root=UUID=3aabc8ae-d129-419c-bb5a-1292d98ec0f6 ro recovery nomodeset 
		echo	'Chargement du disque mémoire initial…'
		initrd	/boot/initrd.img-4.15.0-55-generic
	}
	menuentry 'U18-04-c11 : Ubuntu, avec Linux 4.15.0-42-generic' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-4.15.0-42-generic-advanced-3aabc8ae-d129-419c-bb5a-1292d98ec0f6' {
		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='hd2,msdos11'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd2,msdos11 --hint-efi=hd2,msdos11 --hint-baremetal=ahci2,msdos11  3aabc8ae-d129-419c-bb5a-1292d98ec0f6
		else
		  search --no-floppy --fs-uuid --set=root 3aabc8ae-d129-419c-bb5a-1292d98ec0f6
		fi
		echo	'Chargement de Linux 4.15.0-42-generic…'
	        linux	/boot/vmlinuz-4.15.0-42-generic root=UUID=3aabc8ae-d129-419c-bb5a-1292d98ec0f6 ro  quiet splash $vt_handoff
		echo	'Chargement du disque mémoire initial…'
		initrd	/boot/initrd.img-4.15.0-42-generic
	}
	menuentry 'U18-04-c11 : Ubuntu, with Linux 4.15.0-42-generic (recovery mode)' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-4.15.0-42-generic-recovery-3aabc8ae-d129-419c-bb5a-1292d98ec0f6' {
		recordfail
		load_video
		insmod gzio
		if [ x$grub_platform = xxen ]; then insmod xzio; insmod lzopio; fi
		insmod part_msdos
		insmod ext2
		set root='hd2,msdos11'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd2,msdos11 --hint-efi=hd2,msdos11 --hint-baremetal=ahci2,msdos11  3aabc8ae-d129-419c-bb5a-1292d98ec0f6
		else
		  search --no-floppy --fs-uuid --set=root 3aabc8ae-d129-419c-bb5a-1292d98ec0f6
		fi
		echo	'Chargement de Linux 4.15.0-42-generic…'
	        linux	/boot/vmlinuz-4.15.0-42-generic root=UUID=3aabc8ae-d129-419c-bb5a-1292d98ec0f6 ro recovery nomodeset 
		echo	'Chargement du disque mémoire initial…'
		initrd	/boot/initrd.img-4.15.0-42-generic
	}
}

### END /etc/grub.d/10_linux ###

### BEGIN /etc/grub.d/20_linux_xen ###

### END /etc/grub.d/20_linux_xen ###

### BEGIN /etc/grub.d/20_memtest86+ ###
menuentry 'Memory test (memtest86+)' {
	insmod part_msdos
	insmod ext2
	set root='hd2,msdos11'
	if [ x$feature_platform_search_hint = xy ]; then
	  search --no-floppy --fs-uuid --set=root --hint-bios=hd2,msdos11 --hint-efi=hd2,msdos11 --hint-baremetal=ahci2,msdos11  3aabc8ae-d129-419c-bb5a-1292d98ec0f6
	else
	  search --no-floppy --fs-uuid --set=root 3aabc8ae-d129-419c-bb5a-1292d98ec0f6
	fi
	knetbsd	/boot/memtest86+.elf
}
menuentry 'Memory test (memtest86+, serial console 115200)' {
	insmod part_msdos
	insmod ext2
	set root='hd2,msdos11'
	if [ x$feature_platform_search_hint = xy ]; then
	  search --no-floppy --fs-uuid --set=root --hint-bios=hd2,msdos11 --hint-efi=hd2,msdos11 --hint-baremetal=ahci2,msdos11  3aabc8ae-d129-419c-bb5a-1292d98ec0f6
	else
	  search --no-floppy --fs-uuid --set=root 3aabc8ae-d129-419c-bb5a-1292d98ec0f6
	fi
	linux16	/boot/memtest86+.bin console=ttyS0,115200n8
}
### END /etc/grub.d/20_memtest86+ ###

### BEGIN /etc/grub.d/30_os-prober ###
menuentry 'Windows NT/2000/XP (sur /dev/sdb1)' --class windows --class os $menuentry_id_option 'osprober-chain-0AF8F8ED4E45274B' {
	insmod part_msdos
	insmod ntfs
	set root='hd1,msdos1'
	if [ x$feature_platform_search_hint = xy ]; then
	  search --no-floppy --fs-uuid --set=root --hint-bios=hd1,msdos1 --hint-efi=hd1,msdos1 --hint-baremetal=ahci1,msdos1  0AF8F8ED4E45274B
	else
	  search --no-floppy --fs-uuid --set=root 0AF8F8ED4E45274B
	fi
	parttool ${root} hidden-
	drivemap -s (hd0) ${root}
	chainloader +1
}
menuentry 'Windows NT/2000/XP (sur /dev/sdc1)' --class windows --class os $menuentry_id_option 'osprober-chain-78684472684430E4' {
	insmod part_msdos
	insmod ntfs
	set root='hd2,msdos1'
	if [ x$feature_platform_search_hint = xy ]; then
	  search --no-floppy --fs-uuid --set=root --hint-bios=hd2,msdos1 --hint-efi=hd2,msdos1 --hint-baremetal=ahci2,msdos1  78684472684430E4
	else
	  search --no-floppy --fs-uuid --set=root 78684472684430E4
	fi
	parttool ${root} hidden-
	drivemap -s (hd0) ${root}
	chainloader +1
}
menuentry 'U18.04-d1 : Ubuntu 18.04.4 LTS (18.04) (sur /dev/sdd1)' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-simple-c14de089-0371-46f3-829f-b3d2e715d031' {
	insmod part_msdos
	insmod ext2
	set root='hd3,msdos1'
	if [ x$feature_platform_search_hint = xy ]; then
	  search --no-floppy --fs-uuid --set=root --hint-bios=hd3,msdos1 --hint-efi=hd3,msdos1 --hint-baremetal=ahci3,msdos1  c14de089-0371-46f3-829f-b3d2e715d031
	else
	  search --no-floppy --fs-uuid --set=root c14de089-0371-46f3-829f-b3d2e715d031
	fi
	linux /boot/vmlinuz-4.15.0-96-generic root=UUID=c14de089-0371-46f3-829f-b3d2e715d031 ro quiet splash $vt_handoff
	initrd /boot/initrd.img-4.15.0-96-generic
}
submenu 'U18.04-d1 : Options avancées pour Ubuntu 18.04.4 LTS (18.04) (sur /dev/sdd1)' $menuentry_id_option 'osprober-gnulinux-advanced-c14de089-0371-46f3-829f-b3d2e715d031' {
	menuentry 'U18.04-d1  Ubuntu (sur /dev/sdd1)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-4.15.0-96-generic--c14de089-0371-46f3-829f-b3d2e715d031' {
		insmod part_msdos
		insmod ext2
		set root='hd3,msdos1'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd3,msdos1 --hint-efi=hd3,msdos1 --hint-baremetal=ahci3,msdos1  c14de089-0371-46f3-829f-b3d2e715d031
		else
		  search --no-floppy --fs-uuid --set=root c14de089-0371-46f3-829f-b3d2e715d031
		fi
		linux /boot/vmlinuz-4.15.0-96-generic root=UUID=c14de089-0371-46f3-829f-b3d2e715d031 ro quiet splash $vt_handoff
		initrd /boot/initrd.img-4.15.0-96-generic
	}
	menuentry 'U18.04-d1  Ubuntu, avec Linux 4.15.0-96-generic (sur /dev/sdd1)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-4.15.0-96-generic--c14de089-0371-46f3-829f-b3d2e715d031' {
		insmod part_msdos
		insmod ext2
		set root='hd3,msdos1'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd3,msdos1 --hint-efi=hd3,msdos1 --hint-baremetal=ahci3,msdos1  c14de089-0371-46f3-829f-b3d2e715d031
		else
		  search --no-floppy --fs-uuid --set=root c14de089-0371-46f3-829f-b3d2e715d031
		fi
		linux /boot/vmlinuz-4.15.0-96-generic root=UUID=c14de089-0371-46f3-829f-b3d2e715d031 ro quiet splash $vt_handoff
		initrd /boot/initrd.img-4.15.0-96-generic
	}
	menuentry 'U18.04-d1  Ubuntu, with Linux 4.15.0-96-generic (recovery mode) (sur /dev/sdd1)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-4.15.0-96-generic-root=UUID=c14de089-0371-46f3-829f-b3d2e715d031 ro recovery nomodeset-c14de089-0371-46f3-829f-b3d2e715d031' {
		insmod part_msdos
		insmod ext2
		set root='hd3,msdos1'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd3,msdos1 --hint-efi=hd3,msdos1 --hint-baremetal=ahci3,msdos1  c14de089-0371-46f3-829f-b3d2e715d031
		else
		  search --no-floppy --fs-uuid --set=root c14de089-0371-46f3-829f-b3d2e715d031
		fi
		linux /boot/vmlinuz-4.15.0-96-generic root=UUID=c14de089-0371-46f3-829f-b3d2e715d031 ro recovery nomodeset
		initrd /boot/initrd.img-4.15.0-96-generic
	}
	menuentry 'U18.04-d1  Ubuntu, avec Linux 4.15.0-91-generic (sur /dev/sdd1)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-4.15.0-91-generic--c14de089-0371-46f3-829f-b3d2e715d031' {
		insmod part_msdos
		insmod ext2
		set root='hd3,msdos1'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd3,msdos1 --hint-efi=hd3,msdos1 --hint-baremetal=ahci3,msdos1  c14de089-0371-46f3-829f-b3d2e715d031
		else
		  search --no-floppy --fs-uuid --set=root c14de089-0371-46f3-829f-b3d2e715d031
		fi
		linux /boot/vmlinuz-4.15.0-91-generic root=UUID=c14de089-0371-46f3-829f-b3d2e715d031 ro quiet splash $vt_handoff
		initrd /boot/initrd.img-4.15.0-91-generic
	}
	menuentry 'U18.04-d1  Ubuntu, with Linux 4.15.0-91-generic (recovery mode) (sur /dev/sdd1)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-4.15.0-91-generic-root=UUID=c14de089-0371-46f3-829f-b3d2e715d031 ro recovery nomodeset-c14de089-0371-46f3-829f-b3d2e715d031' {
		insmod part_msdos
		insmod ext2
		set root='hd3,msdos1'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd3,msdos1 --hint-efi=hd3,msdos1 --hint-baremetal=ahci3,msdos1  c14de089-0371-46f3-829f-b3d2e715d031
		else
		  search --no-floppy --fs-uuid --set=root c14de089-0371-46f3-829f-b3d2e715d031
		fi
		linux /boot/vmlinuz-4.15.0-91-generic root=UUID=c14de089-0371-46f3-829f-b3d2e715d031 ro recovery nomodeset
		initrd /boot/initrd.img-4.15.0-91-generic
	}
}

menuentry '18-4-EFI : Ubuntu 18.04.4 LTS (18.04) (sur /dev/sde2)' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-simple-b1e72033-59f5-47fa-84fa-5242a2580ed0' {
	insmod part_gpt
	insmod ext2
	set root='hd4,gpt2'
	if [ x$feature_platform_search_hint = xy ]; then
	  search --no-floppy --fs-uuid --set=root --hint-bios=hd4,gpt2 --hint-efi=hd4,gpt2 --hint-baremetal=ahci4,gpt2  b1e72033-59f5-47fa-84fa-5242a2580ed0
	else
	  search --no-floppy --fs-uuid --set=root b1e72033-59f5-47fa-84fa-5242a2580ed0
	fi
	linux /boot/vmlinuz-4.15.0-96-generic root=UUID=b1e72033-59f5-47fa-84fa-5242a2580ed0 ro quiet splash $vt_handoff
	initrd /boot/initrd.img-4.15.0-96-generic
}
submenu '18-4-EFI : Options avancées pour Ubuntu 18.04.4 LTS (18.04) (sur /dev/sde2)' $menuentry_id_option 'osprober-gnulinux-advanced-b1e72033-59f5-47fa-84fa-5242a2580ed0' {
	menuentry '18-4-EFI  Ubuntu (sur /dev/sde2)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-4.15.0-96-generic--b1e72033-59f5-47fa-84fa-5242a2580ed0' {
		insmod part_gpt
		insmod ext2
		set root='hd4,gpt2'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd4,gpt2 --hint-efi=hd4,gpt2 --hint-baremetal=ahci4,gpt2  b1e72033-59f5-47fa-84fa-5242a2580ed0
		else
		  search --no-floppy --fs-uuid --set=root b1e72033-59f5-47fa-84fa-5242a2580ed0
		fi
		linux /boot/vmlinuz-4.15.0-96-generic root=UUID=b1e72033-59f5-47fa-84fa-5242a2580ed0 ro quiet splash $vt_handoff
		initrd /boot/initrd.img-4.15.0-96-generic
	}
	menuentry '18-4-EFI  Ubuntu, avec Linux 4.15.0-96-generic (sur /dev/sde2)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-4.15.0-96-generic--b1e72033-59f5-47fa-84fa-5242a2580ed0' {
		insmod part_gpt
		insmod ext2
		set root='hd4,gpt2'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd4,gpt2 --hint-efi=hd4,gpt2 --hint-baremetal=ahci4,gpt2  b1e72033-59f5-47fa-84fa-5242a2580ed0
		else
		  search --no-floppy --fs-uuid --set=root b1e72033-59f5-47fa-84fa-5242a2580ed0
		fi
		linux /boot/vmlinuz-4.15.0-96-generic root=UUID=b1e72033-59f5-47fa-84fa-5242a2580ed0 ro quiet splash $vt_handoff
		initrd /boot/initrd.img-4.15.0-96-generic
	}
	menuentry '18-4-EFI  Ubuntu, with Linux 4.15.0-96-generic (recovery mode) (sur /dev/sde2)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-4.15.0-96-generic-root=UUID=b1e72033-59f5-47fa-84fa-5242a2580ed0 ro recovery nomodeset-b1e72033-59f5-47fa-84fa-5242a2580ed0' {
		insmod part_gpt
		insmod ext2
		set root='hd4,gpt2'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd4,gpt2 --hint-efi=hd4,gpt2 --hint-baremetal=ahci4,gpt2  b1e72033-59f5-47fa-84fa-5242a2580ed0
		else
		  search --no-floppy --fs-uuid --set=root b1e72033-59f5-47fa-84fa-5242a2580ed0
		fi
		linux /boot/vmlinuz-4.15.0-96-generic root=UUID=b1e72033-59f5-47fa-84fa-5242a2580ed0 ro recovery nomodeset
		initrd /boot/initrd.img-4.15.0-96-generic
	}
	menuentry '18-4-EFI  Ubuntu, avec Linux 4.15.0-29-generic (sur /dev/sde2)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-4.15.0-29-generic--b1e72033-59f5-47fa-84fa-5242a2580ed0' {
		insmod part_gpt
		insmod ext2
		set root='hd4,gpt2'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd4,gpt2 --hint-efi=hd4,gpt2 --hint-baremetal=ahci4,gpt2  b1e72033-59f5-47fa-84fa-5242a2580ed0
		else
		  search --no-floppy --fs-uuid --set=root b1e72033-59f5-47fa-84fa-5242a2580ed0
		fi
		linux /boot/vmlinuz-4.15.0-29-generic root=UUID=b1e72033-59f5-47fa-84fa-5242a2580ed0 ro quiet splash $vt_handoff
		initrd /boot/initrd.img-4.15.0-29-generic
	}
	menuentry '18-4-EFI  Ubuntu, with Linux 4.15.0-29-generic (recovery mode) (sur /dev/sde2)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-4.15.0-29-generic-root=UUID=b1e72033-59f5-47fa-84fa-5242a2580ed0 ro recovery nomodeset-b1e72033-59f5-47fa-84fa-5242a2580ed0' {
		insmod part_gpt
		insmod ext2
		set root='hd4,gpt2'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd4,gpt2 --hint-efi=hd4,gpt2 --hint-baremetal=ahci4,gpt2  b1e72033-59f5-47fa-84fa-5242a2580ed0
		else
		  search --no-floppy --fs-uuid --set=root b1e72033-59f5-47fa-84fa-5242a2580ed0
		fi
		linux /boot/vmlinuz-4.15.0-29-generic root=UUID=b1e72033-59f5-47fa-84fa-5242a2580ed0 ro recovery nomodeset
		initrd /boot/initrd.img-4.15.0-29-generic
	}
}

set timeout_style=menu
if [ "${timeout}" = 0 ]; then
  set timeout=10
fi
### END /etc/grub.d/30_os-prober ###

### BEGIN /etc/grub.d/30_uefi-firmware ###
### END /etc/grub.d/30_uefi-firmware ###

### BEGIN /etc/grub.d/40_custom ###
# This file provides an easy way to add custom menu entries.  Simply type the
# menu entries you want to add after this comment.  Be careful not to change
# the 'exec tail' line above.
### END /etc/grub.d/40_custom ###

### BEGIN /etc/grub.d/41_custom ###
if [ -f  ${config_directory}/custom.cfg ]; then
  source ${config_directory}/custom.cfg
elif [ -z "${config_directory}" -a -f  $prefix/custom.cfg ]; then
  source $prefix/custom.cfg;
fi
### END /etc/grub.d/41_custom ###
--------------------------------------------------------------------------------

=============================== sdc11/etc/fstab: ===============================

--------------------------------------------------------------------------------
# /etc/fstab: static file system information.
#
# Use 'blkid' to print the universally unique identifier for a
# device; this may be used with UUID= as a more robust way to name devices
# that works even if disks are added and removed. See fstab(5).
#
# <file system> <mount point>   <type>  <options>       <dump>  <pass>
# / was on /dev/sdc11 during installation
UUID=3aabc8ae-d129-419c-bb5a-1292d98ec0f6 /               ext4    errors=remount-ro 0       1

# swap was on /dev/sdc10 during installation
UUID=722d52ca-7c00-4e99-a810-9db3288fac4a none            swap    sw              0       0

#Data en ext4
LABEL=Data                                /media/Data     ext4    defaults        0       2

#SH en ext4
LABEL=SH                                  /media/SH       ext4    defaults        0       2

/dev/fd0                                  /media/floppy0  auto    rw,user,noauto,exec,utf8 0       0

# montage du home séparé 2018-12-05
UUID="c5a33375-b59d-4451-9b5f-e3c1bdf3d5c0"     /home      ext4   defaults       0       2

# swap was on /dev/sda6 during installation
#UUID=81b7d41d-574c-4d4b-8740-3e6c55400674 none            swap    sw              0       0
# swap was on /dev/sda8 during installation
#UUID=a1516336-9bb7-4c9f-b63e-9cab2d58e8f1 none            swap    sw              0       0
# swap was on /dev/sdb5 during installation
#UUID=a4635c0b-fed5-4c44-aeb7-137447cf06da none            swap    sw              0       0
#essai ntfs
#LABEL=Z-b2                               /media/ZZ         ntfs    defaults        0       0



--------------------------------------------------------------------------------

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

           GiB - GB             File                                 Fragment(s)

 708.717227936 = 760.979329024  boot/grub/grub.cfg                             1
 727.124790192 = 780.744298496  boot/grub/i386-pc/core.img                     1
 707.521377563 = 759.695294464  boot/vmlinuz-4.15.0-42-generic                 1
 733.076080322 = 787.134447616  boot/vmlinuz-4.15.0-55-generic                 1
 712.943340302 = 765.517082624  boot/vmlinuz-4.15.0-96-generic                 2
 712.943340302 = 765.517082624  vmlinuz                                        2
 733.076080322 = 787.134447616  vmlinuz.old                                    1
 715.665103912 = 768.439554048  boot/initrd.img-4.15.0-42-generic              2
 715.659713745 = 768.433766400  boot/initrd.img-4.15.0-55-generic              3
 715.786693573 = 768.570109952  boot/initrd.img-4.15.0-96-generic              1
 715.786693573 = 768.570109952  initrd.img                                     1
 715.659713745 = 768.433766400  initrd.img.old                                 3

=========================== sdd1/boot/grub/grub.cfg: ===========================

--------------------------------------------------------------------------------
#### 2020:04:13-17:31:14 : /boot/grub/grub.cfg modifié par /media/SH/grub/V46/modif_grub_V46_bis ####
# DO NOT EDIT THIS FILE
#
# It is automatically generated by grub-mkconfig using templates
# from /etc/grub.d and settings from /etc/default/grub
#

### BEGIN /etc/grub.d/00_header ###
if [ -s $prefix/grubenv ]; then
  set have_grubenv=true
  load_env
fi
if [ "${next_entry}" ] ; then
   set default="${next_entry}"
   set next_entry=
   save_env next_entry
   set boot_once=true
else
   set default="0"
fi

if [ x"${feature_menuentry_id}" = xy ]; then
  menuentry_id_option="--id"
else
  menuentry_id_option=""
fi

export menuentry_id_option

if [ "${prev_saved_entry}" ]; then
  set saved_entry="${prev_saved_entry}"
  save_env saved_entry
  set prev_saved_entry=
  save_env prev_saved_entry
  set boot_once=true
fi

function savedefault {
  if [ -z "${boot_once}" ]; then
    saved_entry="${chosen}"
    save_env saved_entry
  fi
}
function recordfail {
  set recordfail=1
  if [ -n "${have_grubenv}" ]; then if [ -z "${boot_once}" ]; then save_env recordfail; fi; fi
}
function load_video {
  if [ x$feature_all_video_module = xy ]; then
    insmod all_video
  else
    insmod efi_gop
    insmod efi_uga
    insmod ieee1275_fb
    insmod vbe
    insmod vga
    insmod video_bochs
    insmod video_cirrus
  fi
}

if [ x$feature_default_font_path = xy ] ; then
   font=unicode
else
insmod part_msdos
insmod ext2
set root='hd3,msdos1'
if [ x$feature_platform_search_hint = xy ]; then
  search --no-floppy --fs-uuid --set=root --hint-bios=hd3,msdos1 --hint-efi=hd3,msdos1 --hint-baremetal=ahci3,msdos1  c14de089-0371-46f3-829f-b3d2e715d031
else
  search --no-floppy --fs-uuid --set=root c14de089-0371-46f3-829f-b3d2e715d031
fi
    font="/usr/share/grub/unicode.pf2"
fi

if loadfont $font ; then
  set gfxmode=auto
  load_video
  insmod gfxterm
  set locale_dir=$prefix/locale
  set lang=fr_FR
  insmod gettext
fi
terminal_output gfxterm
if [ "${recordfail}" = 1 ] ; then
  set timeout=30
else
  if [ x$feature_timeout_style = xy ] ; then
    set timeout_style=hidden
    set timeout=5
  # Fallback hidden-timeout code in case the timeout_style feature is
  # unavailable.
  elif sleep --interruptible 5 ; then
    set timeout=0
  fi
fi
### END /etc/grub.d/00_header ###

### BEGIN /etc/grub.d/05_debian_theme ###
set menu_color_normal=white/black
set menu_color_highlight=black/light-gray
if background_color 44,0,30,0; then
  clear
fi
### END /etc/grub.d/05_debian_theme ###

### BEGIN /etc/grub.d/10_linux ###
function gfxmode {
	set gfxpayload="${1}"
	if [ "${1}" = "keep" ]; then
		set vt_handoff=vt.handoff=1
	else
		set vt_handoff=
	fi
}
if [ "${recordfail}" != 1 ]; then
  if [ -e ${prefix}/gfxblacklist.txt ]; then
    if hwmatch ${prefix}/gfxblacklist.txt 3; then
      if [ ${match} = 0 ]; then
        set linux_gfx_mode=keep
      else
        set linux_gfx_mode=text
      fi
    else
      set linux_gfx_mode=text
    fi
  else
    set linux_gfx_mode=keep
  fi
else
  set linux_gfx_mode=text
fi
export linux_gfx_mode
menuentry 'U18.04-d1 : Ubuntu' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-simple-c14de089-0371-46f3-829f-b3d2e715d031' {
	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='hd3,msdos1'
	if [ x$feature_platform_search_hint = xy ]; then
	  search --no-floppy --fs-uuid --set=root --hint-bios=hd3,msdos1 --hint-efi=hd3,msdos1 --hint-baremetal=ahci3,msdos1  c14de089-0371-46f3-829f-b3d2e715d031
	else
	  search --no-floppy --fs-uuid --set=root c14de089-0371-46f3-829f-b3d2e715d031
	fi
        linux	/boot/vmlinuz-4.15.0-96-generic root=UUID=c14de089-0371-46f3-829f-b3d2e715d031 ro  quiet splash $vt_handoff
	initrd	/boot/initrd.img-4.15.0-96-generic
}
submenu 'U18.04-d1 : Options avancées pour Ubuntu' $menuentry_id_option 'gnulinux-advanced-c14de089-0371-46f3-829f-b3d2e715d031' {
	menuentry 'U18.04-d1 : Ubuntu, avec Linux 4.15.0-96-generic' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-4.15.0-96-generic-advanced-c14de089-0371-46f3-829f-b3d2e715d031' {
		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='hd3,msdos1'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd3,msdos1 --hint-efi=hd3,msdos1 --hint-baremetal=ahci3,msdos1  c14de089-0371-46f3-829f-b3d2e715d031
		else
		  search --no-floppy --fs-uuid --set=root c14de089-0371-46f3-829f-b3d2e715d031
		fi
		echo	'Chargement de Linux 4.15.0-96-generic…'
	        linux	/boot/vmlinuz-4.15.0-96-generic root=UUID=c14de089-0371-46f3-829f-b3d2e715d031 ro  quiet splash $vt_handoff
		echo	'Chargement du disque mémoire initial…'
		initrd	/boot/initrd.img-4.15.0-96-generic
	}
	menuentry 'U18.04-d1 : Ubuntu, with Linux 4.15.0-96-generic (recovery mode)' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-4.15.0-96-generic-recovery-c14de089-0371-46f3-829f-b3d2e715d031' {
		recordfail
		load_video
		insmod gzio
		if [ x$grub_platform = xxen ]; then insmod xzio; insmod lzopio; fi
		insmod part_msdos
		insmod ext2
		set root='hd3,msdos1'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd3,msdos1 --hint-efi=hd3,msdos1 --hint-baremetal=ahci3,msdos1  c14de089-0371-46f3-829f-b3d2e715d031
		else
		  search --no-floppy --fs-uuid --set=root c14de089-0371-46f3-829f-b3d2e715d031
		fi
		echo	'Chargement de Linux 4.15.0-96-generic…'
	        linux	/boot/vmlinuz-4.15.0-96-generic root=UUID=c14de089-0371-46f3-829f-b3d2e715d031 ro recovery nomodeset 
		echo	'Chargement du disque mémoire initial…'
		initrd	/boot/initrd.img-4.15.0-96-generic
	}
	menuentry 'U18.04-d1 : Ubuntu, avec Linux 4.15.0-91-generic' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-4.15.0-91-generic-advanced-c14de089-0371-46f3-829f-b3d2e715d031' {
		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='hd3,msdos1'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd3,msdos1 --hint-efi=hd3,msdos1 --hint-baremetal=ahci3,msdos1  c14de089-0371-46f3-829f-b3d2e715d031
		else
		  search --no-floppy --fs-uuid --set=root c14de089-0371-46f3-829f-b3d2e715d031
		fi
		echo	'Chargement de Linux 4.15.0-91-generic…'
	        linux	/boot/vmlinuz-4.15.0-91-generic root=UUID=c14de089-0371-46f3-829f-b3d2e715d031 ro  quiet splash $vt_handoff
		echo	'Chargement du disque mémoire initial…'
		initrd	/boot/initrd.img-4.15.0-91-generic
	}
	menuentry 'U18.04-d1 : Ubuntu, with Linux 4.15.0-91-generic (recovery mode)' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-4.15.0-91-generic-recovery-c14de089-0371-46f3-829f-b3d2e715d031' {
		recordfail
		load_video
		insmod gzio
		if [ x$grub_platform = xxen ]; then insmod xzio; insmod lzopio; fi
		insmod part_msdos
		insmod ext2
		set root='hd3,msdos1'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd3,msdos1 --hint-efi=hd3,msdos1 --hint-baremetal=ahci3,msdos1  c14de089-0371-46f3-829f-b3d2e715d031
		else
		  search --no-floppy --fs-uuid --set=root c14de089-0371-46f3-829f-b3d2e715d031
		fi
		echo	'Chargement de Linux 4.15.0-91-generic…'
	        linux	/boot/vmlinuz-4.15.0-91-generic root=UUID=c14de089-0371-46f3-829f-b3d2e715d031 ro recovery nomodeset 
		echo	'Chargement du disque mémoire initial…'
		initrd	/boot/initrd.img-4.15.0-91-generic
	}
}

### END /etc/grub.d/10_linux ###

### BEGIN /etc/grub.d/20_linux_xen ###

### END /etc/grub.d/20_linux_xen ###

### BEGIN /etc/grub.d/20_memtest86+ ###
menuentry 'Memory test (memtest86+)' {
	insmod part_msdos
	insmod ext2
	set root='hd3,msdos1'
	if [ x$feature_platform_search_hint = xy ]; then
	  search --no-floppy --fs-uuid --set=root --hint-bios=hd3,msdos1 --hint-efi=hd3,msdos1 --hint-baremetal=ahci3,msdos1  c14de089-0371-46f3-829f-b3d2e715d031
	else
	  search --no-floppy --fs-uuid --set=root c14de089-0371-46f3-829f-b3d2e715d031
	fi
	knetbsd	/boot/memtest86+.elf
}
menuentry 'Memory test (memtest86+, serial console 115200)' {
	insmod part_msdos
	insmod ext2
	set root='hd3,msdos1'
	if [ x$feature_platform_search_hint = xy ]; then
	  search --no-floppy --fs-uuid --set=root --hint-bios=hd3,msdos1 --hint-efi=hd3,msdos1 --hint-baremetal=ahci3,msdos1  c14de089-0371-46f3-829f-b3d2e715d031
	else
	  search --no-floppy --fs-uuid --set=root c14de089-0371-46f3-829f-b3d2e715d031
	fi
	linux16	/boot/memtest86+.bin console=ttyS0,115200n8
}
### END /etc/grub.d/20_memtest86+ ###

### BEGIN /etc/grub.d/30_os-prober ###
menuentry 'U16.04-P10-64b : Ubuntu 16.04.6 LTS (16.04) (sur /dev/sda10)' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-simple-21a7fb42-ce7c-47c3-a77c-e55dc3e12590' {
	insmod part_msdos
	insmod ext2
	set root='hd0,msdos10'
	if [ x$feature_platform_search_hint = xy ]; then
	  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos10 --hint-efi=hd0,msdos10 --hint-baremetal=ahci0,msdos10  21a7fb42-ce7c-47c3-a77c-e55dc3e12590
	else
	  search --no-floppy --fs-uuid --set=root 21a7fb42-ce7c-47c3-a77c-e55dc3e12590
	fi
	linux /vmlinuz root=/dev/sda10
	initrd /initrd.img
}
submenu 'U16.04-P10-64b : Options avancées pour Ubuntu 16.04.6 LTS (16.04) (sur /dev/sda10)' $menuentry_id_option 'osprober-gnulinux-advanced-21a7fb42-ce7c-47c3-a77c-e55dc3e12590' {
	menuentry 'U16.04-P10-64b : Ubuntu 16.04.6 LTS (16.04) (sur /dev/sda10)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/vmlinuz--21a7fb42-ce7c-47c3-a77c-e55dc3e12590' {
		insmod part_msdos
		insmod ext2
		set root='hd0,msdos10'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos10 --hint-efi=hd0,msdos10 --hint-baremetal=ahci0,msdos10  21a7fb42-ce7c-47c3-a77c-e55dc3e12590
		else
		  search --no-floppy --fs-uuid --set=root 21a7fb42-ce7c-47c3-a77c-e55dc3e12590
		fi
		linux /vmlinuz root=/dev/sda10
		initrd /initrd.img
	}
	menuentry 'U16.04-P10-64b : Ubuntu 16.04.6 LTS (16.04) (sur /dev/sda10)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/vmlinuz--21a7fb42-ce7c-47c3-a77c-e55dc3e12590' {
		insmod part_msdos
		insmod ext2
		set root='hd0,msdos10'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos10 --hint-efi=hd0,msdos10 --hint-baremetal=ahci0,msdos10  21a7fb42-ce7c-47c3-a77c-e55dc3e12590
		else
		  search --no-floppy --fs-uuid --set=root 21a7fb42-ce7c-47c3-a77c-e55dc3e12590
		fi
		linux /vmlinuz root=/dev/sda10
		initrd /initrd.img
	}
	menuentry 'U16.04-P10-64b : Ubuntu 16.04.6 LTS (16.04) (sur /dev/sda10)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/vmlinuz--21a7fb42-ce7c-47c3-a77c-e55dc3e12590' {
		insmod part_msdos
		insmod ext2
		set root='hd0,msdos10'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos10 --hint-efi=hd0,msdos10 --hint-baremetal=ahci0,msdos10  21a7fb42-ce7c-47c3-a77c-e55dc3e12590
		else
		  search --no-floppy --fs-uuid --set=root 21a7fb42-ce7c-47c3-a77c-e55dc3e12590
		fi
		linux /vmlinuz root=/dev/sda10
		initrd /initrd.img.old
	}
	menuentry 'U16.04-P10-64b : Ubuntu 16.04.6 LTS (16.04) (sur /dev/sda10)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-4.4.0-173-generic--21a7fb42-ce7c-47c3-a77c-e55dc3e12590' {
		insmod part_msdos
		insmod ext2
		set root='hd0,msdos10'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos10 --hint-efi=hd0,msdos10 --hint-baremetal=ahci0,msdos10  21a7fb42-ce7c-47c3-a77c-e55dc3e12590
		else
		  search --no-floppy --fs-uuid --set=root 21a7fb42-ce7c-47c3-a77c-e55dc3e12590
		fi
		linux /boot/vmlinuz-4.4.0-173-generic root=/dev/sda10
		initrd /boot/initrd.img-4.4.0-173-generic
	}
	menuentry 'U16.04-P10-64b : Ubuntu 16.04.6 LTS (16.04) (sur /dev/sda10)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-4.4.0-139-generic--21a7fb42-ce7c-47c3-a77c-e55dc3e12590' {
		insmod part_msdos
		insmod ext2
		set root='hd0,msdos10'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos10 --hint-efi=hd0,msdos10 --hint-baremetal=ahci0,msdos10  21a7fb42-ce7c-47c3-a77c-e55dc3e12590
		else
		  search --no-floppy --fs-uuid --set=root 21a7fb42-ce7c-47c3-a77c-e55dc3e12590
		fi
		linux /boot/vmlinuz-4.4.0-139-generic root=/dev/sda10
		initrd /boot/initrd.img-4.4.0-139-generic
	}
	menuentry 'U16.04-P10-64b : Ubuntu 16.04.6 LTS (16.04) (sur /dev/sda10)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-4.4.0-138-generic--21a7fb42-ce7c-47c3-a77c-e55dc3e12590' {
		insmod part_msdos
		insmod ext2
		set root='hd0,msdos10'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos10 --hint-efi=hd0,msdos10 --hint-baremetal=ahci0,msdos10  21a7fb42-ce7c-47c3-a77c-e55dc3e12590
		else
		  search --no-floppy --fs-uuid --set=root 21a7fb42-ce7c-47c3-a77c-e55dc3e12590
		fi
		linux /boot/vmlinuz-4.4.0-138-generic root=/dev/sda10
		initrd /boot/initrd.img-4.4.0-138-generic
	}
	menuentry 'U16.04-P10-64b : Ubuntu 16.04.6 LTS (16.04) (sur /dev/sda10)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/vmlinuz--21a7fb42-ce7c-47c3-a77c-e55dc3e12590' {
		insmod part_msdos
		insmod ext2
		set root='hd0,msdos10'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos10 --hint-efi=hd0,msdos10 --hint-baremetal=ahci0,msdos10  21a7fb42-ce7c-47c3-a77c-e55dc3e12590
		else
		  search --no-floppy --fs-uuid --set=root 21a7fb42-ce7c-47c3-a77c-e55dc3e12590
		fi
		linux /vmlinuz root=/dev/sda10
		initrd /initrd.img
	}
	menuentry 'U16.04-P10-64b : Ubuntu 16.04.6 LTS (16.04) (sur /dev/sda10)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/vmlinuz--21a7fb42-ce7c-47c3-a77c-e55dc3e12590' {
		insmod part_msdos
		insmod ext2
		set root='hd0,msdos10'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos10 --hint-efi=hd0,msdos10 --hint-baremetal=ahci0,msdos10  21a7fb42-ce7c-47c3-a77c-e55dc3e12590
		else
		  search --no-floppy --fs-uuid --set=root 21a7fb42-ce7c-47c3-a77c-e55dc3e12590
		fi
		linux /vmlinuz root=/dev/sda10
		initrd /initrd.img
	}
	menuentry 'U16.04-P10-64b : Ubuntu 16.04.6 LTS (16.04) (sur /dev/sda10)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/vmlinuz--21a7fb42-ce7c-47c3-a77c-e55dc3e12590' {
		insmod part_msdos
		insmod ext2
		set root='hd0,msdos10'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos10 --hint-efi=hd0,msdos10 --hint-baremetal=ahci0,msdos10  21a7fb42-ce7c-47c3-a77c-e55dc3e12590
		else
		  search --no-floppy --fs-uuid --set=root 21a7fb42-ce7c-47c3-a77c-e55dc3e12590
		fi
		linux /vmlinuz root=/dev/sda10
		initrd /initrd.img.old
	}
	menuentry 'U16.04-P10-64b : Ubuntu 16.04.6 LTS (16.04) (sur /dev/sda10)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/vmlinuz.old--21a7fb42-ce7c-47c3-a77c-e55dc3e12590' {
		insmod part_msdos
		insmod ext2
		set root='hd0,msdos10'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos10 --hint-efi=hd0,msdos10 --hint-baremetal=ahci0,msdos10  21a7fb42-ce7c-47c3-a77c-e55dc3e12590
		else
		  search --no-floppy --fs-uuid --set=root 21a7fb42-ce7c-47c3-a77c-e55dc3e12590
		fi
		linux /vmlinuz.old root=/dev/sda10
		initrd /initrd.img.old
	}
}

menuentry 'M16.04-a12-64b : Ubuntu 16.04.5 LTS (16.04) (sur /dev/sda12)' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-simple-cb9be900-e560-4c86-aa5c-8842b40fee00' {
	insmod part_msdos
	insmod ext2
	set root='hd0,msdos12'
	if [ x$feature_platform_search_hint = xy ]; then
	  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos12 --hint-efi=hd0,msdos12 --hint-baremetal=ahci0,msdos12  cb9be900-e560-4c86-aa5c-8842b40fee00
	else
	  search --no-floppy --fs-uuid --set=root cb9be900-e560-4c86-aa5c-8842b40fee00
	fi
	linux /vmlinuz root=/dev/sda12
	initrd /initrd.img
}
submenu 'M16.04-a12-64b : Options avancées pour Ubuntu 16.04.5 LTS (16.04) (sur /dev/sda12)' $menuentry_id_option 'osprober-gnulinux-advanced-cb9be900-e560-4c86-aa5c-8842b40fee00' {
	menuentry 'M16.04-a12-64b : Ubuntu 16.04.5 LTS (16.04) (sur /dev/sda12)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/vmlinuz--cb9be900-e560-4c86-aa5c-8842b40fee00' {
		insmod part_msdos
		insmod ext2
		set root='hd0,msdos12'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos12 --hint-efi=hd0,msdos12 --hint-baremetal=ahci0,msdos12  cb9be900-e560-4c86-aa5c-8842b40fee00
		else
		  search --no-floppy --fs-uuid --set=root cb9be900-e560-4c86-aa5c-8842b40fee00
		fi
		linux /vmlinuz root=/dev/sda12
		initrd /initrd.img
	}
	menuentry 'M16.04-a12-64b : Ubuntu 16.04.5 LTS (16.04) (sur /dev/sda12)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/vmlinuz--cb9be900-e560-4c86-aa5c-8842b40fee00' {
		insmod part_msdos
		insmod ext2
		set root='hd0,msdos12'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos12 --hint-efi=hd0,msdos12 --hint-baremetal=ahci0,msdos12  cb9be900-e560-4c86-aa5c-8842b40fee00
		else
		  search --no-floppy --fs-uuid --set=root cb9be900-e560-4c86-aa5c-8842b40fee00
		fi
		linux /vmlinuz root=/dev/sda12
		initrd /initrd.img
	}
	menuentry 'M16.04-a12-64b : Ubuntu 16.04.5 LTS (16.04) (sur /dev/sda12)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/vmlinuz--cb9be900-e560-4c86-aa5c-8842b40fee00' {
		insmod part_msdos
		insmod ext2
		set root='hd0,msdos12'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos12 --hint-efi=hd0,msdos12 --hint-baremetal=ahci0,msdos12  cb9be900-e560-4c86-aa5c-8842b40fee00
		else
		  search --no-floppy --fs-uuid --set=root cb9be900-e560-4c86-aa5c-8842b40fee00
		fi
		linux /vmlinuz root=/dev/sda12
		initrd /initrd.img.old
	}
	menuentry 'M16.04-a12-64b : Ubuntu 16.04.5 LTS (16.04) (sur /dev/sda12)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-4.4.0-139-generic--cb9be900-e560-4c86-aa5c-8842b40fee00' {
		insmod part_msdos
		insmod ext2
		set root='hd0,msdos12'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos12 --hint-efi=hd0,msdos12 --hint-baremetal=ahci0,msdos12  cb9be900-e560-4c86-aa5c-8842b40fee00
		else
		  search --no-floppy --fs-uuid --set=root cb9be900-e560-4c86-aa5c-8842b40fee00
		fi
		linux /boot/vmlinuz-4.4.0-139-generic root=/dev/sda12
		initrd /boot/initrd.img-4.4.0-139-generic
	}
	menuentry 'M16.04-a12-64b : Ubuntu 16.04.5 LTS (16.04) (sur /dev/sda12)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-4.4.0-31-generic--cb9be900-e560-4c86-aa5c-8842b40fee00' {
		insmod part_msdos
		insmod ext2
		set root='hd0,msdos12'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos12 --hint-efi=hd0,msdos12 --hint-baremetal=ahci0,msdos12  cb9be900-e560-4c86-aa5c-8842b40fee00
		else
		  search --no-floppy --fs-uuid --set=root cb9be900-e560-4c86-aa5c-8842b40fee00
		fi
		linux /boot/vmlinuz-4.4.0-31-generic root=/dev/sda12
		initrd /boot/initrd.img-4.4.0-31-generic
	}
	menuentry 'M16.04-a12-64b : Ubuntu 16.04.5 LTS (16.04) (sur /dev/sda12)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-4.4.0-59-generic--cb9be900-e560-4c86-aa5c-8842b40fee00' {
		insmod part_msdos
		insmod ext2
		set root='hd0,msdos12'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos12 --hint-efi=hd0,msdos12 --hint-baremetal=ahci0,msdos12  cb9be900-e560-4c86-aa5c-8842b40fee00
		else
		  search --no-floppy --fs-uuid --set=root cb9be900-e560-4c86-aa5c-8842b40fee00
		fi
		linux /boot/vmlinuz-4.4.0-59-generic root=/dev/sda12
		initrd /boot/initrd.img-4.4.0-59-generic
	}
	menuentry 'M16.04-a12-64b : Ubuntu 16.04.5 LTS (16.04) (sur /dev/sda12)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/vmlinuz--cb9be900-e560-4c86-aa5c-8842b40fee00' {
		insmod part_msdos
		insmod ext2
		set root='hd0,msdos12'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos12 --hint-efi=hd0,msdos12 --hint-baremetal=ahci0,msdos12  cb9be900-e560-4c86-aa5c-8842b40fee00
		else
		  search --no-floppy --fs-uuid --set=root cb9be900-e560-4c86-aa5c-8842b40fee00
		fi
		linux /vmlinuz root=/dev/sda12
		initrd /initrd.img
	}
	menuentry 'M16.04-a12-64b : Ubuntu 16.04.5 LTS (16.04) (sur /dev/sda12)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/vmlinuz--cb9be900-e560-4c86-aa5c-8842b40fee00' {
		insmod part_msdos
		insmod ext2
		set root='hd0,msdos12'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos12 --hint-efi=hd0,msdos12 --hint-baremetal=ahci0,msdos12  cb9be900-e560-4c86-aa5c-8842b40fee00
		else
		  search --no-floppy --fs-uuid --set=root cb9be900-e560-4c86-aa5c-8842b40fee00
		fi
		linux /vmlinuz root=/dev/sda12
		initrd /initrd.img
	}
	menuentry 'M16.04-a12-64b : Ubuntu 16.04.5 LTS (16.04) (sur /dev/sda12)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/vmlinuz--cb9be900-e560-4c86-aa5c-8842b40fee00' {
		insmod part_msdos
		insmod ext2
		set root='hd0,msdos12'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos12 --hint-efi=hd0,msdos12 --hint-baremetal=ahci0,msdos12  cb9be900-e560-4c86-aa5c-8842b40fee00
		else
		  search --no-floppy --fs-uuid --set=root cb9be900-e560-4c86-aa5c-8842b40fee00
		fi
		linux /vmlinuz root=/dev/sda12
		initrd /initrd.img.old
	}
	menuentry 'M16.04-a12-64b : Ubuntu 16.04.5 LTS (16.04) (sur /dev/sda12)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/vmlinuz.old--cb9be900-e560-4c86-aa5c-8842b40fee00' {
		insmod part_msdos
		insmod ext2
		set root='hd0,msdos12'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos12 --hint-efi=hd0,msdos12 --hint-baremetal=ahci0,msdos12  cb9be900-e560-4c86-aa5c-8842b40fee00
		else
		  search --no-floppy --fs-uuid --set=root cb9be900-e560-4c86-aa5c-8842b40fee00
		fi
		linux /vmlinuz.old root=/dev/sda12
		initrd /initrd.img.old
	}
}

menuentry 'U18.04-a2-64b : Ubuntu 18.04.4 LTS (18.04) (sur /dev/sda2)' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-simple-adb3563a-ddba-4f75-8e82-7df3e3d2a4a5' {
	insmod part_msdos
	insmod ext2
	set root='hd0,msdos2'
	if [ x$feature_platform_search_hint = xy ]; then
	  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos2 --hint-efi=hd0,msdos2 --hint-baremetal=ahci0,msdos2  adb3563a-ddba-4f75-8e82-7df3e3d2a4a5
	else
	  search --no-floppy --fs-uuid --set=root adb3563a-ddba-4f75-8e82-7df3e3d2a4a5
	fi
	linux /boot/vmlinuz-4.15.0-96-generic root=UUID=adb3563a-ddba-4f75-8e82-7df3e3d2a4a5 ro quiet splash $vt_handoff
	initrd /boot/initrd.img-4.15.0-96-generic
}
submenu 'U18.04-a2-64b : Options avancées pour Ubuntu 18.04.4 LTS (18.04) (sur /dev/sda2)' $menuentry_id_option 'osprober-gnulinux-advanced-adb3563a-ddba-4f75-8e82-7df3e3d2a4a5' {
	menuentry 'U18.04-a2-64b  Ubuntu (sur /dev/sda2)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-4.15.0-96-generic--adb3563a-ddba-4f75-8e82-7df3e3d2a4a5' {
		insmod part_msdos
		insmod ext2
		set root='hd0,msdos2'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos2 --hint-efi=hd0,msdos2 --hint-baremetal=ahci0,msdos2  adb3563a-ddba-4f75-8e82-7df3e3d2a4a5
		else
		  search --no-floppy --fs-uuid --set=root adb3563a-ddba-4f75-8e82-7df3e3d2a4a5
		fi
		linux /boot/vmlinuz-4.15.0-96-generic root=UUID=adb3563a-ddba-4f75-8e82-7df3e3d2a4a5 ro quiet splash $vt_handoff
		initrd /boot/initrd.img-4.15.0-96-generic
	}
	menuentry 'U18.04-a2-64b  Ubuntu, avec Linux 4.15.0-96-generic (sur /dev/sda2)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-4.15.0-96-generic--adb3563a-ddba-4f75-8e82-7df3e3d2a4a5' {
		insmod part_msdos
		insmod ext2
		set root='hd0,msdos2'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos2 --hint-efi=hd0,msdos2 --hint-baremetal=ahci0,msdos2  adb3563a-ddba-4f75-8e82-7df3e3d2a4a5
		else
		  search --no-floppy --fs-uuid --set=root adb3563a-ddba-4f75-8e82-7df3e3d2a4a5
		fi
		linux /boot/vmlinuz-4.15.0-96-generic root=UUID=adb3563a-ddba-4f75-8e82-7df3e3d2a4a5 ro quiet splash $vt_handoff
		initrd /boot/initrd.img-4.15.0-96-generic
	}
	menuentry 'U18.04-a2-64b  Ubuntu, with Linux 4.15.0-96-generic (recovery mode) (sur /dev/sda2)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-4.15.0-96-generic-root=UUID=adb3563a-ddba-4f75-8e82-7df3e3d2a4a5 ro recovery nomodeset-adb3563a-ddba-4f75-8e82-7df3e3d2a4a5' {
		insmod part_msdos
		insmod ext2
		set root='hd0,msdos2'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos2 --hint-efi=hd0,msdos2 --hint-baremetal=ahci0,msdos2  adb3563a-ddba-4f75-8e82-7df3e3d2a4a5
		else
		  search --no-floppy --fs-uuid --set=root adb3563a-ddba-4f75-8e82-7df3e3d2a4a5
		fi
		linux /boot/vmlinuz-4.15.0-96-generic root=UUID=adb3563a-ddba-4f75-8e82-7df3e3d2a4a5 ro recovery nomodeset
		initrd /boot/initrd.img-4.15.0-96-generic
	}
	menuentry 'U18.04-a2-64b  Ubuntu, avec Linux 4.15.0-88-generic (sur /dev/sda2)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-4.15.0-88-generic--adb3563a-ddba-4f75-8e82-7df3e3d2a4a5' {
		insmod part_msdos
		insmod ext2
		set root='hd0,msdos2'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos2 --hint-efi=hd0,msdos2 --hint-baremetal=ahci0,msdos2  adb3563a-ddba-4f75-8e82-7df3e3d2a4a5
		else
		  search --no-floppy --fs-uuid --set=root adb3563a-ddba-4f75-8e82-7df3e3d2a4a5
		fi
		linux /boot/vmlinuz-4.15.0-88-generic root=UUID=adb3563a-ddba-4f75-8e82-7df3e3d2a4a5 ro quiet splash $vt_handoff
		initrd /boot/initrd.img-4.15.0-88-generic
	}
	menuentry 'U18.04-a2-64b  Ubuntu, with Linux 4.15.0-88-generic (recovery mode) (sur /dev/sda2)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-4.15.0-88-generic-root=UUID=adb3563a-ddba-4f75-8e82-7df3e3d2a4a5 ro recovery nomodeset-adb3563a-ddba-4f75-8e82-7df3e3d2a4a5' {
		insmod part_msdos
		insmod ext2
		set root='hd0,msdos2'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos2 --hint-efi=hd0,msdos2 --hint-baremetal=ahci0,msdos2  adb3563a-ddba-4f75-8e82-7df3e3d2a4a5
		else
		  search --no-floppy --fs-uuid --set=root adb3563a-ddba-4f75-8e82-7df3e3d2a4a5
		fi
		linux /boot/vmlinuz-4.15.0-88-generic root=UUID=adb3563a-ddba-4f75-8e82-7df3e3d2a4a5 ro recovery nomodeset
		initrd /boot/initrd.img-4.15.0-88-generic
	}
	menuentry 'U18.04-a2-64b  Ubuntu, avec Linux 4.15.0-76-generic (sur /dev/sda2)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-4.15.0-76-generic--adb3563a-ddba-4f75-8e82-7df3e3d2a4a5' {
		insmod part_msdos
		insmod ext2
		set root='hd0,msdos2'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos2 --hint-efi=hd0,msdos2 --hint-baremetal=ahci0,msdos2  adb3563a-ddba-4f75-8e82-7df3e3d2a4a5
		else
		  search --no-floppy --fs-uuid --set=root adb3563a-ddba-4f75-8e82-7df3e3d2a4a5
		fi
		linux /boot/vmlinuz-4.15.0-76-generic root=UUID=adb3563a-ddba-4f75-8e82-7df3e3d2a4a5 ro quiet splash $vt_handoff
		initrd /boot/initrd.img-4.15.0-76-generic
	}
	menuentry 'U18.04-a2-64b  Ubuntu, with Linux 4.15.0-76-generic (recovery mode) (sur /dev/sda2)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-4.15.0-76-generic-root=UUID=adb3563a-ddba-4f75-8e82-7df3e3d2a4a5 ro recovery nomodeset-adb3563a-ddba-4f75-8e82-7df3e3d2a4a5' {
		insmod part_msdos
		insmod ext2
		set root='hd0,msdos2'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos2 --hint-efi=hd0,msdos2 --hint-baremetal=ahci0,msdos2  adb3563a-ddba-4f75-8e82-7df3e3d2a4a5
		else
		  search --no-floppy --fs-uuid --set=root adb3563a-ddba-4f75-8e82-7df3e3d2a4a5
		fi
		linux /boot/vmlinuz-4.15.0-76-generic root=UUID=adb3563a-ddba-4f75-8e82-7df3e3d2a4a5 ro recovery nomodeset
		initrd /boot/initrd.img-4.15.0-76-generic
	}
}

menuentry 'U14.04-a5-64b : Ubuntu 14.04.5 LTS (14.04) (sur /dev/sda5)' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-simple-ed6801f3-ddfe-46ff-b3e9-83219cd58ca9' {
	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  ed6801f3-ddfe-46ff-b3e9-83219cd58ca9
	else
	  search --no-floppy --fs-uuid --set=root ed6801f3-ddfe-46ff-b3e9-83219cd58ca9
	fi
	linux /vmlinuz root=/dev/sda5
	initrd /initrd.img
}
submenu 'U14.04-a5-64b : Options avancées pour Ubuntu 14.04.5 LTS (14.04) (sur /dev/sda5)' $menuentry_id_option 'osprober-gnulinux-advanced-ed6801f3-ddfe-46ff-b3e9-83219cd58ca9' {
	menuentry 'U14.04-a5-64b : Ubuntu 14.04.5 LTS (14.04) (sur /dev/sda5)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/vmlinuz--ed6801f3-ddfe-46ff-b3e9-83219cd58ca9' {
		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  ed6801f3-ddfe-46ff-b3e9-83219cd58ca9
		else
		  search --no-floppy --fs-uuid --set=root ed6801f3-ddfe-46ff-b3e9-83219cd58ca9
		fi
		linux /vmlinuz root=/dev/sda5
		initrd /initrd.img
	}
	menuentry 'U14.04-a5-64b : Ubuntu 14.04.5 LTS (14.04) (sur /dev/sda5)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/vmlinuz--ed6801f3-ddfe-46ff-b3e9-83219cd58ca9' {
		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  ed6801f3-ddfe-46ff-b3e9-83219cd58ca9
		else
		  search --no-floppy --fs-uuid --set=root ed6801f3-ddfe-46ff-b3e9-83219cd58ca9
		fi
		linux /vmlinuz root=/dev/sda5
		initrd /initrd.img
	}
	menuentry 'U14.04-a5-64b : Ubuntu 14.04.5 LTS (14.04) (sur /dev/sda5)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/vmlinuz--ed6801f3-ddfe-46ff-b3e9-83219cd58ca9' {
		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  ed6801f3-ddfe-46ff-b3e9-83219cd58ca9
		else
		  search --no-floppy --fs-uuid --set=root ed6801f3-ddfe-46ff-b3e9-83219cd58ca9
		fi
		linux /vmlinuz root=/dev/sda5
		initrd /initrd.img.old
	}
	menuentry 'U14.04-a5-64b : Ubuntu 14.04.5 LTS (14.04) (sur /dev/sda5)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-3.13.0-162-generic--ed6801f3-ddfe-46ff-b3e9-83219cd58ca9' {
		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  ed6801f3-ddfe-46ff-b3e9-83219cd58ca9
		else
		  search --no-floppy --fs-uuid --set=root ed6801f3-ddfe-46ff-b3e9-83219cd58ca9
		fi
		linux /boot/vmlinuz-3.13.0-162-generic root=/dev/sda5
		initrd /boot/initrd.img-3.13.0-162-generic
	}
	menuentry 'U14.04-a5-64b : Ubuntu 14.04.5 LTS (14.04) (sur /dev/sda5)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-3.13.0-117-generic--ed6801f3-ddfe-46ff-b3e9-83219cd58ca9' {
		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  ed6801f3-ddfe-46ff-b3e9-83219cd58ca9
		else
		  search --no-floppy --fs-uuid --set=root ed6801f3-ddfe-46ff-b3e9-83219cd58ca9
		fi
		linux /boot/vmlinuz-3.13.0-117-generic root=/dev/sda5
		initrd /boot/initrd.img-3.13.0-117-generic
	}
	menuentry 'U14.04-a5-64b : Ubuntu 14.04.5 LTS (14.04) (sur /dev/sda5)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-3.13.0-107-generic--ed6801f3-ddfe-46ff-b3e9-83219cd58ca9' {
		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  ed6801f3-ddfe-46ff-b3e9-83219cd58ca9
		else
		  search --no-floppy --fs-uuid --set=root ed6801f3-ddfe-46ff-b3e9-83219cd58ca9
		fi
		linux /boot/vmlinuz-3.13.0-107-generic root=/dev/sda5
		initrd /boot/initrd.img-3.13.0-107-generic
	}
	menuentry 'U14.04-a5-64b : Ubuntu 14.04.5 LTS (14.04) (sur /dev/sda5)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/vmlinuz--ed6801f3-ddfe-46ff-b3e9-83219cd58ca9' {
		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  ed6801f3-ddfe-46ff-b3e9-83219cd58ca9
		else
		  search --no-floppy --fs-uuid --set=root ed6801f3-ddfe-46ff-b3e9-83219cd58ca9
		fi
		linux /vmlinuz root=/dev/sda5
		initrd /initrd.img
	}
	menuentry 'U14.04-a5-64b : Ubuntu 14.04.5 LTS (14.04) (sur /dev/sda5)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/vmlinuz--ed6801f3-ddfe-46ff-b3e9-83219cd58ca9' {
		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  ed6801f3-ddfe-46ff-b3e9-83219cd58ca9
		else
		  search --no-floppy --fs-uuid --set=root ed6801f3-ddfe-46ff-b3e9-83219cd58ca9
		fi
		linux /vmlinuz root=/dev/sda5
		initrd /initrd.img
	}
	menuentry 'U14.04-a5-64b : Ubuntu 14.04.5 LTS (14.04) (sur /dev/sda5)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/vmlinuz--ed6801f3-ddfe-46ff-b3e9-83219cd58ca9' {
		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  ed6801f3-ddfe-46ff-b3e9-83219cd58ca9
		else
		  search --no-floppy --fs-uuid --set=root ed6801f3-ddfe-46ff-b3e9-83219cd58ca9
		fi
		linux /vmlinuz root=/dev/sda5
		initrd /initrd.img.old
	}
	menuentry 'U14.04-a5-64b : Ubuntu 14.04.5 LTS (14.04) (sur /dev/sda5)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/vmlinuz.old--ed6801f3-ddfe-46ff-b3e9-83219cd58ca9' {
		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  ed6801f3-ddfe-46ff-b3e9-83219cd58ca9
		else
		  search --no-floppy --fs-uuid --set=root ed6801f3-ddfe-46ff-b3e9-83219cd58ca9
		fi
		linux /vmlinuz.old root=/dev/sda5
		initrd /initrd.img.old
	}
}

menuentry 'U16.04-a7-32b : Ubuntu 16.04.5 LTS (16.04) (sur /dev/sda7)' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-simple-c63335c7-be09-4782-978c-dff6cce2be94' {
	insmod part_msdos
	insmod ext2
	set root='hd0,msdos7'
	if [ x$feature_platform_search_hint = xy ]; then
	  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos7 --hint-efi=hd0,msdos7 --hint-baremetal=ahci0,msdos7  c63335c7-be09-4782-978c-dff6cce2be94
	else
	  search --no-floppy --fs-uuid --set=root c63335c7-be09-4782-978c-dff6cce2be94
	fi
	linux /vmlinuz root=/dev/sda7
	initrd /initrd.img
}
submenu 'U16.04-a7-32b : Options avancées pour Ubuntu 16.04.5 LTS (16.04) (sur /dev/sda7)' $menuentry_id_option 'osprober-gnulinux-advanced-c63335c7-be09-4782-978c-dff6cce2be94' {
	menuentry 'U16.04-a7-32b : Ubuntu 16.04.5 LTS (16.04) (sur /dev/sda7)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/vmlinuz--c63335c7-be09-4782-978c-dff6cce2be94' {
		insmod part_msdos
		insmod ext2
		set root='hd0,msdos7'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos7 --hint-efi=hd0,msdos7 --hint-baremetal=ahci0,msdos7  c63335c7-be09-4782-978c-dff6cce2be94
		else
		  search --no-floppy --fs-uuid --set=root c63335c7-be09-4782-978c-dff6cce2be94
		fi
		linux /vmlinuz root=/dev/sda7
		initrd /initrd.img
	}
	menuentry 'U16.04-a7-32b : Ubuntu 16.04.5 LTS (16.04) (sur /dev/sda7)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/vmlinuz--c63335c7-be09-4782-978c-dff6cce2be94' {
		insmod part_msdos
		insmod ext2
		set root='hd0,msdos7'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos7 --hint-efi=hd0,msdos7 --hint-baremetal=ahci0,msdos7  c63335c7-be09-4782-978c-dff6cce2be94
		else
		  search --no-floppy --fs-uuid --set=root c63335c7-be09-4782-978c-dff6cce2be94
		fi
		linux /vmlinuz root=/dev/sda7
		initrd /initrd.img
	}
	menuentry 'U16.04-a7-32b : Ubuntu 16.04.5 LTS (16.04) (sur /dev/sda7)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/vmlinuz--c63335c7-be09-4782-978c-dff6cce2be94' {
		insmod part_msdos
		insmod ext2
		set root='hd0,msdos7'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos7 --hint-efi=hd0,msdos7 --hint-baremetal=ahci0,msdos7  c63335c7-be09-4782-978c-dff6cce2be94
		else
		  search --no-floppy --fs-uuid --set=root c63335c7-be09-4782-978c-dff6cce2be94
		fi
		linux /vmlinuz root=/dev/sda7
		initrd /initrd.img.old
	}
	menuentry 'U16.04-a7-32b : Ubuntu 16.04.5 LTS (16.04) (sur /dev/sda7)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-4.4.0-139-generic--c63335c7-be09-4782-978c-dff6cce2be94' {
		insmod part_msdos
		insmod ext2
		set root='hd0,msdos7'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos7 --hint-efi=hd0,msdos7 --hint-baremetal=ahci0,msdos7  c63335c7-be09-4782-978c-dff6cce2be94
		else
		  search --no-floppy --fs-uuid --set=root c63335c7-be09-4782-978c-dff6cce2be94
		fi
		linux /boot/vmlinuz-4.4.0-139-generic root=/dev/sda7
		initrd /boot/initrd.img-4.4.0-139-generic
	}
	menuentry 'U16.04-a7-32b : Ubuntu 16.04.5 LTS (16.04) (sur /dev/sda7)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-4.4.0-81-generic--c63335c7-be09-4782-978c-dff6cce2be94' {
		insmod part_msdos
		insmod ext2
		set root='hd0,msdos7'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos7 --hint-efi=hd0,msdos7 --hint-baremetal=ahci0,msdos7  c63335c7-be09-4782-978c-dff6cce2be94
		else
		  search --no-floppy --fs-uuid --set=root c63335c7-be09-4782-978c-dff6cce2be94
		fi
		linux /boot/vmlinuz-4.4.0-81-generic root=/dev/sda7
		initrd /boot/initrd.img-4.4.0-81-generic
	}
	menuentry 'U16.04-a7-32b : Ubuntu 16.04.5 LTS (16.04) (sur /dev/sda7)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-4.4.0-47-generic--c63335c7-be09-4782-978c-dff6cce2be94' {
		insmod part_msdos
		insmod ext2
		set root='hd0,msdos7'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos7 --hint-efi=hd0,msdos7 --hint-baremetal=ahci0,msdos7  c63335c7-be09-4782-978c-dff6cce2be94
		else
		  search --no-floppy --fs-uuid --set=root c63335c7-be09-4782-978c-dff6cce2be94
		fi
		linux /boot/vmlinuz-4.4.0-47-generic root=/dev/sda7
		initrd /boot/initrd.img-4.4.0-47-generic
	}
	menuentry 'U16.04-a7-32b : Ubuntu 16.04.5 LTS (16.04) (sur /dev/sda7)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/vmlinuz--c63335c7-be09-4782-978c-dff6cce2be94' {
		insmod part_msdos
		insmod ext2
		set root='hd0,msdos7'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos7 --hint-efi=hd0,msdos7 --hint-baremetal=ahci0,msdos7  c63335c7-be09-4782-978c-dff6cce2be94
		else
		  search --no-floppy --fs-uuid --set=root c63335c7-be09-4782-978c-dff6cce2be94
		fi
		linux /vmlinuz root=/dev/sda7
		initrd /initrd.img
	}
	menuentry 'U16.04-a7-32b : Ubuntu 16.04.5 LTS (16.04) (sur /dev/sda7)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/vmlinuz--c63335c7-be09-4782-978c-dff6cce2be94' {
		insmod part_msdos
		insmod ext2
		set root='hd0,msdos7'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos7 --hint-efi=hd0,msdos7 --hint-baremetal=ahci0,msdos7  c63335c7-be09-4782-978c-dff6cce2be94
		else
		  search --no-floppy --fs-uuid --set=root c63335c7-be09-4782-978c-dff6cce2be94
		fi
		linux /vmlinuz root=/dev/sda7
		initrd /initrd.img
	}
	menuentry 'U16.04-a7-32b : Ubuntu 16.04.5 LTS (16.04) (sur /dev/sda7)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/vmlinuz--c63335c7-be09-4782-978c-dff6cce2be94' {
		insmod part_msdos
		insmod ext2
		set root='hd0,msdos7'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos7 --hint-efi=hd0,msdos7 --hint-baremetal=ahci0,msdos7  c63335c7-be09-4782-978c-dff6cce2be94
		else
		  search --no-floppy --fs-uuid --set=root c63335c7-be09-4782-978c-dff6cce2be94
		fi
		linux /vmlinuz root=/dev/sda7
		initrd /initrd.img.old
	}
	menuentry 'U16.04-a7-32b : Ubuntu 16.04.5 LTS (16.04) (sur /dev/sda7)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/vmlinuz.old--c63335c7-be09-4782-978c-dff6cce2be94' {
		insmod part_msdos
		insmod ext2
		set root='hd0,msdos7'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos7 --hint-efi=hd0,msdos7 --hint-baremetal=ahci0,msdos7  c63335c7-be09-4782-978c-dff6cce2be94
		else
		  search --no-floppy --fs-uuid --set=root c63335c7-be09-4782-978c-dff6cce2be94
		fi
		linux /vmlinuz.old root=/dev/sda7
		initrd /initrd.img.old
	}
}

menuentry 'X16.04-a9-32b : Ubuntu 16.04.6 LTS (16.04) (sur /dev/sda9)' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-simple-d4b0b586-0b8e-457e-b492-78c272d1954f' {
	insmod part_msdos
	insmod ext2
	set root='hd0,msdos9'
	if [ x$feature_platform_search_hint = xy ]; then
	  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos9 --hint-efi=hd0,msdos9 --hint-baremetal=ahci0,msdos9  d4b0b586-0b8e-457e-b492-78c272d1954f
	else
	  search --no-floppy --fs-uuid --set=root d4b0b586-0b8e-457e-b492-78c272d1954f
	fi
	linux /vmlinuz root=/dev/sda9
	initrd /initrd.img
}
submenu 'X16.04-a9-32b : Options avancées pour Ubuntu 16.04.6 LTS (16.04) (sur /dev/sda9)' $menuentry_id_option 'osprober-gnulinux-advanced-d4b0b586-0b8e-457e-b492-78c272d1954f' {
	menuentry 'X16.04-a9-32b : Ubuntu 16.04.6 LTS (16.04) (sur /dev/sda9)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/vmlinuz--d4b0b586-0b8e-457e-b492-78c272d1954f' {
		insmod part_msdos
		insmod ext2
		set root='hd0,msdos9'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos9 --hint-efi=hd0,msdos9 --hint-baremetal=ahci0,msdos9  d4b0b586-0b8e-457e-b492-78c272d1954f
		else
		  search --no-floppy --fs-uuid --set=root d4b0b586-0b8e-457e-b492-78c272d1954f
		fi
		linux /vmlinuz root=/dev/sda9
		initrd /initrd.img
	}
	menuentry 'X16.04-a9-32b : Ubuntu 16.04.6 LTS (16.04) (sur /dev/sda9)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/vmlinuz--d4b0b586-0b8e-457e-b492-78c272d1954f' {
		insmod part_msdos
		insmod ext2
		set root='hd0,msdos9'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos9 --hint-efi=hd0,msdos9 --hint-baremetal=ahci0,msdos9  d4b0b586-0b8e-457e-b492-78c272d1954f
		else
		  search --no-floppy --fs-uuid --set=root d4b0b586-0b8e-457e-b492-78c272d1954f
		fi
		linux /vmlinuz root=/dev/sda9
		initrd /initrd.img
	}
	menuentry 'X16.04-a9-32b : Ubuntu 16.04.6 LTS (16.04) (sur /dev/sda9)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/vmlinuz--d4b0b586-0b8e-457e-b492-78c272d1954f' {
		insmod part_msdos
		insmod ext2
		set root='hd0,msdos9'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos9 --hint-efi=hd0,msdos9 --hint-baremetal=ahci0,msdos9  d4b0b586-0b8e-457e-b492-78c272d1954f
		else
		  search --no-floppy --fs-uuid --set=root d4b0b586-0b8e-457e-b492-78c272d1954f
		fi
		linux /vmlinuz root=/dev/sda9
		initrd /initrd.img.old
	}
	menuentry 'X16.04-a9-32b : Ubuntu 16.04.6 LTS (16.04) (sur /dev/sda9)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-4.4.0-173-generic--d4b0b586-0b8e-457e-b492-78c272d1954f' {
		insmod part_msdos
		insmod ext2
		set root='hd0,msdos9'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos9 --hint-efi=hd0,msdos9 --hint-baremetal=ahci0,msdos9  d4b0b586-0b8e-457e-b492-78c272d1954f
		else
		  search --no-floppy --fs-uuid --set=root d4b0b586-0b8e-457e-b492-78c272d1954f
		fi
		linux /boot/vmlinuz-4.4.0-173-generic root=/dev/sda9
		initrd /boot/initrd.img-4.4.0-173-generic
	}
	menuentry 'X16.04-a9-32b : Ubuntu 16.04.6 LTS (16.04) (sur /dev/sda9)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-4.4.0-139-generic--d4b0b586-0b8e-457e-b492-78c272d1954f' {
		insmod part_msdos
		insmod ext2
		set root='hd0,msdos9'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos9 --hint-efi=hd0,msdos9 --hint-baremetal=ahci0,msdos9  d4b0b586-0b8e-457e-b492-78c272d1954f
		else
		  search --no-floppy --fs-uuid --set=root d4b0b586-0b8e-457e-b492-78c272d1954f
		fi
		linux /boot/vmlinuz-4.4.0-139-generic root=/dev/sda9
		initrd /boot/initrd.img-4.4.0-139-generic
	}
	menuentry 'X16.04-a9-32b : Ubuntu 16.04.6 LTS (16.04) (sur /dev/sda9)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-4.4.0-97-generic--d4b0b586-0b8e-457e-b492-78c272d1954f' {
		insmod part_msdos
		insmod ext2
		set root='hd0,msdos9'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos9 --hint-efi=hd0,msdos9 --hint-baremetal=ahci0,msdos9  d4b0b586-0b8e-457e-b492-78c272d1954f
		else
		  search --no-floppy --fs-uuid --set=root d4b0b586-0b8e-457e-b492-78c272d1954f
		fi
		linux /boot/vmlinuz-4.4.0-97-generic root=/dev/sda9
		initrd /boot/initrd.img-4.4.0-97-generic
	}
	menuentry 'X16.04-a9-32b : Ubuntu 16.04.6 LTS (16.04) (sur /dev/sda9)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-4.4.0-83-generic--d4b0b586-0b8e-457e-b492-78c272d1954f' {
		insmod part_msdos
		insmod ext2
		set root='hd0,msdos9'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos9 --hint-efi=hd0,msdos9 --hint-baremetal=ahci0,msdos9  d4b0b586-0b8e-457e-b492-78c272d1954f
		else
		  search --no-floppy --fs-uuid --set=root d4b0b586-0b8e-457e-b492-78c272d1954f
		fi
		linux /boot/vmlinuz-4.4.0-83-generic root=/dev/sda9
		initrd /boot/initrd.img-4.4.0-83-generic
	}
	menuentry 'X16.04-a9-32b : Ubuntu 16.04.6 LTS (16.04) (sur /dev/sda9)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-4.4.0-28-generic--d4b0b586-0b8e-457e-b492-78c272d1954f' {
		insmod part_msdos
		insmod ext2
		set root='hd0,msdos9'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos9 --hint-efi=hd0,msdos9 --hint-baremetal=ahci0,msdos9  d4b0b586-0b8e-457e-b492-78c272d1954f
		else
		  search --no-floppy --fs-uuid --set=root d4b0b586-0b8e-457e-b492-78c272d1954f
		fi
		linux /boot/vmlinuz-4.4.0-28-generic root=/dev/sda9
		initrd /boot/initrd.img-4.4.0-28-generic
	}
	menuentry 'X16.04-a9-32b : Ubuntu 16.04.6 LTS (16.04) (sur /dev/sda9)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/vmlinuz--d4b0b586-0b8e-457e-b492-78c272d1954f' {
		insmod part_msdos
		insmod ext2
		set root='hd0,msdos9'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos9 --hint-efi=hd0,msdos9 --hint-baremetal=ahci0,msdos9  d4b0b586-0b8e-457e-b492-78c272d1954f
		else
		  search --no-floppy --fs-uuid --set=root d4b0b586-0b8e-457e-b492-78c272d1954f
		fi
		linux /vmlinuz root=/dev/sda9
		initrd /initrd.img
	}
	menuentry 'X16.04-a9-32b : Ubuntu 16.04.6 LTS (16.04) (sur /dev/sda9)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/vmlinuz--d4b0b586-0b8e-457e-b492-78c272d1954f' {
		insmod part_msdos
		insmod ext2
		set root='hd0,msdos9'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos9 --hint-efi=hd0,msdos9 --hint-baremetal=ahci0,msdos9  d4b0b586-0b8e-457e-b492-78c272d1954f
		else
		  search --no-floppy --fs-uuid --set=root d4b0b586-0b8e-457e-b492-78c272d1954f
		fi
		linux /vmlinuz root=/dev/sda9
		initrd /initrd.img
	}
	menuentry 'X16.04-a9-32b : Ubuntu 16.04.6 LTS (16.04) (sur /dev/sda9)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/vmlinuz--d4b0b586-0b8e-457e-b492-78c272d1954f' {
		insmod part_msdos
		insmod ext2
		set root='hd0,msdos9'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos9 --hint-efi=hd0,msdos9 --hint-baremetal=ahci0,msdos9  d4b0b586-0b8e-457e-b492-78c272d1954f
		else
		  search --no-floppy --fs-uuid --set=root d4b0b586-0b8e-457e-b492-78c272d1954f
		fi
		linux /vmlinuz root=/dev/sda9
		initrd /initrd.img.old
	}
	menuentry 'X16.04-a9-32b : Ubuntu 16.04.6 LTS (16.04) (sur /dev/sda9)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/vmlinuz.old--d4b0b586-0b8e-457e-b492-78c272d1954f' {
		insmod part_msdos
		insmod ext2
		set root='hd0,msdos9'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos9 --hint-efi=hd0,msdos9 --hint-baremetal=ahci0,msdos9  d4b0b586-0b8e-457e-b492-78c272d1954f
		else
		  search --no-floppy --fs-uuid --set=root d4b0b586-0b8e-457e-b492-78c272d1954f
		fi
		linux /vmlinuz.old root=/dev/sda9
		initrd /initrd.img.old
	}
}

menuentry 'Windows NT/2000/XP (sur /dev/sdb1)' --class windows --class os $menuentry_id_option 'osprober-chain-0AF8F8ED4E45274B' {
	insmod part_msdos
	insmod ntfs
	set root='hd1,msdos1'
	if [ x$feature_platform_search_hint = xy ]; then
	  search --no-floppy --fs-uuid --set=root --hint-bios=hd1,msdos1 --hint-efi=hd1,msdos1 --hint-baremetal=ahci1,msdos1  0AF8F8ED4E45274B
	else
	  search --no-floppy --fs-uuid --set=root 0AF8F8ED4E45274B
	fi
	parttool ${root} hidden-
	drivemap -s (hd0) ${root}
	chainloader +1
}
menuentry 'U16.04-b5-64b : Ubuntu 16.04.6 LTS (16.04) (sur /dev/sdb5)' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-simple-a17886e2-7520-42fb-bb3c-7b43781cf5bc' {
	insmod part_msdos
	insmod ext2
	set root='hd1,msdos5'
	if [ x$feature_platform_search_hint = xy ]; then
	  search --no-floppy --fs-uuid --set=root --hint-bios=hd1,msdos5 --hint-efi=hd1,msdos5 --hint-baremetal=ahci1,msdos5  a17886e2-7520-42fb-bb3c-7b43781cf5bc
	else
	  search --no-floppy --fs-uuid --set=root a17886e2-7520-42fb-bb3c-7b43781cf5bc
	fi
	linux /boot/vmlinuz-4.4.0-177-generic root=UUID=a17886e2-7520-42fb-bb3c-7b43781cf5bc ro quiet splash $vt_handoff
	initrd /boot/initrd.img-4.4.0-177-generic
}
submenu 'U16.04-b5-64b : Options avancées pour Ubuntu 16.04.6 LTS (16.04) (sur /dev/sdb5)' $menuentry_id_option 'osprober-gnulinux-advanced-a17886e2-7520-42fb-bb3c-7b43781cf5bc' {
	menuentry 'U16.04-b5-64b  Ubuntu (sur /dev/sdb5)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-4.4.0-177-generic--a17886e2-7520-42fb-bb3c-7b43781cf5bc' {
		insmod part_msdos
		insmod ext2
		set root='hd1,msdos5'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd1,msdos5 --hint-efi=hd1,msdos5 --hint-baremetal=ahci1,msdos5  a17886e2-7520-42fb-bb3c-7b43781cf5bc
		else
		  search --no-floppy --fs-uuid --set=root a17886e2-7520-42fb-bb3c-7b43781cf5bc
		fi
		linux /boot/vmlinuz-4.4.0-177-generic root=UUID=a17886e2-7520-42fb-bb3c-7b43781cf5bc ro quiet splash $vt_handoff
		initrd /boot/initrd.img-4.4.0-177-generic
	}
	menuentry 'U16.04-b5-64b  Ubuntu, avec Linux 4.4.0-177-generic (sur /dev/sdb5)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-4.4.0-177-generic--a17886e2-7520-42fb-bb3c-7b43781cf5bc' {
		insmod part_msdos
		insmod ext2
		set root='hd1,msdos5'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd1,msdos5 --hint-efi=hd1,msdos5 --hint-baremetal=ahci1,msdos5  a17886e2-7520-42fb-bb3c-7b43781cf5bc
		else
		  search --no-floppy --fs-uuid --set=root a17886e2-7520-42fb-bb3c-7b43781cf5bc
		fi
		linux /boot/vmlinuz-4.4.0-177-generic root=UUID=a17886e2-7520-42fb-bb3c-7b43781cf5bc ro quiet splash $vt_handoff
		initrd /boot/initrd.img-4.4.0-177-generic
	}
	menuentry 'U16.04-b5-64b  Ubuntu, with Linux 4.4.0-177-generic (upstart) (sur /dev/sdb5)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-4.4.0-177-generic--a17886e2-7520-42fb-bb3c-7b43781cf5bc' {
		insmod part_msdos
		insmod ext2
		set root='hd1,msdos5'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd1,msdos5 --hint-efi=hd1,msdos5 --hint-baremetal=ahci1,msdos5  a17886e2-7520-42fb-bb3c-7b43781cf5bc
		else
		  search --no-floppy --fs-uuid --set=root a17886e2-7520-42fb-bb3c-7b43781cf5bc
		fi
		linux /boot/vmlinuz-4.4.0-177-generic root=UUID=a17886e2-7520-42fb-bb3c-7b43781cf5bc ro quiet splash $vt_handoff init=/sbin/upstart
		initrd /boot/initrd.img-4.4.0-177-generic
	}
	menuentry 'U16.04-b5-64b  Ubuntu, with Linux 4.4.0-177-generic (recovery mode) (sur /dev/sdb5)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-4.4.0-177-generic-root=UUID=a17886e2-7520-42fb-bb3c-7b43781cf5bc ro recovery nomodeset-a17886e2-7520-42fb-bb3c-7b43781cf5bc' {
		insmod part_msdos
		insmod ext2
		set root='hd1,msdos5'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd1,msdos5 --hint-efi=hd1,msdos5 --hint-baremetal=ahci1,msdos5  a17886e2-7520-42fb-bb3c-7b43781cf5bc
		else
		  search --no-floppy --fs-uuid --set=root a17886e2-7520-42fb-bb3c-7b43781cf5bc
		fi
		linux /boot/vmlinuz-4.4.0-177-generic root=UUID=a17886e2-7520-42fb-bb3c-7b43781cf5bc ro recovery nomodeset
		initrd /boot/initrd.img-4.4.0-177-generic
	}
	menuentry 'U16.04-b5-64b  Ubuntu, avec Linux 4.4.0-173-generic (sur /dev/sdb5)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-4.4.0-173-generic--a17886e2-7520-42fb-bb3c-7b43781cf5bc' {
		insmod part_msdos
		insmod ext2
		set root='hd1,msdos5'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd1,msdos5 --hint-efi=hd1,msdos5 --hint-baremetal=ahci1,msdos5  a17886e2-7520-42fb-bb3c-7b43781cf5bc
		else
		  search --no-floppy --fs-uuid --set=root a17886e2-7520-42fb-bb3c-7b43781cf5bc
		fi
		linux /boot/vmlinuz-4.4.0-173-generic root=UUID=a17886e2-7520-42fb-bb3c-7b43781cf5bc ro quiet splash $vt_handoff
		initrd /boot/initrd.img-4.4.0-173-generic
	}
	menuentry 'U16.04-b5-64b  Ubuntu, with Linux 4.4.0-173-generic (upstart) (sur /dev/sdb5)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-4.4.0-173-generic--a17886e2-7520-42fb-bb3c-7b43781cf5bc' {
		insmod part_msdos
		insmod ext2
		set root='hd1,msdos5'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd1,msdos5 --hint-efi=hd1,msdos5 --hint-baremetal=ahci1,msdos5  a17886e2-7520-42fb-bb3c-7b43781cf5bc
		else
		  search --no-floppy --fs-uuid --set=root a17886e2-7520-42fb-bb3c-7b43781cf5bc
		fi
		linux /boot/vmlinuz-4.4.0-173-generic root=UUID=a17886e2-7520-42fb-bb3c-7b43781cf5bc ro quiet splash $vt_handoff init=/sbin/upstart
		initrd /boot/initrd.img-4.4.0-173-generic
	}
	menuentry 'U16.04-b5-64b  Ubuntu, with Linux 4.4.0-173-generic (recovery mode) (sur /dev/sdb5)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-4.4.0-173-generic-root=UUID=a17886e2-7520-42fb-bb3c-7b43781cf5bc ro recovery nomodeset-a17886e2-7520-42fb-bb3c-7b43781cf5bc' {
		insmod part_msdos
		insmod ext2
		set root='hd1,msdos5'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd1,msdos5 --hint-efi=hd1,msdos5 --hint-baremetal=ahci1,msdos5  a17886e2-7520-42fb-bb3c-7b43781cf5bc
		else
		  search --no-floppy --fs-uuid --set=root a17886e2-7520-42fb-bb3c-7b43781cf5bc
		fi
		linux /boot/vmlinuz-4.4.0-173-generic root=UUID=a17886e2-7520-42fb-bb3c-7b43781cf5bc ro recovery nomodeset
		initrd /boot/initrd.img-4.4.0-173-generic
	}
}

menuentry 'Windows NT/2000/XP (sur /dev/sdc1)' --class windows --class os $menuentry_id_option 'osprober-chain-78684472684430E4' {
	insmod part_msdos
	insmod ntfs
	set root='hd2,msdos1'
	if [ x$feature_platform_search_hint = xy ]; then
	  search --no-floppy --fs-uuid --set=root --hint-bios=hd2,msdos1 --hint-efi=hd2,msdos1 --hint-baremetal=ahci2,msdos1  78684472684430E4
	else
	  search --no-floppy --fs-uuid --set=root 78684472684430E4
	fi
	parttool ${root} hidden-
	drivemap -s (hd0) ${root}
	chainloader +1
}
menuentry 'U18-04-c11 : Ubuntu 18.04.4 LTS (18.04) (sur /dev/sdc11)' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-simple-3aabc8ae-d129-419c-bb5a-1292d98ec0f6' {
	insmod part_msdos
	insmod ext2
	set root='hd2,msdos11'
	if [ x$feature_platform_search_hint = xy ]; then
	  search --no-floppy --fs-uuid --set=root --hint-bios=hd2,msdos11 --hint-efi=hd2,msdos11 --hint-baremetal=ahci2,msdos11  3aabc8ae-d129-419c-bb5a-1292d98ec0f6
	else
	  search --no-floppy --fs-uuid --set=root 3aabc8ae-d129-419c-bb5a-1292d98ec0f6
	fi
	linux /boot/vmlinuz-4.15.0-96-generic root=UUID=3aabc8ae-d129-419c-bb5a-1292d98ec0f6 ro quiet splash $vt_handoff
	initrd /boot/initrd.img-4.15.0-96-generic
}
submenu 'U18-04-c11 : Options avancées pour Ubuntu 18.04.4 LTS (18.04) (sur /dev/sdc11)' $menuentry_id_option 'osprober-gnulinux-advanced-3aabc8ae-d129-419c-bb5a-1292d98ec0f6' {
	menuentry 'U18-04-c11  Ubuntu (sur /dev/sdc11)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-4.15.0-96-generic--3aabc8ae-d129-419c-bb5a-1292d98ec0f6' {
		insmod part_msdos
		insmod ext2
		set root='hd2,msdos11'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd2,msdos11 --hint-efi=hd2,msdos11 --hint-baremetal=ahci2,msdos11  3aabc8ae-d129-419c-bb5a-1292d98ec0f6
		else
		  search --no-floppy --fs-uuid --set=root 3aabc8ae-d129-419c-bb5a-1292d98ec0f6
		fi
		linux /boot/vmlinuz-4.15.0-96-generic root=UUID=3aabc8ae-d129-419c-bb5a-1292d98ec0f6 ro quiet splash $vt_handoff
		initrd /boot/initrd.img-4.15.0-96-generic
	}
	menuentry 'U18-04-c11  Ubuntu, avec Linux 4.15.0-96-generic (sur /dev/sdc11)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-4.15.0-96-generic--3aabc8ae-d129-419c-bb5a-1292d98ec0f6' {
		insmod part_msdos
		insmod ext2
		set root='hd2,msdos11'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd2,msdos11 --hint-efi=hd2,msdos11 --hint-baremetal=ahci2,msdos11  3aabc8ae-d129-419c-bb5a-1292d98ec0f6
		else
		  search --no-floppy --fs-uuid --set=root 3aabc8ae-d129-419c-bb5a-1292d98ec0f6
		fi
		linux /boot/vmlinuz-4.15.0-96-generic root=UUID=3aabc8ae-d129-419c-bb5a-1292d98ec0f6 ro quiet splash $vt_handoff
		initrd /boot/initrd.img-4.15.0-96-generic
	}
	menuentry 'U18-04-c11  Ubuntu, with Linux 4.15.0-96-generic (recovery mode) (sur /dev/sdc11)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-4.15.0-96-generic-root=UUID=3aabc8ae-d129-419c-bb5a-1292d98ec0f6 ro recovery nomodeset-3aabc8ae-d129-419c-bb5a-1292d98ec0f6' {
		insmod part_msdos
		insmod ext2
		set root='hd2,msdos11'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd2,msdos11 --hint-efi=hd2,msdos11 --hint-baremetal=ahci2,msdos11  3aabc8ae-d129-419c-bb5a-1292d98ec0f6
		else
		  search --no-floppy --fs-uuid --set=root 3aabc8ae-d129-419c-bb5a-1292d98ec0f6
		fi
		linux /boot/vmlinuz-4.15.0-96-generic root=UUID=3aabc8ae-d129-419c-bb5a-1292d98ec0f6 ro recovery nomodeset
		initrd /boot/initrd.img-4.15.0-96-generic
	}
	menuentry 'U18-04-c11  Ubuntu, avec Linux 4.15.0-55-generic (sur /dev/sdc11)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-4.15.0-55-generic--3aabc8ae-d129-419c-bb5a-1292d98ec0f6' {
		insmod part_msdos
		insmod ext2
		set root='hd2,msdos11'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd2,msdos11 --hint-efi=hd2,msdos11 --hint-baremetal=ahci2,msdos11  3aabc8ae-d129-419c-bb5a-1292d98ec0f6
		else
		  search --no-floppy --fs-uuid --set=root 3aabc8ae-d129-419c-bb5a-1292d98ec0f6
		fi
		linux /boot/vmlinuz-4.15.0-55-generic root=UUID=3aabc8ae-d129-419c-bb5a-1292d98ec0f6 ro quiet splash $vt_handoff
		initrd /boot/initrd.img-4.15.0-55-generic
	}
	menuentry 'U18-04-c11  Ubuntu, with Linux 4.15.0-55-generic (recovery mode) (sur /dev/sdc11)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-4.15.0-55-generic-root=UUID=3aabc8ae-d129-419c-bb5a-1292d98ec0f6 ro recovery nomodeset-3aabc8ae-d129-419c-bb5a-1292d98ec0f6' {
		insmod part_msdos
		insmod ext2
		set root='hd2,msdos11'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd2,msdos11 --hint-efi=hd2,msdos11 --hint-baremetal=ahci2,msdos11  3aabc8ae-d129-419c-bb5a-1292d98ec0f6
		else
		  search --no-floppy --fs-uuid --set=root 3aabc8ae-d129-419c-bb5a-1292d98ec0f6
		fi
		linux /boot/vmlinuz-4.15.0-55-generic root=UUID=3aabc8ae-d129-419c-bb5a-1292d98ec0f6 ro recovery nomodeset
		initrd /boot/initrd.img-4.15.0-55-generic
	}
	menuentry 'U18-04-c11  Ubuntu, avec Linux 4.15.0-42-generic (sur /dev/sdc11)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-4.15.0-42-generic--3aabc8ae-d129-419c-bb5a-1292d98ec0f6' {
		insmod part_msdos
		insmod ext2
		set root='hd2,msdos11'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd2,msdos11 --hint-efi=hd2,msdos11 --hint-baremetal=ahci2,msdos11  3aabc8ae-d129-419c-bb5a-1292d98ec0f6
		else
		  search --no-floppy --fs-uuid --set=root 3aabc8ae-d129-419c-bb5a-1292d98ec0f6
		fi
		linux /boot/vmlinuz-4.15.0-42-generic root=UUID=3aabc8ae-d129-419c-bb5a-1292d98ec0f6 ro quiet splash $vt_handoff
		initrd /boot/initrd.img-4.15.0-42-generic
	}
	menuentry 'U18-04-c11  Ubuntu, with Linux 4.15.0-42-generic (recovery mode) (sur /dev/sdc11)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-4.15.0-42-generic-root=UUID=3aabc8ae-d129-419c-bb5a-1292d98ec0f6 ro recovery nomodeset-3aabc8ae-d129-419c-bb5a-1292d98ec0f6' {
		insmod part_msdos
		insmod ext2
		set root='hd2,msdos11'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd2,msdos11 --hint-efi=hd2,msdos11 --hint-baremetal=ahci2,msdos11  3aabc8ae-d129-419c-bb5a-1292d98ec0f6
		else
		  search --no-floppy --fs-uuid --set=root 3aabc8ae-d129-419c-bb5a-1292d98ec0f6
		fi
		linux /boot/vmlinuz-4.15.0-42-generic root=UUID=3aabc8ae-d129-419c-bb5a-1292d98ec0f6 ro recovery nomodeset
		initrd /boot/initrd.img-4.15.0-42-generic
	}
}

menuentry 'gnome : Ubuntu 17.04 (17.04) (sur /dev/sdc9)' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-simple-3e774a44-b817-4b60-964c-46d4808d17ef' {
	insmod part_msdos
	insmod ext2
	set root='hd2,msdos9'
	if [ x$feature_platform_search_hint = xy ]; then
	  search --no-floppy --fs-uuid --set=root --hint-bios=hd2,msdos9 --hint-efi=hd2,msdos9 --hint-baremetal=ahci2,msdos9  3e774a44-b817-4b60-964c-46d4808d17ef
	else
	  search --no-floppy --fs-uuid --set=root 3e774a44-b817-4b60-964c-46d4808d17ef
	fi
	linux /vmlinuz root=/dev/sdc9
	initrd /initrd.img
}
submenu 'gnome : Options avancées pour Ubuntu 17.04 (17.04) (sur /dev/sdc9)' $menuentry_id_option 'osprober-gnulinux-advanced-3e774a44-b817-4b60-964c-46d4808d17ef' {
	menuentry 'gnome : Ubuntu 17.04 (17.04) (sur /dev/sdc9)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/vmlinuz--3e774a44-b817-4b60-964c-46d4808d17ef' {
		insmod part_msdos
		insmod ext2
		set root='hd2,msdos9'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd2,msdos9 --hint-efi=hd2,msdos9 --hint-baremetal=ahci2,msdos9  3e774a44-b817-4b60-964c-46d4808d17ef
		else
		  search --no-floppy --fs-uuid --set=root 3e774a44-b817-4b60-964c-46d4808d17ef
		fi
		linux /vmlinuz root=/dev/sdc9
		initrd /initrd.img
	}
	menuentry 'gnome : Ubuntu 17.04 (17.04) (sur /dev/sdc9)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/vmlinuz--3e774a44-b817-4b60-964c-46d4808d17ef' {
		insmod part_msdos
		insmod ext2
		set root='hd2,msdos9'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd2,msdos9 --hint-efi=hd2,msdos9 --hint-baremetal=ahci2,msdos9  3e774a44-b817-4b60-964c-46d4808d17ef
		else
		  search --no-floppy --fs-uuid --set=root 3e774a44-b817-4b60-964c-46d4808d17ef
		fi
		linux /vmlinuz root=/dev/sdc9
		initrd /initrd.img
	}
	menuentry 'gnome : Ubuntu 17.04 (17.04) (sur /dev/sdc9)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/vmlinuz--3e774a44-b817-4b60-964c-46d4808d17ef' {
		insmod part_msdos
		insmod ext2
		set root='hd2,msdos9'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd2,msdos9 --hint-efi=hd2,msdos9 --hint-baremetal=ahci2,msdos9  3e774a44-b817-4b60-964c-46d4808d17ef
		else
		  search --no-floppy --fs-uuid --set=root 3e774a44-b817-4b60-964c-46d4808d17ef
		fi
		linux /vmlinuz root=/dev/sdc9
		initrd /initrd.img.old
	}
	menuentry 'gnome : Ubuntu 17.04 (17.04) (sur /dev/sdc9)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-4.10.0-38-generic--3e774a44-b817-4b60-964c-46d4808d17ef' {
		insmod part_msdos
		insmod ext2
		set root='hd2,msdos9'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd2,msdos9 --hint-efi=hd2,msdos9 --hint-baremetal=ahci2,msdos9  3e774a44-b817-4b60-964c-46d4808d17ef
		else
		  search --no-floppy --fs-uuid --set=root 3e774a44-b817-4b60-964c-46d4808d17ef
		fi
		linux /boot/vmlinuz-4.10.0-38-generic root=/dev/sdc9
		initrd /boot/initrd.img-4.10.0-38-generic
	}
	menuentry 'gnome : Ubuntu 17.04 (17.04) (sur /dev/sdc9)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-4.10.0-19-generic--3e774a44-b817-4b60-964c-46d4808d17ef' {
		insmod part_msdos
		insmod ext2
		set root='hd2,msdos9'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd2,msdos9 --hint-efi=hd2,msdos9 --hint-baremetal=ahci2,msdos9  3e774a44-b817-4b60-964c-46d4808d17ef
		else
		  search --no-floppy --fs-uuid --set=root 3e774a44-b817-4b60-964c-46d4808d17ef
		fi
		linux /boot/vmlinuz-4.10.0-19-generic root=/dev/sdc9
		initrd /boot/initrd.img-4.10.0-19-generic
	}
	menuentry 'gnome : Ubuntu 17.04 (17.04) (sur /dev/sdc9)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-4.10.0-24-generic--3e774a44-b817-4b60-964c-46d4808d17ef' {
		insmod part_msdos
		insmod ext2
		set root='hd2,msdos9'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd2,msdos9 --hint-efi=hd2,msdos9 --hint-baremetal=ahci2,msdos9  3e774a44-b817-4b60-964c-46d4808d17ef
		else
		  search --no-floppy --fs-uuid --set=root 3e774a44-b817-4b60-964c-46d4808d17ef
		fi
		linux /boot/vmlinuz-4.10.0-24-generic root=/dev/sdc9
		initrd /boot/initrd.img-4.10.0-24-generic
	}
	menuentry 'gnome : Ubuntu 17.04 (17.04) (sur /dev/sdc9)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/vmlinuz--3e774a44-b817-4b60-964c-46d4808d17ef' {
		insmod part_msdos
		insmod ext2
		set root='hd2,msdos9'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd2,msdos9 --hint-efi=hd2,msdos9 --hint-baremetal=ahci2,msdos9  3e774a44-b817-4b60-964c-46d4808d17ef
		else
		  search --no-floppy --fs-uuid --set=root 3e774a44-b817-4b60-964c-46d4808d17ef
		fi
		linux /vmlinuz root=/dev/sdc9
		initrd /initrd.img
	}
	menuentry 'gnome : Ubuntu 17.04 (17.04) (sur /dev/sdc9)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/vmlinuz--3e774a44-b817-4b60-964c-46d4808d17ef' {
		insmod part_msdos
		insmod ext2
		set root='hd2,msdos9'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd2,msdos9 --hint-efi=hd2,msdos9 --hint-baremetal=ahci2,msdos9  3e774a44-b817-4b60-964c-46d4808d17ef
		else
		  search --no-floppy --fs-uuid --set=root 3e774a44-b817-4b60-964c-46d4808d17ef
		fi
		linux /vmlinuz root=/dev/sdc9
		initrd /initrd.img
	}
	menuentry 'gnome : Ubuntu 17.04 (17.04) (sur /dev/sdc9)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/vmlinuz--3e774a44-b817-4b60-964c-46d4808d17ef' {
		insmod part_msdos
		insmod ext2
		set root='hd2,msdos9'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd2,msdos9 --hint-efi=hd2,msdos9 --hint-baremetal=ahci2,msdos9  3e774a44-b817-4b60-964c-46d4808d17ef
		else
		  search --no-floppy --fs-uuid --set=root 3e774a44-b817-4b60-964c-46d4808d17ef
		fi
		linux /vmlinuz root=/dev/sdc9
		initrd /initrd.img.old
	}
	menuentry 'gnome : Ubuntu 17.04 (17.04) (sur /dev/sdc9)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/vmlinuz.old--3e774a44-b817-4b60-964c-46d4808d17ef' {
		insmod part_msdos
		insmod ext2
		set root='hd2,msdos9'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd2,msdos9 --hint-efi=hd2,msdos9 --hint-baremetal=ahci2,msdos9  3e774a44-b817-4b60-964c-46d4808d17ef
		else
		  search --no-floppy --fs-uuid --set=root 3e774a44-b817-4b60-964c-46d4808d17ef
		fi
		linux /vmlinuz.old root=/dev/sdc9
		initrd /initrd.img.old
	}
}

menuentry '18-4-EFI : Ubuntu 18.04.4 LTS (18.04) (sur /dev/sde2)' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-simple-b1e72033-59f5-47fa-84fa-5242a2580ed0' {
	insmod part_gpt
	insmod ext2
	set root='hd4,gpt2'
	if [ x$feature_platform_search_hint = xy ]; then
	  search --no-floppy --fs-uuid --set=root --hint-bios=hd4,gpt2 --hint-efi=hd4,gpt2 --hint-baremetal=ahci4,gpt2  b1e72033-59f5-47fa-84fa-5242a2580ed0
	else
	  search --no-floppy --fs-uuid --set=root b1e72033-59f5-47fa-84fa-5242a2580ed0
	fi
	linux /boot/vmlinuz-4.15.0-96-generic root=UUID=b1e72033-59f5-47fa-84fa-5242a2580ed0 ro quiet splash $vt_handoff
	initrd /boot/initrd.img-4.15.0-96-generic
}
submenu '18-4-EFI : Options avancées pour Ubuntu 18.04.4 LTS (18.04) (sur /dev/sde2)' $menuentry_id_option 'osprober-gnulinux-advanced-b1e72033-59f5-47fa-84fa-5242a2580ed0' {
	menuentry '18-4-EFI  Ubuntu (sur /dev/sde2)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-4.15.0-96-generic--b1e72033-59f5-47fa-84fa-5242a2580ed0' {
		insmod part_gpt
		insmod ext2
		set root='hd4,gpt2'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd4,gpt2 --hint-efi=hd4,gpt2 --hint-baremetal=ahci4,gpt2  b1e72033-59f5-47fa-84fa-5242a2580ed0
		else
		  search --no-floppy --fs-uuid --set=root b1e72033-59f5-47fa-84fa-5242a2580ed0
		fi
		linux /boot/vmlinuz-4.15.0-96-generic root=UUID=b1e72033-59f5-47fa-84fa-5242a2580ed0 ro quiet splash $vt_handoff
		initrd /boot/initrd.img-4.15.0-96-generic
	}
	menuentry '18-4-EFI  Ubuntu, avec Linux 4.15.0-96-generic (sur /dev/sde2)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-4.15.0-96-generic--b1e72033-59f5-47fa-84fa-5242a2580ed0' {
		insmod part_gpt
		insmod ext2
		set root='hd4,gpt2'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd4,gpt2 --hint-efi=hd4,gpt2 --hint-baremetal=ahci4,gpt2  b1e72033-59f5-47fa-84fa-5242a2580ed0
		else
		  search --no-floppy --fs-uuid --set=root b1e72033-59f5-47fa-84fa-5242a2580ed0
		fi
		linux /boot/vmlinuz-4.15.0-96-generic root=UUID=b1e72033-59f5-47fa-84fa-5242a2580ed0 ro quiet splash $vt_handoff
		initrd /boot/initrd.img-4.15.0-96-generic
	}
	menuentry '18-4-EFI  Ubuntu, with Linux 4.15.0-96-generic (recovery mode) (sur /dev/sde2)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-4.15.0-96-generic-root=UUID=b1e72033-59f5-47fa-84fa-5242a2580ed0 ro recovery nomodeset-b1e72033-59f5-47fa-84fa-5242a2580ed0' {
		insmod part_gpt
		insmod ext2
		set root='hd4,gpt2'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd4,gpt2 --hint-efi=hd4,gpt2 --hint-baremetal=ahci4,gpt2  b1e72033-59f5-47fa-84fa-5242a2580ed0
		else
		  search --no-floppy --fs-uuid --set=root b1e72033-59f5-47fa-84fa-5242a2580ed0
		fi
		linux /boot/vmlinuz-4.15.0-96-generic root=UUID=b1e72033-59f5-47fa-84fa-5242a2580ed0 ro recovery nomodeset
		initrd /boot/initrd.img-4.15.0-96-generic
	}
	menuentry '18-4-EFI  Ubuntu, avec Linux 4.15.0-29-generic (sur /dev/sde2)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-4.15.0-29-generic--b1e72033-59f5-47fa-84fa-5242a2580ed0' {
		insmod part_gpt
		insmod ext2
		set root='hd4,gpt2'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd4,gpt2 --hint-efi=hd4,gpt2 --hint-baremetal=ahci4,gpt2  b1e72033-59f5-47fa-84fa-5242a2580ed0
		else
		  search --no-floppy --fs-uuid --set=root b1e72033-59f5-47fa-84fa-5242a2580ed0
		fi
		linux /boot/vmlinuz-4.15.0-29-generic root=UUID=b1e72033-59f5-47fa-84fa-5242a2580ed0 ro quiet splash $vt_handoff
		initrd /boot/initrd.img-4.15.0-29-generic
	}
	menuentry '18-4-EFI  Ubuntu, with Linux 4.15.0-29-generic (recovery mode) (sur /dev/sde2)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-4.15.0-29-generic-root=UUID=b1e72033-59f5-47fa-84fa-5242a2580ed0 ro recovery nomodeset-b1e72033-59f5-47fa-84fa-5242a2580ed0' {
		insmod part_gpt
		insmod ext2
		set root='hd4,gpt2'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd4,gpt2 --hint-efi=hd4,gpt2 --hint-baremetal=ahci4,gpt2  b1e72033-59f5-47fa-84fa-5242a2580ed0
		else
		  search --no-floppy --fs-uuid --set=root b1e72033-59f5-47fa-84fa-5242a2580ed0
		fi
		linux /boot/vmlinuz-4.15.0-29-generic root=UUID=b1e72033-59f5-47fa-84fa-5242a2580ed0 ro recovery nomodeset
		initrd /boot/initrd.img-4.15.0-29-generic
	}
}

set timeout_style=menu
if [ "${timeout}" = 0 ]; then
  set timeout=10
fi
### END /etc/grub.d/30_os-prober ###

### BEGIN /etc/grub.d/30_uefi-firmware ###
### END /etc/grub.d/30_uefi-firmware ###

### BEGIN /etc/grub.d/40_custom ###
# This file provides an easy way to add custom menu entries.  Simply type the
# menu entries you want to add after this comment.  Be careful not to change
# the 'exec tail' line above.
menuentry 'U16.04-P10-64b Ubuntu 16.04.6 LTS (16.04) (sur /dev/sda10)' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-simple-21a7fb42-ce7c-47c3-a77c-e55dc3e12590' {
	insmod part_msdos
	insmod ext2
	set root='hd0,msdos10'
	if [ x$feature_platform_search_hint = xy ]; then
	  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos10 --hint-efi=hd0,msdos10 --hint-baremetal=ahci0,msdos10  21a7fb42-ce7c-47c3-a77c-e55dc3e12590
	else
	  search --no-floppy --fs-uuid --set=root 21a7fb42-ce7c-47c3-a77c-e55dc3e12590
	fi
	linux /vmlinuz root=/dev/sda10
	initrd /initrd.img
}
menuentry 'M16.04-a12-64b Ubuntu 16.04.5 LTS (16.04) (sur /dev/sda12)' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-simple-cb9be900-e560-4c86-aa5c-8842b40fee00' {
	insmod part_msdos
	insmod ext2
	set root='hd0,msdos12'
	if [ x$feature_platform_search_hint = xy ]; then
	  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos12 --hint-efi=hd0,msdos12 --hint-baremetal=ahci0,msdos12  cb9be900-e560-4c86-aa5c-8842b40fee00
	else
	  search --no-floppy --fs-uuid --set=root cb9be900-e560-4c86-aa5c-8842b40fee00
	fi
	linux /vmlinuz root=/dev/sda12
	initrd /initrd.img
}
menuentry 'U16.04-a7-32b Ubuntu 16.04.5 LTS (16.04) (sur /dev/sda7)' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-simple-c63335c7-be09-4782-978c-dff6cce2be94' {
	insmod part_msdos
	insmod ext2
	set root='hd0,msdos7'
	if [ x$feature_platform_search_hint = xy ]; then
	  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos7 --hint-efi=hd0,msdos7 --hint-baremetal=ahci0,msdos7  c63335c7-be09-4782-978c-dff6cce2be94
	else
	  search --no-floppy --fs-uuid --set=root c63335c7-be09-4782-978c-dff6cce2be94
	fi
	linux /vmlinuz root=/dev/sda7
	initrd /initrd.img
}
menuentry 'U14.04-a5-64b Ubuntu 14.04.5 LTS (14.04) (sur /dev/sda5)' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-simple-ed6801f3-ddfe-46ff-b3e9-83219cd58ca9' {
	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  ed6801f3-ddfe-46ff-b3e9-83219cd58ca9
	else
	  search --no-floppy --fs-uuid --set=root ed6801f3-ddfe-46ff-b3e9-83219cd58ca9
	fi
	linux /vmlinuz root=/dev/sda5
	initrd /initrd.img
}
menuentry 'X16.04-a9-32b Ubuntu 16.04.6 LTS (16.04) (sur /dev/sda9)' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-simple-d4b0b586-0b8e-457e-b492-78c272d1954f' {
	insmod part_msdos
	insmod ext2
	set root='hd0,msdos9'
	if [ x$feature_platform_search_hint = xy ]; then
	  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos9 --hint-efi=hd0,msdos9 --hint-baremetal=ahci0,msdos9  d4b0b586-0b8e-457e-b492-78c272d1954f
	else
	  search --no-floppy --fs-uuid --set=root d4b0b586-0b8e-457e-b492-78c272d1954f
	fi
	linux /vmlinuz root=/dev/sda9
	initrd /initrd.img
}
menuentry 'gnome Ubuntu 17.04 (17.04) (sur /dev/sdc9)' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-simple-3e774a44-b817-4b60-964c-46d4808d17ef' {
	insmod part_msdos
	insmod ext2
	set root='hd2,msdos9'
	if [ x$feature_platform_search_hint = xy ]; then
	  search --no-floppy --fs-uuid --set=root --hint-bios=hd2,msdos9 --hint-efi=hd2,msdos9 --hint-baremetal=ahci2,msdos9  3e774a44-b817-4b60-964c-46d4808d17ef
	else
	  search --no-floppy --fs-uuid --set=root 3e774a44-b817-4b60-964c-46d4808d17ef
	fi
	linux /vmlinuz root=/dev/sdc9
	initrd /initrd.img
}
menuentry "lancer mes isos" {
	search --set=root --file /conf/grubiso.cfg
	search -l --set res ISOS           # ajoutée :  res est initialisé à hdx,msdosy qui est ISOS
	export res                         # export pour grubisos
	#configfile /conf/grubiso.cfg      # remplacée par
	configfile ($res)/conf/grubiso.cfg
}
### END /etc/grub.d/40_custom ###

### BEGIN /etc/grub.d/41_custom ###
if [ -f  ${config_directory}/custom.cfg ]; then
  source ${config_directory}/custom.cfg
elif [ -z "${config_directory}" -a -f  $prefix/custom.cfg ]; then
  source $prefix/custom.cfg;
fi
### END /etc/grub.d/41_custom ###
--------------------------------------------------------------------------------

=============================== sdd1/etc/fstab: ================================

--------------------------------------------------------------------------------
# /etc/fstab: static file system information.
#
# Use 'blkid' to print the universally unique identifier for a
# device; this may be used with UUID= as a more robust way to name devices
# that works even if disks are added and removed. See fstab(5).
#
# <file system>                          <mount point> <type>  <options>          <dump>  <pass>
# / was on /dev/sda1 during installation
# attention avec les 4 disques, / sur sdd1
UUID=c14de089-0371-46f3-829f-b3d2e715d031 /             ext4    errors=remount-ro 0       1

# /home was on /dev/sda2 during installation
# changer sur home_U18  sur sda13 (pas sur le même disque)
#UUID=5081bcb8-8e05-4c14-bf04-478ff7bded31 /home         ext4    defaults          0       2
LABEL=home_SDD                            /home         ext4    defaults          0       2

# /var was on /dev/sda5 during installation
# changer sur /var_U18 sur sda14
#UUID=20d009b8-7e01-4436-8292-95c98fdd333e /var          ext4    defaults          0       2
LABEL=var_SDD                             /var          ext4    defaults          0       2

/swapfile                                 none          swap    sw                0       0
# Data sur sdc5
LABEL=Data                                /media/Data   ext4    defaults,nofail          0       2

#SH sur sda11
LABEL=SH                                  /media/SH     ext4    defaults,nofail          0       2

LABEL=ISOS                                /media/ISOS   ext4    defaults,nofail          0       2
--------------------------------------------------------------------------------

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

           GiB - GB             File                                 Fragment(s)

   0.132186413 = 0.141934080    boot/grub/grub.cfg                             1
  20.275474072 = 21.770624512   boot/grub/i386-pc/core.img                     1
   5.324233532 = 5.716852224    boot/vmlinuz-4.15.0-91-generic                 2
   8.625010967 = 9.261035008    boot/vmlinuz-4.15.0-96-generic                 1
   8.625010967 = 9.261035008    vmlinuz                                        1
   5.324233532 = 5.716852224    vmlinuz.old                                    2
   8.302340984 = 8.914570752    boot/initrd.img-4.15.0-91-generic              3
   8.880465984 = 9.535327744    boot/initrd.img-4.15.0-96-generic              2
   8.880465984 = 9.535327744    initrd.img                                     2
   8.302340984 = 8.914570752    initrd.img.old                                 3

========================== sde1/EFI/ubuntu/grub.cfg: ===========================

--------------------------------------------------------------------------------
search.fs_uuid b1e72033-59f5-47fa-84fa-5242a2580ed0 root hd0,gpt2 
set prefix=($root)'/boot/grub'
configfile $prefix/grub.cfg
--------------------------------------------------------------------------------

========================== sde1/efi/ubuntu/grub.cfg: ===========================

--------------------------------------------------------------------------------
search.fs_uuid b1e72033-59f5-47fa-84fa-5242a2580ed0 root hd0,gpt2 
set prefix=($root)'/boot/grub'
configfile $prefix/grub.cfg
--------------------------------------------------------------------------------

=========================== sde2/boot/grub/grub.cfg: ===========================

--------------------------------------------------------------------------------
#### 2020:04:12-15:11:08 : /boot/grub/grub.cfg modifié par /media/SH/grub/V46/modif_grub_V46_bis ####
# DO NOT EDIT THIS FILE
#
# It is automatically generated by grub-mkconfig using templates
# from /etc/grub.d and settings from /etc/default/grub
#

### BEGIN /etc/grub.d/00_header ###
if [ -s $prefix/grubenv ]; then
  set have_grubenv=true
  load_env
fi
if [ "${next_entry}" ] ; then
   set default="${next_entry}"
   set next_entry=
   save_env next_entry
   set boot_once=true
else
   set default="0"
fi

if [ x"${feature_menuentry_id}" = xy ]; then
  menuentry_id_option="--id"
else
  menuentry_id_option=""
fi

export menuentry_id_option

if [ "${prev_saved_entry}" ]; then
  set saved_entry="${prev_saved_entry}"
  save_env saved_entry
  set prev_saved_entry=
  save_env prev_saved_entry
  set boot_once=true
fi

function savedefault {
  if [ -z "${boot_once}" ]; then
    saved_entry="${chosen}"
    save_env saved_entry
  fi
}
function recordfail {
  set recordfail=1
  if [ -n "${have_grubenv}" ]; then if [ -z "${boot_once}" ]; then save_env recordfail; fi; fi
}
function load_video {
  if [ x$feature_all_video_module = xy ]; then
    insmod all_video
  else
    insmod efi_gop
    insmod efi_uga
    insmod ieee1275_fb
    insmod vbe
    insmod vga
    insmod video_bochs
    insmod video_cirrus
  fi
}

if [ x$feature_default_font_path = xy ] ; then
   font=unicode
else
insmod part_gpt
insmod ext2
set root='hd4,gpt2'
if [ x$feature_platform_search_hint = xy ]; then
  search --no-floppy --fs-uuid --set=root --hint-bios=hd4,gpt2 --hint-efi=hd4,gpt2 --hint-baremetal=ahci4,gpt2  b1e72033-59f5-47fa-84fa-5242a2580ed0
else
  search --no-floppy --fs-uuid --set=root b1e72033-59f5-47fa-84fa-5242a2580ed0
fi
    font="/usr/share/grub/unicode.pf2"
fi

if loadfont $font ; then
  set gfxmode=auto
  load_video
  insmod gfxterm
  set locale_dir=$prefix/locale
  set lang=fr_FR
  insmod gettext
fi
terminal_output gfxterm
if [ "${recordfail}" = 1 ] ; then
  set timeout=30
else
  if [ x$feature_timeout_style = xy ] ; then
    set timeout_style=hidden
    set timeout=10
  # Fallback hidden-timeout code in case the timeout_style feature is
  # unavailable.
  elif sleep --interruptible 10 ; then
    set timeout=0
  fi
fi
### END /etc/grub.d/00_header ###

### BEGIN /etc/grub.d/05_debian_theme ###
set menu_color_normal=white/black
set menu_color_highlight=black/light-gray
if background_color 44,0,30,0; then
  clear
fi
### END /etc/grub.d/05_debian_theme ###

### BEGIN /etc/grub.d/10_linux ###
function gfxmode {
	set gfxpayload="${1}"
	if [ "${1}" = "keep" ]; then
		set vt_handoff=vt.handoff=1
	else
		set vt_handoff=
	fi
}
if [ "${recordfail}" != 1 ]; then
  if [ -e ${prefix}/gfxblacklist.txt ]; then
    if hwmatch ${prefix}/gfxblacklist.txt 3; then
      if [ ${match} = 0 ]; then
        set linux_gfx_mode=keep
      else
        set linux_gfx_mode=text
      fi
    else
      set linux_gfx_mode=text
    fi
  else
    set linux_gfx_mode=keep
  fi
else
  set linux_gfx_mode=text
fi
export linux_gfx_mode
menuentry '18-4-EFI : Ubuntu' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-simple-b1e72033-59f5-47fa-84fa-5242a2580ed0' {
	recordfail
	load_video
	gfxmode $linux_gfx_mode
	insmod gzio
	if [ x$grub_platform = xxen ]; then insmod xzio; insmod lzopio; fi
	insmod part_gpt
	insmod ext2
	set root='hd4,gpt2'
	if [ x$feature_platform_search_hint = xy ]; then
	  search --no-floppy --fs-uuid --set=root --hint-bios=hd4,gpt2 --hint-efi=hd4,gpt2 --hint-baremetal=ahci4,gpt2  b1e72033-59f5-47fa-84fa-5242a2580ed0
	else
	  search --no-floppy --fs-uuid --set=root b1e72033-59f5-47fa-84fa-5242a2580ed0
	fi
        linux	/boot/vmlinuz-4.15.0-96-generic root=UUID=b1e72033-59f5-47fa-84fa-5242a2580ed0 ro  quiet splash $vt_handoff
	initrd	/boot/initrd.img-4.15.0-96-generic
}
submenu '18-4-EFI : Options avancées pour Ubuntu' $menuentry_id_option 'gnulinux-advanced-b1e72033-59f5-47fa-84fa-5242a2580ed0' {
	menuentry '18-4-EFI : Ubuntu, avec Linux 4.15.0-96-generic' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-4.15.0-96-generic-advanced-b1e72033-59f5-47fa-84fa-5242a2580ed0' {
		recordfail
		load_video
		gfxmode $linux_gfx_mode
		insmod gzio
		if [ x$grub_platform = xxen ]; then insmod xzio; insmod lzopio; fi
		insmod part_gpt
		insmod ext2
		set root='hd4,gpt2'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd4,gpt2 --hint-efi=hd4,gpt2 --hint-baremetal=ahci4,gpt2  b1e72033-59f5-47fa-84fa-5242a2580ed0
		else
		  search --no-floppy --fs-uuid --set=root b1e72033-59f5-47fa-84fa-5242a2580ed0
		fi
		echo	'Chargement de Linux 4.15.0-96-generic…'
	        linux	/boot/vmlinuz-4.15.0-96-generic root=UUID=b1e72033-59f5-47fa-84fa-5242a2580ed0 ro  quiet splash $vt_handoff
		echo	'Chargement du disque mémoire initial…'
		initrd	/boot/initrd.img-4.15.0-96-generic
	}
	menuentry '18-4-EFI : Ubuntu, with Linux 4.15.0-96-generic (recovery mode)' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-4.15.0-96-generic-recovery-b1e72033-59f5-47fa-84fa-5242a2580ed0' {
		recordfail
		load_video
		insmod gzio
		if [ x$grub_platform = xxen ]; then insmod xzio; insmod lzopio; fi
		insmod part_gpt
		insmod ext2
		set root='hd4,gpt2'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd4,gpt2 --hint-efi=hd4,gpt2 --hint-baremetal=ahci4,gpt2  b1e72033-59f5-47fa-84fa-5242a2580ed0
		else
		  search --no-floppy --fs-uuid --set=root b1e72033-59f5-47fa-84fa-5242a2580ed0
		fi
		echo	'Chargement de Linux 4.15.0-96-generic…'
	        linux	/boot/vmlinuz-4.15.0-96-generic root=UUID=b1e72033-59f5-47fa-84fa-5242a2580ed0 ro recovery nomodeset 
		echo	'Chargement du disque mémoire initial…'
		initrd	/boot/initrd.img-4.15.0-96-generic
	}
	menuentry '18-4-EFI : Ubuntu, avec Linux 4.15.0-29-generic' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-4.15.0-29-generic-advanced-b1e72033-59f5-47fa-84fa-5242a2580ed0' {
		recordfail
		load_video
		gfxmode $linux_gfx_mode
		insmod gzio
		if [ x$grub_platform = xxen ]; then insmod xzio; insmod lzopio; fi
		insmod part_gpt
		insmod ext2
		set root='hd4,gpt2'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd4,gpt2 --hint-efi=hd4,gpt2 --hint-baremetal=ahci4,gpt2  b1e72033-59f5-47fa-84fa-5242a2580ed0
		else
		  search --no-floppy --fs-uuid --set=root b1e72033-59f5-47fa-84fa-5242a2580ed0
		fi
		echo	'Chargement de Linux 4.15.0-29-generic…'
	        linux	/boot/vmlinuz-4.15.0-29-generic root=UUID=b1e72033-59f5-47fa-84fa-5242a2580ed0 ro  quiet splash $vt_handoff
		echo	'Chargement du disque mémoire initial…'
		initrd	/boot/initrd.img-4.15.0-29-generic
	}
	menuentry '18-4-EFI : Ubuntu, with Linux 4.15.0-29-generic (recovery mode)' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-4.15.0-29-generic-recovery-b1e72033-59f5-47fa-84fa-5242a2580ed0' {
		recordfail
		load_video
		insmod gzio
		if [ x$grub_platform = xxen ]; then insmod xzio; insmod lzopio; fi
		insmod part_gpt
		insmod ext2
		set root='hd4,gpt2'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd4,gpt2 --hint-efi=hd4,gpt2 --hint-baremetal=ahci4,gpt2  b1e72033-59f5-47fa-84fa-5242a2580ed0
		else
		  search --no-floppy --fs-uuid --set=root b1e72033-59f5-47fa-84fa-5242a2580ed0
		fi
		echo	'Chargement de Linux 4.15.0-29-generic…'
	        linux	/boot/vmlinuz-4.15.0-29-generic root=UUID=b1e72033-59f5-47fa-84fa-5242a2580ed0 ro recovery nomodeset 
		echo	'Chargement du disque mémoire initial…'
		initrd	/boot/initrd.img-4.15.0-29-generic
	}
}

### END /etc/grub.d/10_linux ###

### BEGIN /etc/grub.d/20_linux_xen ###

### END /etc/grub.d/20_linux_xen ###

### BEGIN /etc/grub.d/20_memtest86+ ###
### END /etc/grub.d/20_memtest86+ ###

### BEGIN /etc/grub.d/30_os-prober ###
menuentry 'U18.04-d1 : Ubuntu 18.04.4 LTS (18.04) (sur /dev/sdd1)' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-simple-c14de089-0371-46f3-829f-b3d2e715d031' {
	insmod part_msdos
	insmod ext2
	set root='hd3,msdos1'
	if [ x$feature_platform_search_hint = xy ]; then
	  search --no-floppy --fs-uuid --set=root --hint-bios=hd3,msdos1 --hint-efi=hd3,msdos1 --hint-baremetal=ahci3,msdos1  c14de089-0371-46f3-829f-b3d2e715d031
	else
	  search --no-floppy --fs-uuid --set=root c14de089-0371-46f3-829f-b3d2e715d031
	fi
	linux /boot/vmlinuz-4.15.0-96-generic root=UUID=c14de089-0371-46f3-829f-b3d2e715d031 ro quiet splash $vt_handoff
	initrd /boot/initrd.img-4.15.0-96-generic
}
submenu 'U18.04-d1 : Options avancées pour Ubuntu 18.04.4 LTS (18.04) (sur /dev/sdd1)' $menuentry_id_option 'osprober-gnulinux-advanced-c14de089-0371-46f3-829f-b3d2e715d031' {
	menuentry 'U18.04-d1  Ubuntu (sur /dev/sdd1)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-4.15.0-96-generic--c14de089-0371-46f3-829f-b3d2e715d031' {
		insmod part_msdos
		insmod ext2
		set root='hd3,msdos1'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd3,msdos1 --hint-efi=hd3,msdos1 --hint-baremetal=ahci3,msdos1  c14de089-0371-46f3-829f-b3d2e715d031
		else
		  search --no-floppy --fs-uuid --set=root c14de089-0371-46f3-829f-b3d2e715d031
		fi
		linux /boot/vmlinuz-4.15.0-96-generic root=UUID=c14de089-0371-46f3-829f-b3d2e715d031 ro quiet splash $vt_handoff
		initrd /boot/initrd.img-4.15.0-96-generic
	}
	menuentry 'U18.04-d1  Ubuntu, avec Linux 4.15.0-96-generic (sur /dev/sdd1)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-4.15.0-96-generic--c14de089-0371-46f3-829f-b3d2e715d031' {
		insmod part_msdos
		insmod ext2
		set root='hd3,msdos1'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd3,msdos1 --hint-efi=hd3,msdos1 --hint-baremetal=ahci3,msdos1  c14de089-0371-46f3-829f-b3d2e715d031
		else
		  search --no-floppy --fs-uuid --set=root c14de089-0371-46f3-829f-b3d2e715d031
		fi
		linux /boot/vmlinuz-4.15.0-96-generic root=UUID=c14de089-0371-46f3-829f-b3d2e715d031 ro quiet splash $vt_handoff
		initrd /boot/initrd.img-4.15.0-96-generic
	}
	menuentry 'U18.04-d1  Ubuntu, with Linux 4.15.0-96-generic (recovery mode) (sur /dev/sdd1)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-4.15.0-96-generic-root=UUID=c14de089-0371-46f3-829f-b3d2e715d031 ro recovery nomodeset-c14de089-0371-46f3-829f-b3d2e715d031' {
		insmod part_msdos
		insmod ext2
		set root='hd3,msdos1'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd3,msdos1 --hint-efi=hd3,msdos1 --hint-baremetal=ahci3,msdos1  c14de089-0371-46f3-829f-b3d2e715d031
		else
		  search --no-floppy --fs-uuid --set=root c14de089-0371-46f3-829f-b3d2e715d031
		fi
		linux /boot/vmlinuz-4.15.0-96-generic root=UUID=c14de089-0371-46f3-829f-b3d2e715d031 ro recovery nomodeset
		initrd /boot/initrd.img-4.15.0-96-generic
	}
	menuentry 'U18.04-d1  Ubuntu, avec Linux 4.15.0-91-generic (sur /dev/sdd1)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-4.15.0-91-generic--c14de089-0371-46f3-829f-b3d2e715d031' {
		insmod part_msdos
		insmod ext2
		set root='hd3,msdos1'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd3,msdos1 --hint-efi=hd3,msdos1 --hint-baremetal=ahci3,msdos1  c14de089-0371-46f3-829f-b3d2e715d031
		else
		  search --no-floppy --fs-uuid --set=root c14de089-0371-46f3-829f-b3d2e715d031
		fi
		linux /boot/vmlinuz-4.15.0-91-generic root=UUID=c14de089-0371-46f3-829f-b3d2e715d031 ro quiet splash $vt_handoff
		initrd /boot/initrd.img-4.15.0-91-generic
	}
	menuentry 'U18.04-d1  Ubuntu, with Linux 4.15.0-91-generic (recovery mode) (sur /dev/sdd1)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-4.15.0-91-generic-root=UUID=c14de089-0371-46f3-829f-b3d2e715d031 ro recovery nomodeset-c14de089-0371-46f3-829f-b3d2e715d031' {
		insmod part_msdos
		insmod ext2
		set root='hd3,msdos1'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd3,msdos1 --hint-efi=hd3,msdos1 --hint-baremetal=ahci3,msdos1  c14de089-0371-46f3-829f-b3d2e715d031
		else
		  search --no-floppy --fs-uuid --set=root c14de089-0371-46f3-829f-b3d2e715d031
		fi
		linux /boot/vmlinuz-4.15.0-91-generic root=UUID=c14de089-0371-46f3-829f-b3d2e715d031 ro recovery nomodeset
		initrd /boot/initrd.img-4.15.0-91-generic
	}
}

set timeout_style=menu
if [ "${timeout}" = 0 ]; then
  set timeout=10
fi
### END /etc/grub.d/30_os-prober ###

### BEGIN /etc/grub.d/30_uefi-firmware ###
menuentry 'System setup' $menuentry_id_option 'uefi-firmware' {
	fwsetup
}
### END /etc/grub.d/30_uefi-firmware ###

### BEGIN /etc/grub.d/40_custom ###
# This file provides an easy way to add custom menu entries.  Simply type the
# menu entries you want to add after this comment.  Be careful not to change
# the 'exec tail' line above.
### END /etc/grub.d/40_custom ###

### BEGIN /etc/grub.d/41_custom ###
if [ -f  ${config_directory}/custom.cfg ]; then
  source ${config_directory}/custom.cfg
elif [ -z "${config_directory}" -a -f  $prefix/custom.cfg ]; then
  source $prefix/custom.cfg;
fi
### END /etc/grub.d/41_custom ###
--------------------------------------------------------------------------------

=============================== sde2/etc/fstab: ================================

--------------------------------------------------------------------------------
# /etc/fstab: static file system information.
#
# Use 'blkid' to print the universally unique identifier for a
# device; this may be used with UUID= as a more robust way to name devices
# that works even if disks are added and removed. See fstab(5).
#
# <file system> <mount point>   <type>  <options>       <dump>  <pass>
# / was on /dev/sda2 during installation
UUID=b1e72033-59f5-47fa-84fa-5242a2580ed0 /               ext4    errors=remount-ro 0       1
# /boot/efi was on /dev/sda1 during installation
UUID=34D9-A436   /boot/efi       vfat    umask=0077      0      1
/swapfile         none           swap    sw              0      0
#LABEL=h_SDD      /home           ext4    defaults,nofail 0      2
LABEL=Data       /media/Data     ext4    defaults,nofail 0      2
LABEL=SH         /media/SH       ext4    defaults,nofail 0      2
--------------------------------------------------------------------------------

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

           GiB - GB             File                                 Fragment(s)

 314.675670624 = 337.880428544  boot/grub/grub.cfg                             1
  60.641826630 = 65.113665536   boot/vmlinuz-4.15.0-29-generic                 1
 209.797832489 = 225.268707328  boot/vmlinuz-4.15.0-96-generic                 1
  60.641826630 = 65.113665536   vmlinuz                                        1
 212.324279785 = 227.981459456  boot/initrd.img-4.15.0-29-generic              2
 212.443908691 = 228.109910016  boot/initrd.img-4.15.0-96-generic              4
 212.324279785 = 227.981459456  initrd.img                                     2
 212.324279785 = 227.981459456  initrd.img.old                                 2

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

Unknown BootLoader on sdc12

00000000  eb 52 90 4e 54 46 53 20  20 20 20 00 02 08 00 00  |.R.NTFS    .....|
00000010  00 00 00 00 00 f8 00 00  3f 00 ff 00 00 78 fc 5b  |........?....x.[|
00000020  00 00 00 00 80 00 80 00  f8 07 7b 06 00 00 00 00  |..........{.....|
00000030  04 00 00 00 00 00 00 00  7f 02 78 00 00 00 00 00  |..........x.....|
00000040  f6 00 00 00 01 00 00 00  6d 33 ef 5e a8 62 60 27  |........m3.^.b`'|
00000050  00 00 00 00 0e 1f be 71  7c ac 22 c0 74 0b 56 b4  |.......q|.".t.V.|
00000060  0e bb 07 00 cd 10 5e eb  f0 32 e4 cd 16 cd 19 eb  |......^..2......|
00000070  fe 54 68 69 73 20 69 73  20 6e 6f 74 20 61 20 62  |.This is not a b|
00000080  6f 6f 74 61 62 6c 65 20  64 69 73 6b 2e 20 50 6c  |ootable disk. Pl|
00000090  65 61 73 65 20 69 6e 73  65 72 74 20 61 20 62 6f  |ease insert a bo|
000000a0  6f 74 61 62 6c 65 20 66  6c 6f 70 70 79 20 61 6e  |otable floppy an|
000000b0  64 0d 0a 70 72 65 73 73  20 61 6e 79 20 6b 65 79  |d..press any key|
000000c0  20 74 6f 20 74 72 79 20  61 67 61 69 6e 20 2e 2e  | to try again ..|
000000d0  2e 20 0d 0a 00 00 00 00  00 00 00 00 00 00 00 00  |. ..............|
000000e0  00 00 00 00 00 00 00 00  00 00 00 00 00 00 00 00  |................|
*
000001f0  00 00 00 00 00 00 00 00  00 00 00 00 00 00 55 aa  |..............U.|
00000200



ADDITIONAL INFORMATION:

=================== log of boot-info 20200420_0914 ===================
boot-info version : 4ppa82
boot-sav version : 4ppa82
boot-sav-extra version : 4ppa82
glade2script version : 3.2.4~ppa7
Failed to read extended partition table (offset=377511496): Invalid argument
Partition 1 does not start on physical sector boundary.
Partition 2 does not start on physical sector boundary.
Partition 3 does not start on physical sector boundary.
Partition 4 does not start on physical sector boundary.
Partition 1 does not start on physical sector boundary.
Partition 2 does not start on physical sector boundary.
boot-info is executed in installed-session (Ubuntu 18.04.4 LTS, bionic, Ubuntu, x86_64)
CPU op-mode(s):      32-bit, 64-bit
BOOT_IMAGE=/boot/vmlinuz-4.15.0-96-generic root=UUID=c14de089-0371-46f3-829f-b3d2e715d031 ro quiet splash vt.handoff=1

=================== os-prober:
/dev/sdd1:L'OS actuellement utilisé - Ubuntu 18.04.4 LTS CurrentSession:linux
/dev/sda10:Ubuntu 16.04.6 LTS (16.04):Ubuntu:linux
/dev/sda12:Ubuntu 16.04.5 LTS (16.04):Ubuntu1:linux
/dev/sda2:Ubuntu 18.04.4 LTS (18.04):Ubuntu2:linux
/dev/sda5:Ubuntu 14.04.5 LTS (14.04):Ubuntu3:linux
/dev/sda7:Ubuntu 16.04.5 LTS (16.04):Ubuntu4:linux
/dev/sda9:Ubuntu 16.04.6 LTS (16.04):Ubuntu5:linux
/dev/sdb1:Windows NT/2000/XP:Windows:chain
/dev/sdb5:Ubuntu 16.04.6 LTS (16.04):Ubuntu6:linux
/dev/sdc1:Windows NT/2000/XP:Windows1:chain
/dev/sdc11:Ubuntu 18.04.4 LTS (18.04):Ubuntu7:linux
/dev/sdc9:Ubuntu 17.04 (17.04):Ubuntu8:linux
/dev/sde2:Ubuntu 18.04.4 LTS (18.04):Ubuntu9:linux

=================== blkid:
/dev/sda1: LABEL="film" UUID="f028ddf3-d3d9-49fa-a32f-e824801e87f0" TYPE="ext4" PARTUUID="00096b93-01"
/dev/sda2: LABEL="U18.04-a2-64b" UUID="adb3563a-ddba-4f75-8e82-7df3e3d2a4a5" TYPE="ext4" PTTYPE="dos" PARTUUID="00096b93-02"
/dev/sda3: LABEL="les-homes" UUID="7ff4db04-1b96-4084-9e98-2902fba48e97" TYPE="ext4" PARTUUID="00096b93-03"
/dev/sda5: LABEL="U14.04-a5-64b" UUID="ed6801f3-ddfe-46ff-b3e9-83219cd58ca9" TYPE="ext4" PTTYPE="dos" PARTUUID="00096b93-05"
/dev/sda6: UUID="81b7d41d-574c-4d4b-8740-3e6c55400674" TYPE="swap" PARTUUID="00096b93-06"
/dev/sda7: LABEL="U16.04-a7-32b" UUID="c63335c7-be09-4782-978c-dff6cce2be94" TYPE="ext4" PTTYPE="dos" PARTUUID="00096b93-07"
/dev/sda8: UUID="a1516336-9bb7-4c9f-b63e-9cab2d58e8f1" TYPE="swap" PARTUUID="00096b93-08"
/dev/sda9: LABEL="X16.04-a9-32b" UUID="d4b0b586-0b8e-457e-b492-78c272d1954f" TYPE="ext4" PTTYPE="dos" PARTUUID="00096b93-09"
/dev/sda10: LABEL="U16.04-P10-64b" UUID="21a7fb42-ce7c-47c3-a77c-e55dc3e12590" TYPE="ext4" PTTYPE="dos" PARTUUID="00096b93-0a"
/dev/sda11: LABEL="ex-SH" UUID="70d8a884-f9b4-4c50-929a-cb2a02cbbcaf" TYPE="ext4" PARTUUID="00096b93-0b"
/dev/sda12: LABEL="M16.04-a12-64b" UUID="cb9be900-e560-4c86-aa5c-8842b40fee00" TYPE="ext4" PTTYPE="dos" PARTUUID="00096b93-0c"
/dev/sda13: LABEL="h_SDD" UUID="5081bcb8-8e05-4c14-bf04-478ff7bded31" TYPE="ext4" PARTUUID="00096b93-0d"
/dev/sda14: LABEL="v_SDD" UUID="20d009b8-7e01-4436-8292-95c98fdd333e" TYPE="ext4" PARTUUID="00096b93-0e"
/dev/sda15: LABEL="Solf" UUID="fa6b6015-f2a6-4d58-b865-2cd12ea8cc76" TYPE="ext4" PARTUUID="00096b93-0f"
/dev/sda16: LABEL="ISOS" UUID="85dacada-76e8-4e54-913f-c5af400267bf" TYPE="ext4" PARTUUID="00096b93-10"
/dev/sda17: LABEL="filmJPL" UUID="c1ea4721-a093-41b2-ab34-1246fbec4b84" TYPE="ext4" PARTUUID="00096b93-11"
/dev/sdb1: LABEL="XP-b1" UUID="0AF8F8ED4E45274B" TYPE="ntfs" PARTUUID="00098c59-01"
/dev/sdb2: LABEL="s-Z-b2" UUID="672B204C384159C7" TYPE="ntfs" PARTUUID="00098c59-02"
/dev/sdb3: LABEL="s-les-homes" UUID="5cb34c39-a85d-4480-bd87-8f3b4e792b52" TYPE="ext4" PARTUUID="00098c59-03"
/dev/sdb5: LABEL="U16.04-b5-64b" UUID="a17886e2-7520-42fb-bb3c-7b43781cf5bc" TYPE="ext4" PTTYPE="dos" PARTUUID="00098c59-05"
/dev/sdb6: UUID="7cfd4b7b-e842-45ee-b53f-89d738dc041d" TYPE="swap" PARTUUID="00098c59-06"
/dev/sdb7: LABEL="s-Data" UUID="c2dfaed0-2fb6-4068-a321-8c6d9974801c" TYPE="ext4" PARTUUID="00098c59-07"
/dev/sdb8: LABEL="s-Photos" UUID="c40371ca-c326-4f39-bd8f-6b50a43998a5" TYPE="ext4" PARTUUID="00098c59-08"
/dev/sdb9: LABEL="s-SH" UUID="c44ae62d-a5bd-4951-9139-1e1feb08dada" TYPE="ext4" PARTUUID="00098c59-09"
/dev/sdb10: LABEL="s-home_SDD" UUID="08182cdd-01b5-4fc4-a869-6d22bc24adf4" TYPE="ext4" PARTUUID="00098c59-0a"
/dev/sdb11: LABEL="s-var_SDD" UUID="d4c029f2-c83c-4da9-84c6-474799451f2b" TYPE="ext4" PARTUUID="00098c59-0b"
/dev/sdc1: LABEL="XP-c1" UUID="78684472684430E4" TYPE="ntfs" PARTUUID="86fa836a-01"
/dev/sdc5: LABEL="Data" UUID="158730c0-4b38-42f9-853a-ea825678687a" TYPE="ext4" PARTUUID="86fa836a-05"
/dev/sdc6: LABEL="Photos" UUID="3d84d1cf-035e-48bb-8b93-762bad2f41ca" TYPE="ext4" PARTUUID="86fa836a-06"
/dev/sdc7: LABEL="home-c11" UUID="c5a33375-b59d-4451-9b5f-e3c1bdf3d5c0" TYPE="ext4" PARTUUID="86fa836a-07"
/dev/sdc8: LABEL="SH" UUID="207a6f34-be95-446b-85b2-17827a1d2cb9" TYPE="ext4" PARTUUID="86fa836a-08"
/dev/sdc9: LABEL="gnome" UUID="3e774a44-b817-4b60-964c-46d4808d17ef" TYPE="ext4" PTTYPE="dos" PARTUUID="86fa836a-09"
/dev/sdc10: UUID="722d52ca-7c00-4e99-a810-9db3288fac4a" TYPE="swap" PARTUUID="86fa836a-0a"
/dev/sdc11: LABEL="U18-04-c11" UUID="3aabc8ae-d129-419c-bb5a-1292d98ec0f6" TYPE="ext4" PARTUUID="86fa836a-0b"
/dev/sdc12: LABEL="Z-c12" UUID="276062A85EEF336D" TYPE="ntfs" PTTYPE="dos" PARTUUID="86fa836a-0c"
/dev/sdc13: LABEL="home_SDD" UUID="b2be1488-2032-4808-a596-6d53daf67f5f" TYPE="ext4" PARTUUID="86fa836a-0d"
/dev/sdc14: LABEL="var_SDD" UUID="9b15bd6c-74e7-43f0-b0ed-4ef8cf7a67f9" TYPE="ext4" PARTUUID="86fa836a-0e"
/dev/sdd1: LABEL="U18.04-d1" UUID="c14de089-0371-46f3-829f-b3d2e715d031" TYPE="ext4" PARTUUID="0d514067-01"
/dev/sdd2: LABEL="ex-home-d2" UUID="a0820a29-c024-4c15-b895-6f921d8af7eb" TYPE="ext4" PARTUUID="0d514067-02"
/dev/sdd5: LABEL="ex-var-d5" UUID="856fb060-f337-45d1-89ef-5a0b2a25bbdc" TYPE="ext4" PARTUUID="0d514067-05"
/dev/sdd6: UUID="a8bcaa98-eb50-4ef2-b982-15e19331b3fd" TYPE="ext4" PARTUUID="0d514067-06"
/dev/sde1: UUID="34D9-A436" TYPE="vfat" PARTLABEL="EFI System Partition" PARTUUID="2d5df5ee-4aa5-48d3-a007-f6b4a152ba0f"
/dev/sde2: LABEL="18-4-EFI" UUID="b1e72033-59f5-47fa-84fa-5242a2580ed0" TYPE="ext4" PARTUUID="6bff4920-408b-4b88-83ad-9ec7aaa91d10"
/dev/loop0: PTUUID="00098c59" PTTYPE="dos"


5 disks with OS, 13 OS : 11 Linux, 0 MacOS, 2 Windows, 0 unknown type OS.

Partition 1 does not start on physical sector boundary.
Partition 2 does not start on physical sector boundary.
Partition 3 does not start on physical sector boundary.
Partition 4 does not start on physical sector boundary.
Partition 1 does not start on physical sector boundary.
Partition 2 does not start on physical sector boundary.
Partition 3 does not start on physical sector boundary.
Partition 4 does not start on physical sector boundary.
Partition 1 does not start on physical sector boundary.
Partition 1 does not start on physical sector boundary.
Partition 2 does not start on physical sector boundary.
Partition 2 does not start on physical sector boundary.

=================== /etc/grub.d/ :
drwxr-xr-x  2 root root    4096 avril 13 17:50 grub.d
total 80
-rwxr-xr-x 1 root root 10046 févr.  8  2019 00_header
-rwxr-xr-x 1 root root  6258 déc.   5  2017 05_debian_theme
-rwxr-xr-x 1 root root 12693 nov.   8  2018 10_linux
-rwxr-xr-x 1 root root 11298 déc.   5  2017 20_linux_xen
-rwxr-xr-x 1 root root  1992 janv. 28  2016 20_memtest86+
-rwxr-xr-x 1 root root 12059 déc.   5  2017 30_os-prober
-rwxr-xr-x 1 root root  1418 déc.   5  2017 30_uefi-firmware
-rwxr-xr-x 1 root root  4051 avril 13 17:50 40_custom
-rwxr-xr-x 1 root root   216 déc.   5  2017 41_custom
-rw-r--r-- 1 root root   483 déc.   5  2017 README


=================== /etc/grub.d/40_custom :
menuentry 'U16.04-P10-64b Ubuntu 16.04.6 LTS (16.04) (sur /dev/sda10)' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-simple-21a7fb42-ce7c-47c3-a77c-e55dc3e12590' {
insmod part_msdos
insmod ext2
set root='hd0,msdos10'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos10 --hint-efi=hd0,msdos10 --hint-baremetal=ahci0,msdos10  21a7fb42-ce7c-47c3-a77c-e55dc3e12590
else
search --no-floppy --fs-uuid --set=root 21a7fb42-ce7c-47c3-a77c-e55dc3e12590
fi
linux /vmlinuz root=/dev/sda10
initrd /initrd.img
}
menuentry 'M16.04-a12-64b Ubuntu 16.04.5 LTS (16.04) (sur /dev/sda12)' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-simple-cb9be900-e560-4c86-aa5c-8842b40fee00' {
insmod part_msdos
insmod ext2
set root='hd0,msdos12'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos12 --hint-efi=hd0,msdos12 --hint-baremetal=ahci0,msdos12  cb9be900-e560-4c86-aa5c-8842b40fee00
else
search --no-floppy --fs-uuid --set=root cb9be900-e560-4c86-aa5c-8842b40fee00
fi
linux /vmlinuz root=/dev/sda12
initrd /initrd.img
}
menuentry 'U14.04-a5-64b Ubuntu 14.04.5 LTS (14.04) (sur /dev/sda5)' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-simple-ed6801f3-ddfe-46ff-b3e9-83219cd58ca9' {
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  ed6801f3-ddfe-46ff-b3e9-83219cd58ca9
else
search --no-floppy --fs-uuid --set=root ed6801f3-ddfe-46ff-b3e9-83219cd58ca9
fi
linux /vmlinuz root=/dev/sda5
initrd /initrd.img
}
menuentry 'U16.04-a7-32b Ubuntu 16.04.5 LTS (16.04) (sur /dev/sda7)' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-simple-c6$
insmod part_msdos
insmod ext2
set root='hd0,msdos7'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos7 --hint-efi=hd0,msdos7 --hint-baremetal=ahci0,msdos7  c63335c7-be09-4782-978c-dff6cce2be94
else
search --no-floppy --fs-uuid --set=root c63335c7-be09-4782-978c-dff6cce2be94
fi
linux /vmlinuz root=/dev/sda7
initrd /initrd.img
}

menuentry 'X16.04-a9-32b Ubuntu 16.04.6 LTS (16.04) (sur /dev/sda9)' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-simple-d4b0b586-0b8e-457e-b492-78c272d1954f' {
insmod part_msdos
insmod ext2
set root='hd0,msdos9'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos9 --hint-efi=hd0,msdos9 --hint-baremetal=ahci0,msdos9  d4b0b586-0b8e-457e-b492-78c272d1954f
else
search --no-floppy --fs-uuid --set=root d4b0b586-0b8e-457e-b492-78c272d1954f
fi
linux /vmlinuz root=/dev/sda9
initrd /initrd.img
}
menuentry 'gnome Ubuntu 17.04 (17.04) (sur /dev/sdc9)' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-simple-3e774a44-b817-4b60-964c-46d4808d17ef' {
insmod part_msdos
insmod ext2
set root='hd2,msdos9'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-bios=hd2,msdos9 --hint-efi=hd2,msdos9 --hint-baremetal=ahci2,msdos9  3e774a44-b817-4b60-964c-46d4808d17ef
else
search --no-floppy --fs-uuid --set=root 3e774a44-b817-4b60-964c-46d4808d17ef
fi
linux /vmlinuz root=/dev/sdc9
initrd /initrd.img
}
menuentry "lancer mes isos" {
search --set=root --file /conf/grubiso.cfg
configfile /conf/grubiso.cfg
}




=================== /etc/default/grub :

# If you change this file, run 'update-grub' afterwards to update
# /boot/grub/grub.cfg.
# For full documentation of the options in this file, see:
#   info -f grub -n 'Simple configuration'


# par défaut
GRUB_DEFAULT="lancer mes isos"
#   pour utiliser lancer mes isos                , diéser        la ligne : #GRUB_DEFAULT=0
#   pour utiliser le lancement sur la 1ère ligne , ne pas diéser la ligne    GRUB_DEFAULT=0
GRUB_DEFAULT=0

GRUB_TIMEOUT_STYLE=hidden
GRUB_TIMEOUT=5
GRUB_DISTRIBUTOR=`lsb_release -i -s 2> /dev/null || echo Debian`
GRUB_CMDLINE_LINUX_DEFAULT="quiet splash"
GRUB_CMDLINE_LINUX=""

# modification des options
GRUB_TIMEOUT=5

# caché ?
#GRUB_HIDDEN_TIMEOUT=0
#GRUB_HIDDEN_TIMEOUT_QUIET=true
#GRUB_TIMEOUT=0	# dépendance: lorsque GRUB_HIDDEN_TIMEOUT est actif, ce paramètre doit être défini à 0

# Uncomment to enable BadRAM filtering, modify to suit your needs
# This works with Linux (no patch required) and with any kernel that obtains
# the memory map information from GRUB (GNU Mach, kernel of FreeBSD ...)
#GRUB_BADRAM="0x01234567,0xfefefefe,0x89abcdef,0xefefefef"

# Uncomment to disable graphical terminal (grub-pc only)
#GRUB_TERMINAL=console

# The resolution used on graphical terminal
# note that you can use only modes which your graphic card supports via VBE
# you can see them in real GRUB with the command `vbeinfo'
#GRUB_GFXMODE=640x480

# Uncomment if you don't want GRUB to pass "root=UUID=xxx" parameter to Linux
#GRUB_DISABLE_LINUX_UUID=true

# Uncomment to disable generation of recovery mode menu entries
#GRUB_DISABLE_RECOVERY="true"

# Uncomment to get a beep at grub start
#GRUB_INIT_TUNE="480 440 1"

# ne pas prendre en compte sdc7 (17-10) et sdc9
#GRUB_OS_PROBER_SKIP_LIST="7341dccb-39ae-4e66-861c-38df4c64fdf0@/dev/sdc7","3e774a44-b817-4b60-964c-46d4808d17ef@/dev/sdc9"
# ne pas prendre en compte sdc9 ( 17-10  est supprimé)
#GRUB_OS_PROBER_SKIP_LIST="3e774a44-b817-4b60-964c-46d4808d17ef@/dev/sdc9"




=================== sda2/etc/grub.d/ :
drwxr-xr-x  2 root root     4096 avril 12 13:33 grub.d
total 80
-rwxr-xr-x 1 root root 10046 mars  18  2019 00_header
-rwxr-xr-x 1 root root  6258 déc.   5  2017 05_debian_theme
-rwxr-xr-x 1 root root 12693 janv. 18  2018 10_linux
-rwxr-xr-x 1 root root 11298 déc.   5  2017 20_linux_xen
-rwxr-xr-x 1 root root  1992 janv. 28  2016 20_memtest86+
-rwxr-xr-x 1 root root 12059 déc.   5  2017 30_os-prober
-rwxr-xr-x 1 root root  1418 déc.   5  2017 30_uefi-firmware
-rwxr-xr-x 1 root root   890 nov.  28  2018 40_custom
-rwxr-xr-x 1 root root   216 déc.   5  2017 41_custom
-rw-r--r-- 1 root root   483 déc.   5  2017 README


=================== sda2/etc/grub.d/40_custom :
menuentry "   "  {
true
}
menuentry "Menu du disque B" {
set root='hd1,msdos10'
configfile /boot/grub/grub.cfg
}

menuentry "Menu du dique C" {
set root='hd2,msdos11'
configfile /boot/grub/grub.cfg
}

menuentry "   "  {
true
}

menuentry "===>> Distribs lancées depuis leur fichier 'iso'" {
set root='hd2,msdos5'
configfile /informatique/isos/00_isoboot.cfg
}




=================== sda2/etc/default/grub :

# If you change this file, run 'update-grub' afterwards to update
# /boot/grub/grub.cfg.
# For full documentation of the options in this file, see:
#   info -f grub -n 'Simple configuration'

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

# Uncomment to enable BadRAM filtering, modify to suit your needs
# This works with Linux (no patch required) and with any kernel that obtains
# the memory map information from GRUB (GNU Mach, kernel of FreeBSD ...)
#GRUB_BADRAM="0x01234567,0xfefefefe,0x89abcdef,0xefefefef"

# Uncomment to disable graphical terminal (grub-pc only)
#GRUB_TERMINAL=console

# The resolution used on graphical terminal
# note that you can use only modes which your graphic card supports via VBE
# you can see them in real GRUB with the command `vbeinfo'
#GRUB_GFXMODE=640x480

# Uncomment if you don't want GRUB to pass "root=UUID=xxx" parameter to Linux
#GRUB_DISABLE_LINUX_UUID=true

# Uncomment to disable generation of recovery mode menu entries
#GRUB_DISABLE_RECOVERY="true"

# Uncomment to get a beep at grub start
#GRUB_INIT_TUNE="480 440 1"

# ne pas prendre en compte 17-10 de sdc7
#GRUB_OS_PROBER_SKIP_LIST="7341dccb-39ae-4e66-861c-38df4c64fdf0" ne fonctionne pas# OK pour sdc7
#GRUB_OS_PROBER_SKIP_LIST="7341dccb-39ae-4e66-861c-38df4c64fdf0@/dev/sdc7"
# pour sdc7 et sdc9
GRUB_OS_PROBER_SKIP_LIST="21a7fb42-ce7c-47c3-a77c-e55dc3e12590@/dev/sda10,cb9be900-e560-4c86-aa5c-8842b40fee00@/dev/sda12,ed6801f3-ddfe-46ff-b3e9-83219cd58ca9@/dev/sda5,c63335c7-be09-4782-978c-dff6cce2be94@/dev/sda7,d4b0b586-0b8e-457e-b492-78c272d1954f@/dev/sda9,a17886e2-7520-42fb-bb3c-7b43781cf5bc@/dev/sdb5,3aabc8ae-d129-419c-bb5a-1292d98ec0f6@/dev/sdc11,3e774a44-b817-4b60-964c-46d4808d17ef@/dev/sdc9"




=================== sda5/etc/grub.d/ :
drwxr-xr-x  2 root root      4096 nov.  23  2018 grub.d
total 76
-rwxr-xr-x 1 root root  9791 déc.  17  2015 00_header
-rwxr-xr-x 1 root root  6058 mai    8  2014 05_debian_theme
-rwxr-xr-x 1 root root 11608 mai   15  2014 10_linux
-rwxr-xr-x 1 root root 10412 mai   15  2014 20_linux_xen
-rwxr-xr-x 1 root root  1992 mars  12  2014 20_memtest86+
-rw-r--r-- 1 root root 11692 mai   15  2014 30_os-prober
-rwxr-xr-x 1 root root  1418 août   2  2016 30_uefi-firmware
-rwxr-xr-x 1 root root   214 mai   15  2014 40_custom
-rwxr-xr-x 1 root root   216 mai   15  2014 41_custom
-rw-r--r-- 1 root root   483 mai   15  2014 README




=================== sda5/etc/default/grub :

# If you change this file, run 'update-grub' afterwards to update
# /boot/grub/grub.cfg.
# For full documentation of the options in this file, see:
#   info -f grub -n 'Simple configuration'

GRUB_DEFAULT=0
GRUB_HIDDEN_TIMEOUT=0
GRUB_HIDDEN_TIMEOUT_QUIET=true
GRUB_TIMEOUT=10
GRUB_DISTRIBUTOR=`lsb_release -i -s 2> /dev/null || echo Debian`
GRUB_CMDLINE_LINUX_DEFAULT="quiet splash"
GRUB_CMDLINE_LINUX=""

# Uncomment to enable BadRAM filtering, modify to suit your needs
# This works with Linux (no patch required) and with any kernel that obtains
# the memory map information from GRUB (GNU Mach, kernel of FreeBSD ...)
#GRUB_BADRAM="0x01234567,0xfefefefe,0x89abcdef,0xefefefef"

# Uncomment to disable graphical terminal (grub-pc only)
#GRUB_TERMINAL=console

# The resolution used on graphical terminal
# note that you can use only modes which your graphic card supports via VBE
# you can see them in real GRUB with the command `vbeinfo'
#GRUB_GFXMODE=640x480

# Uncomment if you don't want GRUB to pass "root=UUID=xxx" parameter to Linux
#GRUB_DISABLE_LINUX_UUID=true

# Uncomment to disable generation of recovery mode menu entries
#GRUB_DISABLE_RECOVERY="true"

# Uncomment to get a beep at grub start
#GRUB_INIT_TUNE="480 440 1"




=================== sda7/etc/grub.d/ :
drwxr-xr-x  2 root root     4096 nov.  23  2018 grub.d
total 80
-rwxr-xr-x 1 root root  9791 avril 16  2016 00_header
-rwxr-xr-x 1 root root  6258 mars  15  2016 05_debian_theme
-rwxr-xr-x 1 root root 12512 mai   20  2017 10_linux
-rwxr-xr-x 1 root root 11082 avril 16  2016 20_linux_xen
-rwxr-xr-x 1 root root  1992 janv. 28  2016 20_memtest86+
-rw-r--r-- 1 root root 11692 avril 16  2016 30_os-prober
-rwxr-xr-x 1 root root  1418 avril 16  2016 30_uefi-firmware
-rwxr-xr-x 1 root root   214 avril 16  2016 40_custom
-rwxr-xr-x 1 root root   216 avril 16  2016 41_custom
-rw-r--r-- 1 root root   483 avril 16  2016 README




=================== sda7/etc/default/grub :

# If you change this file, run 'update-grub' afterwards to update
# /boot/grub/grub.cfg.
# For full documentation of the options in this file, see:
#   info -f grub -n 'Simple configuration'

GRUB_DEFAULT=0
#GRUB_HIDDEN_TIMEOUT=0
GRUB_HIDDEN_TIMEOUT_QUIET=true
GRUB_TIMEOUT=10
GRUB_DISTRIBUTOR=`lsb_release -i -s 2> /dev/null || echo Debian`
GRUB_CMDLINE_LINUX_DEFAULT="quiet splash"
GRUB_CMDLINE_LINUX=""

# Uncomment to enable BadRAM filtering, modify to suit your needs
# This works with Linux (no patch required) and with any kernel that obtains
# the memory map information from GRUB (GNU Mach, kernel of FreeBSD ...)
#GRUB_BADRAM="0x01234567,0xfefefefe,0x89abcdef,0xefefefef"

# Uncomment to disable graphical terminal (grub-pc only)
#GRUB_TERMINAL=console

# The resolution used on graphical terminal
# note that you can use only modes which your graphic card supports via VBE
# you can see them in real GRUB with the command `vbeinfo'
#GRUB_GFXMODE=640x480

# Uncomment if you don't want GRUB to pass "root=UUID=xxx" parameter to Linux
#GRUB_DISABLE_LINUX_UUID=true

# Uncomment to disable generation of recovery mode menu entries
#GRUB_DISABLE_RECOVERY="true"

# Uncomment to get a beep at grub start
#GRUB_INIT_TUNE="480 440 1"




=================== sda9/etc/grub.d/ :
drwxr-xr-x  2 root root    4096 févr. 13 09:48 grub.d
total 80
-rwxr-xr-x 1 root root  9791 avril 16  2016 00_header
-rwxr-xr-x 1 root root  6258 mars  15  2016 05_debian_theme
-rwxr-xr-x 1 root root 12512 mai   20  2017 10_linux
-rwxr-xr-x 1 root root 11082 avril 16  2016 20_linux_xen
-rwxr-xr-x 1 root root  1992 janv. 28  2016 20_memtest86+
-rw-r--r-- 1 root root 11692 avril 16  2016 30_os-prober
-rwxr-xr-x 1 root root  1418 avril 16  2016 30_uefi-firmware
-rwxr-xr-x 1 root root   214 avril 16  2016 40_custom
-rwxr-xr-x 1 root root   216 avril 16  2016 41_custom
-rw-r--r-- 1 root root   483 avril 16  2016 README




=================== sda9/etc/default/grub :

# If you change this file, run 'update-grub' afterwards to update
# /boot/grub/grub.cfg.
# For full documentation of the options in this file, see:
#   info -f grub -n 'Simple configuration'

GRUB_DEFAULT=0
#GRUB_HIDDEN_TIMEOUT=0
GRUB_HIDDEN_TIMEOUT_QUIET=true
GRUB_TIMEOUT=10
GRUB_DISTRIBUTOR=`lsb_release -i -s 2> /dev/null || echo Debian`
GRUB_CMDLINE_LINUX_DEFAULT="quiet splash"
GRUB_CMDLINE_LINUX=""

# Uncomment to enable BadRAM filtering, modify to suit your needs
# This works with Linux (no patch required) and with any kernel that obtains
# the memory map information from GRUB (GNU Mach, kernel of FreeBSD ...)
#GRUB_BADRAM="0x01234567,0xfefefefe,0x89abcdef,0xefefefef"

# Uncomment to disable graphical terminal (grub-pc only)
#GRUB_TERMINAL=console

# The resolution used on graphical terminal
# note that you can use only modes which your graphic card supports via VBE
# you can see them in real GRUB with the command `vbeinfo'
#GRUB_GFXMODE=640x480

# Uncomment if you don't want GRUB to pass "root=UUID=xxx" parameter to Linux
#GRUB_DISABLE_LINUX_UUID=true

# Uncomment to disable generation of recovery mode menu entries
#GRUB_DISABLE_RECOVERY="true"

# Uncomment to get a beep at grub start
#GRUB_INIT_TUNE="480 440 1"




=================== sda10/etc/grub.d/ :
drwxr-xr-x  2 root root     4096 févr.  8 13:55 grub.d
total 80
-rwxr-xr-x 1 root root  9791 avril 16  2016 00_header
-rwxr-xr-x 1 root root  6258 mars  15  2016 05_debian_theme
-rwxr-xr-x 1 root root 12512 mars   1  2017 10_linux
-rwxr-xr-x 1 root root 11082 avril 16  2016 20_linux_xen
-rwxr-xr-x 1 root root  1992 janv. 28  2016 20_memtest86+
-rwxr-xr-x 1 root root 11692 avril 16  2016 30_os-prober
-rwxr-xr-x 1 root root  1418 avril 16  2016 30_uefi-firmware
-rwxr-xr-x 1 root root   892 sept. 19  2016 40_custom
-rwxr-xr-x 1 root root   216 avril 16  2016 41_custom
-rw-r--r-- 1 root root   483 avril 16  2016 README


=================== sda10/etc/grub.d/40_custom :
#couleur de la police dans le menu de grub (white,blue,green,light-green,light-gray etc)

#menu_color_normal=couleur ligne non sélectionnée/couleur du fond quand il n'y a pas d'image
set menu_color_normal=white/black

#menu_color_normal_highlight=couleur ligne sélectionnée/couleur du fond quand il n'y a pas d'image
set menu_color_highlight=black/white

#couleur de la police dans l'édition du menu de grub
#color_normal=en édition couleur ligne non sélectionnée/couleur du fond quand il n'y a pas d'image
set color_normal=white/black

#color_highlight=en édition couleur ligne sélectionnée/couleur du fond quand il n'y a pas d'image
set color_highlight=black/white




=================== sda10/etc/default/grub :

# If you change this file, run 'update-grub' afterwards to update
# /boot/grub/grub.cfg.
# For full documentation of the options in this file, see:
#   info -f grub -n 'Simple configuration'

GRUB_DEFAULT=saved
GRUB_SAVEDEFAULT=true
#GRUB_HIDDEN_TIMEOUT=0
GRUB_HIDDEN_TIMEOUT_QUIET=true
GRUB_TIMEOUT=10
GRUB_DISTRIBUTOR=`lsb_release -i -s 2> /dev/null || echo Debian`
GRUB_CMDLINE_LINUX_DEFAULT="quiet splash"
GRUB_CMDLINE_LINUX=""

# Uncomment to enable BadRAM filtering, modify to suit your needs
# This works with Linux (no patch required) and with any kernel that obtains
# the memory map information from GRUB (GNU Mach, kernel of FreeBSD ...)
#GRUB_BADRAM="0x01234567,0xfefefefe,0x89abcdef,0xefefefef"

# Uncomment to disable graphical terminal (grub-pc only)
#GRUB_TERMINAL=console

# The resolution used on graphical terminal
# note that you can use only modes which your graphic card supports via VBE
# you can see them in real GRUB with the command `vbeinfo'
#GRUB_GFXMODE=640x480

# Uncomment if you don't want GRUB to pass "root=UUID=xxx" parameter to Linux
#GRUB_DISABLE_LINUX_UUID=true

# Uncomment to disable generation of recovery mode menu entries
#GRUB_DISABLE_RECOVERY="true"

# Uncomment to get a beep at grub start
#GRUB_INIT_TUNE="480 440 1"




=================== sda10saved_entry=osprober-gnulinux-simple-adb3563a-ddba-4f75-8e82-7df3e3d2a4a5/grub/grubenv :
saved_entry=osprober-gnulinux-simple-adb3563a-ddba-4f75-8e82-7df3e3d2a4a5




=================== sda12/etc/grub.d/ :
drwxr-xr-x  2 root root     4096 nov.  23  2018 grub.d
total 80
-rwxr-xr-x 1 root root  9791 juin  17  2016 00_header
-rwxr-xr-x 1 root root  6258 mars  15  2016 05_debian_theme
-rwxr-xr-x 1 root root 12512 oct.  30  2018 10_linux
-rwxr-xr-x 1 root root 11082 juin  17  2016 20_linux_xen
-rwxr-xr-x 1 root root  1992 janv. 28  2016 20_memtest86+
-rw-r--r-- 1 root root 11692 juin  17  2016 30_os-prober
-rwxr-xr-x 1 root root  1418 juin  17  2016 30_uefi-firmware
-rwxr-xr-x 1 root root   214 juin  17  2016 40_custom
-rwxr-xr-x 1 root root   216 juin  17  2016 41_custom
-rw-r--r-- 1 root root   483 juin  17  2016 README




=================== sda12/etc/default/grub :

# If you change this file, run 'update-grub' afterwards to update
# /boot/grub/grub.cfg.
# For full documentation of the options in this file, see:
#   info -f grub -n 'Simple configuration'

GRUB_DEFAULT=0
#GRUB_HIDDEN_TIMEOUT=0
GRUB_HIDDEN_TIMEOUT_QUIET=true
GRUB_TIMEOUT=10
GRUB_DISTRIBUTOR=`lsb_release -i -s 2> /dev/null || echo Debian`
GRUB_CMDLINE_LINUX_DEFAULT="quiet splash"
GRUB_CMDLINE_LINUX=""

# Uncomment to enable BadRAM filtering, modify to suit your needs
# This works with Linux (no patch required) and with any kernel that obtains
# the memory map information from GRUB (GNU Mach, kernel of FreeBSD ...)
#GRUB_BADRAM="0x01234567,0xfefefefe,0x89abcdef,0xefefefef"

# Uncomment to disable graphical terminal (grub-pc only)
#GRUB_TERMINAL=console

# The resolution used on graphical terminal
# note that you can use only modes which your graphic card supports via VBE
# you can see them in real GRUB with the command `vbeinfo'
#GRUB_GFXMODE=640x480

# Uncomment if you don't want GRUB to pass "root=UUID=xxx" parameter to Linux
#GRUB_DISABLE_LINUX_UUID=true

# Uncomment to disable generation of recovery mode menu entries
#GRUB_DISABLE_RECOVERY="true"

# Uncomment to get a beep at grub start
#GRUB_INIT_TUNE="480 440 1"




=================== sdb5/etc/grub.d/ :
drwxr-xr-x  2 root root     4096 avril 12 14:00 grub.d
total 80
-rwxr-xr-x 1 root root  9791 avril 16  2016 00_header
-rwxr-xr-x 1 root root  6258 mars  15  2016 05_debian_theme
-rwxr-xr-x 1 root root 12512 mars  24  2017 10_linux
-rwxr-xr-x 1 root root 11082 avril 16  2016 20_linux_xen
-rwxr-xr-x 1 root root  1992 janv. 28  2016 20_memtest86+
-rwxr-xr-x 1 root root 11692 avril 16  2016 30_os-prober
-rwxr-xr-x 1 root root  1418 avril 16  2016 30_uefi-firmware
-rwxr-xr-x 1 root root   214 avril 16  2016 40_custom
-rwxr-xr-x 1 root root   216 avril 16  2016 41_custom
-rw-r--r-- 1 root root   483 avril 16  2016 README




=================== sdb5/etc/default/grub :

# If you change this file, run 'update-grub' afterwards to update
# /boot/grub/grub.cfg.
# For full documentation of the options in this file, see:
#   info -f grub -n 'Simple configuration'

GRUB_DEFAULT=0
#GRUB_HIDDEN_TIMEOUT=0
GRUB_HIDDEN_TIMEOUT_QUIET=true
GRUB_TIMEOUT=10
GRUB_DISTRIBUTOR=`lsb_release -i -s 2> /dev/null || echo Debian`
GRUB_CMDLINE_LINUX_DEFAULT="quiet splash"
GRUB_CMDLINE_LINUX=""

# Uncomment to enable BadRAM filtering, modify to suit your needs
# This works with Linux (no patch required) and with any kernel that obtains
# the memory map information from GRUB (GNU Mach, kernel of FreeBSD ...)
#GRUB_BADRAM="0x01234567,0xfefefefe,0x89abcdef,0xefefefef"

# Uncomment to disable graphical terminal (grub-pc only)
#GRUB_TERMINAL=console

# The resolution used on graphical terminal
# note that you can use only modes which your graphic card supports via VBE
# you can see them in real GRUB with the command `vbeinfo'
#GRUB_GFXMODE=640x480

# Uncomment if you don't want GRUB to pass "root=UUID=xxx" parameter to Linux
#GRUB_DISABLE_LINUX_UUID=true

# Uncomment to disable generation of recovery mode menu entries
#GRUB_DISABLE_RECOVERY="true"

# Uncomment to get a beep at grub start
#GRUB_INIT_TUNE="480 440 1"
GRUB_OS_PROBER_SKIP_LIST="21a7fb42-ce7c-47c3-a77c-e55dc3e12590@/dev/sda10,cb9be900-e560-4c86-aa5c-8842b40fee00@/dev/sda12,adb3563a-ddba-4f75-8e82-7df3e3d2a4a5@/dev/sda2,ed6801f3-ddfe-46ff-b3e9-83219cd58ca9@/dev/sda5,c63335c7-be09-4782-978c-dff6cce2be94@/dev/sda7,d4b0b586-0b8e-457e-b492-78c272d1954f@/dev/sda9,3aabc8ae-d129-419c-bb5a-1292d98ec0f6@/dev/sdc11,3e774a44-b817-4b60-964c-46d4808d17ef@/dev/sdc9"





=================== sdc9/etc/grub.d/ :
drwxr-xr-x  2 root root     4096 nov.   4  2017 grub.d
total 80
-rwxr-xr-x 1 root root  9783 mars  30  2017 00_header
-rwxr-xr-x 1 root root  6258 nov.   1  2016 05_debian_theme
-rwxr-xr-x 1 root root 12676 mars  30  2017 10_linux
-rwxr-xr-x 1 root root 11281 mars  30  2017 20_linux_xen
-rwxr-xr-x 1 root root  1992 janv. 28  2016 20_memtest86+
-rw-r--r-- 1 root root 12059 mars  30  2017 30_os-prober
-rwxr-xr-x 1 root root  1418 mars  30  2017 30_uefi-firmware
-rwxr-xr-x 1 root root   214 mars  30  2017 40_custom
-rwxr-xr-x 1 root root   216 mars  30  2017 41_custom
-rw-r--r-- 1 root root   483 mars  30  2017 README




=================== sdc9/etc/default/grub :

# If you change this file, run 'update-grub' afterwards to update
# /boot/grub/grub.cfg.
# For full documentation of the options in this file, see:
#   info -f grub -n 'Simple configuration'

GRUB_DEFAULT=0
#GRUB_HIDDEN_TIMEOUT=0
GRUB_HIDDEN_TIMEOUT_QUIET=true
GRUB_TIMEOUT=10
GRUB_DISTRIBUTOR=`lsb_release -i -s 2> /dev/null || echo Debian`
GRUB_CMDLINE_LINUX_DEFAULT="quiet splash"
GRUB_CMDLINE_LINUX=""

# Uncomment to enable BadRAM filtering, modify to suit your needs
# This works with Linux (no patch required) and with any kernel that obtains
# the memory map information from GRUB (GNU Mach, kernel of FreeBSD ...)
#GRUB_BADRAM="0x01234567,0xfefefefe,0x89abcdef,0xefefefef"

# Uncomment to disable graphical terminal (grub-pc only)
#GRUB_TERMINAL=console

# The resolution used on graphical terminal
# note that you can use only modes which your graphic card supports via VBE
# you can see them in real GRUB with the command `vbeinfo'
#GRUB_GFXMODE=640x480

# Uncomment if you don't want GRUB to pass "root=UUID=xxx" parameter to Linux
#GRUB_DISABLE_LINUX_UUID=true

# Uncomment to disable generation of recovery mode menu entries
#GRUB_DISABLE_RECOVERY="true"

# Uncomment to get a beep at grub start
#GRUB_INIT_TUNE="480 440 1"




=================== sdc11/etc/grub.d/ :
drwxr-xr-x  2 root root    4096 avril 12 14:34 grub.d
total 80
-rwxr-xr-x 1 root root 10046 mars  18  2019 00_header
-rwxr-xr-x 1 root root  6258 déc.   5  2017 05_debian_theme
-rwxr-xr-x 1 root root 12693 févr.  9  2018 10_linux
-rwxr-xr-x 1 root root 11298 déc.   5  2017 20_linux_xen
-rwxr-xr-x 1 root root  1992 janv. 28  2016 20_memtest86+
-rwxr-xr-x 1 root root 12059 déc.   5  2017 30_os-prober
-rwxr-xr-x 1 root root  1418 déc.   5  2017 30_uefi-firmware
-rwxr-xr-x 1 root root   214 déc.   5  2017 40_custom
-rwxr-xr-x 1 root root   216 déc.   5  2017 41_custom
-rw-r--r-- 1 root root   483 déc.   5  2017 README




=================== sdc11/etc/default/grub :

# If you change this file, run 'update-grub' afterwards to update
# /boot/grub/grub.cfg.
# For full documentation of the options in this file, see:
#   info -f grub -n 'Simple configuration'

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

# Uncomment to enable BadRAM filtering, modify to suit your needs
# This works with Linux (no patch required) and with any kernel that obtains
# the memory map information from GRUB (GNU Mach, kernel of FreeBSD ...)
#GRUB_BADRAM="0x01234567,0xfefefefe,0x89abcdef,0xefefefef"

# Uncomment to disable graphical terminal (grub-pc only)
#GRUB_TERMINAL=console

# The resolution used on graphical terminal
# note that you can use only modes which your graphic card supports via VBE
# you can see them in real GRUB with the command `vbeinfo'
#GRUB_GFXMODE=640x480

# Uncomment if you don't want GRUB to pass "root=UUID=xxx" parameter to Linux
#GRUB_DISABLE_LINUX_UUID=true

# Uncomment to disable generation of recovery mode menu entries
#GRUB_DISABLE_RECOVERY="true"

# Uncomment to get a beep at grub start
#GRUB_INIT_TUNE="480 440 1"
GRUB_OS_PROBER_SKIP_LIST="21a7fb42-ce7c-47c3-a77c-e55dc3e12590@/dev/sda10,cb9be900-e560-4c86-aa5c-8842b40fee00@/dev/sda12,adb3563a-ddba-4f75-8e82-7df3e3d2a4a5@/dev/sda2,ed6801f3-ddfe-46ff-b3e9-83219cd58ca9@/dev/sda5,c63335c7-be09-4782-978c-dff6cce2be94@/dev/sda7,d4b0b586-0b8e-457e-b492-78c272d1954f@/dev/sda9,a17886e2-7520-42fb-bb3c-7b43781cf5bc@/dev/sdb5,3e774a44-b817-4b60-964c-46d4808d17ef@/dev/sdc9"




Presence of EFI/Boot file detected: /mnt/boot-sav/sde1/EFI/Boot/fbx64.efi

=================== sde2/etc/grub.d/ :
drwxr-xr-x  2 root root    4096 avril  7 06:41 grub.d
total 80
-rwxr-xr-x 1 root root 10046 mars  11 21:57 00_header
-rwxr-xr-x 1 root root  6258 juil. 16  2018 05_debian_theme
-rwxr-xr-x 1 root root 12693 juil. 17  2018 10_linux
-rwxr-xr-x 1 root root 11298 juil. 17  2018 20_linux_xen
-rwxr-xr-x 1 root root  1992 janv. 28  2016 20_memtest86+
-rwxr-xr-x 1 root root 12059 juil. 17  2018 30_os-prober
-rwxr-xr-x 1 root root  1418 juil. 17  2018 30_uefi-firmware
-rwxr-xr-x 1 root root   214 juil. 17  2018 40_custom
-rwxr-xr-x 1 root root   216 juil. 17  2018 41_custom
-rw-r--r-- 1 root root   483 juil. 17  2018 README




=================== sde2/etc/default/grub :

# If you change this file, run 'update-grub' afterwards to update
# /boot/grub/grub.cfg.
# For full documentation of the options in this file, see:
#   info -f grub -n 'Simple configuration'

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

# Uncomment to enable BadRAM filtering, modify to suit your needs
# This works with Linux (no patch required) and with any kernel that obtains
# the memory map information from GRUB (GNU Mach, kernel of FreeBSD ...)
#GRUB_BADRAM="0x01234567,0xfefefefe,0x89abcdef,0xefefefef"

# Uncomment to disable graphical terminal (grub-pc only)
#GRUB_TERMINAL=console

# The resolution used on graphical terminal
# note that you can use only modes which your graphic card supports via VBE
# you can see them in real GRUB with the command `vbeinfo'
#GRUB_GFXMODE=640x480

# Uncomment if you don't want GRUB to pass "root=UUID=xxx" parameter to Linux
#GRUB_DISABLE_LINUX_UUID=true

# Uncomment to disable generation of recovery mode menu entries
#GRUB_DISABLE_RECOVERY="true"

# Uncomment to get a beep at grub start
#GRUB_INIT_TUNE="480 440 1"
GRUB_OS_PROBER_SKIP_LIST="21a7fb42-ce7c-47c3-a77c-e55dc3e12590@/dev/sda10,cb9be900-e560-4c86-aa5c-8842b40fee00@/dev/sda12,adb3563a-ddba-4f75-8e82-7df3e3d2a4a5@/dev/sda2,ed6801f3-ddfe-46ff-b3e9-83219cd58ca9@/dev/sda5,c63335c7-be09-4782-978c-dff6cce2be94@/dev/sda7,d4b0b586-0b8e-457e-b492-78c272d1954f@/dev/sda9,a17886e2-7520-42fb-bb3c-7b43781cf5bc@/dev/sdb5,3aabc8ae-d129-419c-bb5a-1292d98ec0f6@/dev/sdc11,3e774a44-b817-4b60-964c-46d4808d17ef@/dev/sdc9"




/boot/efi detected in the fstab of sde2: UUID=34D9-A436    (sde1)

=================== UEFI/Legacy mode:
BIOS is EFI-compatible, but it is not setup in EFI-mode for this installed-session.
EFI in dmesg.
[    0.000000] ACPI: UEFI 0x000000008AA0B1E0 000042 (v01 ALASKA A M I    00000002      01000013)
SecureBoot disabled.


=================== PARTITIONS & DISKS:
sdd1	: sdd,	not-sepboot,	grubenv-ok	grub2,	grub-pc ,	update-grub,	64,	with-boot,	is-os,	not--efi--part,	fstab-without-boot,	fstab-without-efi,	no-nt,	no-winload,	no-recov-nor-hid,	no-bmgr,	notwinboot,	apt-get,	grub-install,	with--usr,	fstab-without-usr,	not-sep-usr,	standard,	not-far,	notbiosboot, .
sda1	: sda,	maybesepboot,	no-grubenv	nogrub,	no-docgrub,	no-update-grub,	32,	no-boot,	no-os,	not--efi--part,	part-has-no-fstab,	part-has-no-fstab,	no-nt,	no-winload,	no-recov-nor-hid,	no-bmgr,	notwinboot,	nopakmgr,	nogrubinstall,	no---usr,	part-has-no-fstab,	not-sep-usr,	standard,	farbios,	notbiosboot, /mnt/boot-sav/sda1.
sda2	: sda,	not-sepboot,	grubenv-ok	grub2,	grub-pc ,	update-grub,	64,	with-boot,	is-os,	not--efi--part,	fstab-without-boot,	fstab-without-efi,	no-nt,	no-winload,	no-recov-nor-hid,	no-bmgr,	notwinboot,	apt-get,	grub-install,	with--usr,	fstab-without-usr,	not-sep-usr,	standard,	farbios,	notbiosboot, /mnt/boot-sav/sda2.
sda3	: sda,	maybesepboot,	no-grubenv	nogrub,	no-docgrub,	no-update-grub,	32,	no-boot,	no-os,	not--efi--part,	part-has-no-fstab,	part-has-no-fstab,	no-nt,	no-winload,	no-recov-nor-hid,	no-bmgr,	notwinboot,	nopakmgr,	nogrubinstall,	no---usr,	part-has-no-fstab,	not-sep-usr,	standard,	farbios,	notbiosboot, /mnt/boot-sav/sda3.
sda5	: sda,	not-sepboot,	grubenv-ok	grub2,	grub-pc ,	update-grub,	64,	with-boot,	is-os,	not--efi--part,	fstab-without-boot,	fstab-without-efi,	no-nt,	no-winload,	no-recov-nor-hid,	no-bmgr,	notwinboot,	apt-get,	grub-install,	with--usr,	fstab-without-usr,	not-sep-usr,	standard,	farbios,	notbiosboot, /mnt/boot-sav/sda5.
sda7	: sda,	not-sepboot,	grubenv-ok	grub2,	grub-pc ,	update-grub,	32,	with-boot,	is-os,	not--efi--part,	fstab-without-boot,	fstab-without-efi,	no-nt,	no-winload,	no-recov-nor-hid,	no-bmgr,	notwinboot,	apt-get,	grub-install,	with--usr,	fstab-without-usr,	not-sep-usr,	standard,	farbios,	notbiosboot, /mnt/boot-sav/sda7.
sda9	: sda,	not-sepboot,	grubenv-ok	grub2,	grub-pc ,	update-grub,	32,	with-boot,	is-os,	not--efi--part,	fstab-without-boot,	fstab-without-efi,	no-nt,	no-winload,	no-recov-nor-hid,	no-bmgr,	notwinboot,	apt-get,	grub-install,	with--usr,	fstab-without-usr,	not-sep-usr,	standard,	farbios,	notbiosboot, /mnt/boot-sav/sda9.
sda10	: sda,	not-sepboot,	grubenv-ng	grub2,	grub-pc ,	update-grub,	64,	with-boot,	is-os,	not--efi--part,	fstab-without-boot,	fstab-without-efi,	no-nt,	no-winload,	no-recov-nor-hid,	no-bmgr,	notwinboot,	apt-get,	grub-install,	with--usr,	fstab-without-usr,	not-sep-usr,	standard,	farbios,	notbiosboot, /mnt/boot-sav/sda10.
sda11	: sda,	maybesepboot,	no-grubenv	nogrub,	no-docgrub,	no-update-grub,	32,	no-boot,	no-os,	not--efi--part,	part-has-no-fstab,	part-has-no-fstab,	no-nt,	no-winload,	no-recov-nor-hid,	no-bmgr,	notwinboot,	nopakmgr,	nogrubinstall,	no---usr,	part-has-no-fstab,	not-sep-usr,	standard,	farbios,	notbiosboot, /mnt/boot-sav/sda11.
sda12	: sda,	not-sepboot,	grubenv-ok	grub2,	grub-pc ,	update-grub,	64,	with-boot,	is-os,	not--efi--part,	fstab-without-boot,	fstab-without-efi,	no-nt,	no-winload,	no-recov-nor-hid,	no-bmgr,	notwinboot,	apt-get,	grub-install,	with--usr,	fstab-without-usr,	not-sep-usr,	standard,	farbios,	notbiosboot, /mnt/boot-sav/sda12.
sda13	: sda,	maybesepboot,	no-grubenv	nogrub,	no-docgrub,	no-update-grub,	32,	no-boot,	no-os,	not--efi--part,	part-has-no-fstab,	part-has-no-fstab,	no-nt,	no-winload,	no-recov-nor-hid,	no-bmgr,	notwinboot,	nopakmgr,	nogrubinstall,	no---usr,	part-has-no-fstab,	not-sep-usr,	standard,	farbios,	notbiosboot, /mnt/boot-sav/sda13.
sda14	: sda,	maybesepboot,	no-grubenv	nogrub,	no-docgrub,	no-update-grub,	32,	no-boot,	no-os,	not--efi--part,	part-has-no-fstab,	part-has-no-fstab,	no-nt,	no-winload,	no-recov-nor-hid,	no-bmgr,	notwinboot,	nopakmgr,	nogrubinstall,	no---usr,	part-has-no-fstab,	not-sep-usr,	standard,	farbios,	notbiosboot, /mnt/boot-sav/sda14.
sda15	: sda,	maybesepboot,	no-grubenv	nogrub,	no-docgrub,	no-update-grub,	32,	no-boot,	no-os,	not--efi--part,	part-has-no-fstab,	part-has-no-fstab,	no-nt,	no-winload,	no-recov-nor-hid,	no-bmgr,	notwinboot,	nopakmgr,	nogrubinstall,	no---usr,	part-has-no-fstab,	not-sep-usr,	standard,	farbios,	notbiosboot, /mnt/boot-sav/sda15.
sda16	: sda,	maybesepboot,	no-grubenv	nogrub,	no-docgrub,	no-update-grub,	32,	no-boot,	no-os,	not--efi--part,	part-has-no-fstab,	part-has-no-fstab,	no-nt,	no-winload,	no-recov-nor-hid,	no-bmgr,	notwinboot,	nopakmgr,	nogrubinstall,	no---usr,	part-has-no-fstab,	not-sep-usr,	standard,	farbios,	notbiosboot, /media/ISOS.
sda17	: sda,	maybesepboot,	no-grubenv	nogrub,	no-docgrub,	no-update-grub,	32,	no-boot,	no-os,	not--efi--part,	part-has-no-fstab,	part-has-no-fstab,	no-nt,	no-winload,	no-recov-nor-hid,	no-bmgr,	notwinboot,	nopakmgr,	nogrubinstall,	no---usr,	part-has-no-fstab,	not-sep-usr,	standard,	farbios,	notbiosboot, /mnt/boot-sav/sda17.
sdb1	: sdb,	not-sepboot,	no-grubenv	nogrub,	no-docgrub,	no-update-grub,	32,	no-boot,	is-os,	not--efi--part,	part-has-no-fstab,	part-has-no-fstab,	ntldr,	no-winload,	no-recov-nor-hid,	no-bmgr,	notwinboot,	nopakmgr,	nogrubinstall,	no---usr,	part-has-no-fstab,	not-sep-usr,	standard,	not-far,	notbiosboot, /mnt/boot-sav/sdb1.
sdb2	: sdb,	not-sepboot,	no-grubenv	nogrub,	no-docgrub,	no-update-grub,	32,	no-boot,	no-os,	not--efi--part,	part-has-no-fstab,	part-has-no-fstab,	no-nt,	no-winload,	no-recov-nor-hid,	no-bmgr,	notwinboot,	nopakmgr,	nogrubinstall,	no---usr,	part-has-no-fstab,	not-sep-usr,	standard,	not-far,	notbiosboot, /mnt/boot-sav/sdb2.
sdb3	: sdb,	maybesepboot,	no-grubenv	nogrub,	no-docgrub,	no-update-grub,	32,	no-boot,	no-os,	not--efi--part,	part-has-no-fstab,	part-has-no-fstab,	no-nt,	no-winload,	no-recov-nor-hid,	no-bmgr,	notwinboot,	nopakmgr,	nogrubinstall,	no---usr,	part-has-no-fstab,	not-sep-usr,	standard,	farbios,	notbiosboot, /mnt/boot-sav/sdb3.
sdb5	: sdb,	not-sepboot,	grubenv-ok	grub2,	grub-pc ,	update-grub,	64,	with-boot,	is-os,	not--efi--part,	fstab-without-boot,	fstab-without-efi,	no-nt,	no-winload,	no-recov-nor-hid,	no-bmgr,	notwinboot,	apt-get,	grub-install,	with--usr,	fstab-without-usr,	not-sep-usr,	standard,	farbios,	notbiosboot, /mnt/boot-sav/sdb5.
sdb7	: sdb,	maybesepboot,	no-grubenv	nogrub,	no-docgrub,	no-update-grub,	32,	no-boot,	no-os,	not--efi--part,	part-has-no-fstab,	part-has-no-fstab,	no-nt,	no-winload,	no-recov-nor-hid,	no-bmgr,	notwinboot,	nopakmgr,	nogrubinstall,	no---usr,	part-has-no-fstab,	not-sep-usr,	standard,	farbios,	notbiosboot, /mnt/boot-sav/sdb7.
sdb8	: sdb,	maybesepboot,	no-grubenv	nogrub,	no-docgrub,	no-update-grub,	32,	no-boot,	no-os,	not--efi--part,	part-has-no-fstab,	part-has-no-fstab,	no-nt,	no-winload,	no-recov-nor-hid,	no-bmgr,	notwinboot,	nopakmgr,	nogrubinstall,	no---usr,	part-has-no-fstab,	not-sep-usr,	standard,	farbios,	notbiosboot, /mnt/boot-sav/sdb8.
sdb9	: sdb,	maybesepboot,	no-grubenv	nogrub,	no-docgrub,	no-update-grub,	32,	no-boot,	no-os,	not--efi--part,	part-has-no-fstab,	part-has-no-fstab,	no-nt,	no-winload,	no-recov-nor-hid,	no-bmgr,	notwinboot,	nopakmgr,	nogrubinstall,	no---usr,	part-has-no-fstab,	not-sep-usr,	standard,	farbios,	notbiosboot, /mnt/boot-sav/sdb9.
sdb10	: sdb,	maybesepboot,	no-grubenv	nogrub,	no-docgrub,	no-update-grub,	32,	no-boot,	no-os,	not--efi--part,	part-has-no-fstab,	part-has-no-fstab,	no-nt,	no-winload,	no-recov-nor-hid,	no-bmgr,	notwinboot,	nopakmgr,	nogrubinstall,	no---usr,	part-has-no-fstab,	not-sep-usr,	standard,	farbios,	notbiosboot, /mnt/boot-sav/sdb10.
sdb11	: sdb,	maybesepboot,	no-grubenv	nogrub,	no-docgrub,	no-update-grub,	32,	no-boot,	no-os,	not--efi--part,	part-has-no-fstab,	part-has-no-fstab,	no-nt,	no-winload,	no-recov-nor-hid,	no-bmgr,	notwinboot,	nopakmgr,	nogrubinstall,	no---usr,	part-has-no-fstab,	not-sep-usr,	standard,	farbios,	notbiosboot, /mnt/boot-sav/sdb11.
sdc1	: sdc,	not-sepboot,	no-grubenv	nogrub,	no-docgrub,	no-update-grub,	32,	no-boot,	is-os,	not--efi--part,	part-has-no-fstab,	part-has-no-fstab,	ntldr,	no-winload,	no-recov-nor-hid,	no-bmgr,	notwinboot,	nopakmgr,	nogrubinstall,	no---usr,	part-has-no-fstab,	not-sep-usr,	standard,	not-far,	notbiosboot, /mnt/boot-sav/sdc1.
sdc5	: sdc,	maybesepboot,	no-grubenv	nogrub,	no-docgrub,	no-update-grub,	32,	no-boot,	no-os,	not--efi--part,	part-has-no-fstab,	part-has-no-fstab,	no-nt,	no-winload,	no-recov-nor-hid,	no-bmgr,	notwinboot,	nopakmgr,	nogrubinstall,	no---usr,	part-has-no-fstab,	not-sep-usr,	standard,	farbios,	notbiosboot, /media/Data.
sdc6	: sdc,	maybesepboot,	no-grubenv	nogrub,	no-docgrub,	no-update-grub,	32,	no-boot,	no-os,	not--efi--part,	part-has-no-fstab,	part-has-no-fstab,	no-nt,	no-winload,	no-recov-nor-hid,	no-bmgr,	notwinboot,	nopakmgr,	nogrubinstall,	no---usr,	part-has-no-fstab,	not-sep-usr,	standard,	farbios,	notbiosboot, /mnt/boot-sav/sdc6.
sdc7	: sdc,	maybesepboot,	no-grubenv	nogrub,	no-docgrub,	no-update-grub,	32,	no-boot,	no-os,	not--efi--part,	part-has-no-fstab,	part-has-no-fstab,	no-nt,	no-winload,	no-recov-nor-hid,	no-bmgr,	notwinboot,	nopakmgr,	nogrubinstall,	no---usr,	part-has-no-fstab,	not-sep-usr,	standard,	farbios,	notbiosboot, /mnt/boot-sav/sdc7.
sdc8	: sdc,	maybesepboot,	no-grubenv	nogrub,	no-docgrub,	no-update-grub,	32,	no-boot,	no-os,	not--efi--part,	part-has-no-fstab,	part-has-no-fstab,	no-nt,	no-winload,	no-recov-nor-hid,	no-bmgr,	notwinboot,	nopakmgr,	nogrubinstall,	no---usr,	part-has-no-fstab,	not-sep-usr,	standard,	farbios,	notbiosboot, /media/SH.
sdc9	: sdc,	not-sepboot,	grubenv-ok	grub2,	grub-pc ,	update-grub,	64,	with-boot,	is-os,	not--efi--part,	fstab-without-boot,	fstab-without-efi,	no-nt,	no-winload,	no-recov-nor-hid,	no-bmgr,	notwinboot,	apt-get,	grub-install,	with--usr,	fstab-without-usr,	not-sep-usr,	standard,	farbios,	notbiosboot, /mnt/boot-sav/sdc9.
sdc11	: sdc,	not-sepboot,	grubenv-ok	grub2,	grub-pc ,	update-grub,	64,	with-boot,	is-os,	not--efi--part,	fstab-without-boot,	fstab-without-efi,	no-nt,	no-winload,	no-recov-nor-hid,	no-bmgr,	notwinboot,	apt-get,	grub-install,	with--usr,	fstab-without-usr,	not-sep-usr,	standard,	farbios,	notbiosboot, /mnt/boot-sav/sdc11.
sdc12	: sdc,	not-sepboot,	no-grubenv	nogrub,	no-docgrub,	no-update-grub,	32,	no-boot,	no-os,	not--efi--part,	part-has-no-fstab,	part-has-no-fstab,	no-nt,	no-winload,	no-recov-nor-hid,	no-bmgr,	notwinboot,	nopakmgr,	nogrubinstall,	no---usr,	part-has-no-fstab,	not-sep-usr,	standard,	farbios,	notbiosboot, /mnt/boot-sav/sdc12.
sdc13	: sdc,	maybesepboot,	no-grubenv	nogrub,	no-docgrub,	no-update-grub,	32,	no-boot,	no-os,	not--efi--part,	part-has-no-fstab,	part-has-no-fstab,	no-nt,	no-winload,	no-recov-nor-hid,	no-bmgr,	notwinboot,	nopakmgr,	nogrubinstall,	no---usr,	part-has-no-fstab,	not-sep-usr,	standard,	farbios,	notbiosboot, /home.
sdc14	: sdc,	maybesepboot,	no-grubenv	nogrub,	no-docgrub,	no-update-grub,	32,	no-boot,	no-os,	not--efi--part,	part-has-no-fstab,	part-has-no-fstab,	no-nt,	no-winload,	no-recov-nor-hid,	no-bmgr,	notwinboot,	nopakmgr,	nogrubinstall,	no---usr,	part-has-no-fstab,	not-sep-usr,	standard,	farbios,	notbiosboot, /var.
sdd2	: sdd,	maybesepboot,	no-grubenv	nogrub,	no-docgrub,	no-update-grub,	32,	no-boot,	no-os,	not--efi--part,	part-has-no-fstab,	part-has-no-fstab,	no-nt,	no-winload,	no-recov-nor-hid,	no-bmgr,	notwinboot,	nopakmgr,	nogrubinstall,	no---usr,	part-has-no-fstab,	not-sep-usr,	standard,	not-far,	notbiosboot, /mnt/boot-sav/sdd2.
sdd5	: sdd,	maybesepboot,	no-grubenv	nogrub,	no-docgrub,	no-update-grub,	32,	no-boot,	no-os,	not--efi--part,	part-has-no-fstab,	part-has-no-fstab,	no-nt,	no-winload,	no-recov-nor-hid,	no-bmgr,	notwinboot,	nopakmgr,	nogrubinstall,	no---usr,	part-has-no-fstab,	not-sep-usr,	standard,	not-far,	notbiosboot, /mnt/boot-sav/sdd5.
sdd6	: sdd,	maybesepboot,	no-grubenv	nogrub,	no-docgrub,	no-update-grub,	32,	no-boot,	no-os,	not--efi--part,	part-has-no-fstab,	part-has-no-fstab,	no-nt,	no-winload,	no-recov-nor-hid,	no-bmgr,	notwinboot,	nopakmgr,	nogrubinstall,	no---usr,	part-has-no-fstab,	not-sep-usr,	standard,	farbios,	notbiosboot, /mnt/boot-sav/sdd6.
sde1	: sde,	not-sepboot,	no-grubenv	nogrub,	no-docgrub,	no-update-grub,	32,	no-boot,	no-os,	is-correct-EFI,	part-has-no-fstab,	part-has-no-fstab,	no-nt,	no-winload,	no-recov-nor-hid,	no-bmgr,	notwinboot,	nopakmgr,	nogrubinstall,	no---usr,	part-has-no-fstab,	not-sep-usr,	standard,	not-far,	notbiosboot, /mnt/boot-sav/sde1.
sde2	: sde,	not-sepboot,	grubenv-ok	grub2,	signed grub-pc grub-efi ,	update-grub,	64,	with-boot,	is-os,	not--efi--part,	fstab-without-boot,	fstab-has-goodEFI,	no-nt,	no-winload,	no-recov-nor-hid,	no-bmgr,	notwinboot,	apt-get,	grub-install,	with--usr,	fstab-without-usr,	not-sep-usr,	standard,	farbios,	notbiosboot, /mnt/boot-sav/sde2.

sdd	: not-GPT,	BIOSboot-not-needed,	has-no-EFIpart, 	not-usb,	not-mmc, has-os,	63 sectors * 512 bytes
sda	: not-GPT,	BIOSboot-not-needed,	has-no-EFIpart, 	not-usb,	not-mmc, has-os,	63 sectors * 512 bytes
sdb	: not-GPT,	BIOSboot-not-needed,	has-no-EFIpart, 	not-usb,	not-mmc, has-os,	63 sectors * 512 bytes
sdc	: not-GPT,	BIOSboot-not-needed,	has-no-EFIpart, 	not-usb,	not-mmc, has-os,	2048 sectors * 512 bytes
sde	: GPT,	no-BIOS_boot,	has-correctEFI, 	not-usb,	not-mmc, has-os,	2048 sectors * 512 bytes


=================== parted -lm:

BYT;
/dev/sda:1000GB:scsi:512:4096:msdos:ATA ST1000DM003-1ER1:;
1:32.3kB:400GB:400GB:ext4::boot;
2:400GB:500GB:100GB:ext4::;
3:500GB:600GB:100GB:ext4::;
4:600GB:1000GB:400GB:::;
5:600GB:621GB:21.0GB:ext4::;
6:621GB:629GB:8000MB:linux-swap(v1)::;
7:629GB:682GB:52.4GB:ext4::;
8:682GB:689GB:6999MB:linux-swap(v1)::;
9:689GB:710GB:21.8GB:ext4::;
10:710GB:752GB:41.9GB:ext4::;
11:752GB:759GB:6291MB:ext4::;
12:759GB:774GB:15.0GB:ext4::;
13:774GB:789GB:15.7GB:ext4::;
14:789GB:800GB:10.5GB:ext4::;
15:800GB:810GB:10.5GB:ext4::;
16:810GB:857GB:47.1GB:ext4::;
17:868GB:980GB:112GB:ext4::;

BYT;
/dev/sdb:1000GB:scsi:512:4096:msdos:ATA ST1000DM003-1CH1:;
1:32.3kB:8390MB:8390MB:ntfs::boot;
2:8390MB:66.1GB:57.7GB:ntfs::;
3:66.1GB:193GB:127GB:ext4::;
4:193GB:1000GB:807GB:::;
5:193GB:225GB:31.5GB:ext4::;
6:225GB:233GB:8389MB:linux-swap(v1)::;
7:233GB:663GB:429GB:ext4::;
8:663GB:877GB:215GB:ext4::;
9:877GB:884GB:6442MB:ext4::;
10:884GB:911GB:26.8GB:ext4::;
11:911GB:921GB:10.7GB:ext4::;

BYT;
/dev/sdc:1000GB:scsi:512:4096:msdos:ATA ST1000DM003-1SB1:;
1:1049kB:41.9GB:41.9GB:ntfs::boot;
2:41.9GB:1000GB:958GB:::;
5:41.9GB:471GB:429GB:ext4::;
6:471GB:686GB:215GB:ext4::;
7:686GB:707GB:21.0GB:ext4::;
8:707GB:713GB:6291MB:ext4::;
9:713GB:754GB:40.9GB:ext4::;
10:754GB:759GB:4295MB:linux-swap(v1)::;
11:759GB:790GB:31.5GB:ext4::;
12:790GB:846GB:55.7GB:ntfs::;
13:855GB:881GB:26.8GB:ext4::;
14:881GB:892GB:10.7GB:ext4::;

BYT;
/dev/sdd:250GB:scsi:512:512:msdos:ATA Samsung SSD 860:;
1:32.3kB:41.7GB:41.7GB:ext4::boot;
2:41.7GB:56.7GB:15.0GB:ext4::;
3:56.7GB:250GB:193GB:::;
5:56.7GB:66.7GB:9999MB:ext4::;
6:66.7GB:250GB:183GB:ext4::;

BYT;
/dev/sde:500GB:scsi:512:512:gpt:ATA Samsung SSD 860:;
1:1049kB:538MB:537MB:fat32:EFI System Partition:boot, esp;
2:538MB:500GB:500GB:ext4::;

=================== lsblk:
KNAME TYPE FSTYPE   SIZE LABEL
loop0 loop         31,5K
sda   disk        931,5G
sda1  part ext4   372,6G film
sda2  part ext4    93,2G U18.04-a2-64b
sda3  part ext4    93,2G les-homes
sda4  part            1K
sda5  part ext4    19,5G U14.04-a5-64b
sda6  part swap     7,5G
sda7  part ext4    48,8G U16.04-a7-32b
sda8  part swap     6,5G
sda9  part ext4    20,3G X16.04-a9-32b
sda10 part ext4    39,1G U16.04-P10-64b
sda11 part ext4     5,9G ex-SH
sda12 part ext4      14G M16.04-a12-64b
sda13 part ext4    14,7G h_SDD
sda14 part ext4     9,8G v_SDD
sda15 part ext4     9,8G Solf
sdb   disk        931,5G
sdb1  part ntfs     7,8G XP-b1
sdb2  part ntfs    53,7G s-Z-b2
sdb3  part ext4   118,5G s-les-homes
sdb4  part            1K
sdb5  part ext4    29,3G U16.04-b5-64b
sdb6  part swap     7,8G
sdb7  part ext4     400G s-Data
sdb8  part ext4     200G s-Photos
sdb9  part ext4       6G s-SH
sdb10 part ext4      25G s-home_SDD
sdb11 part ext4      10G s-var_SDD
sdc   disk        931,5G
sdc1  part ntfs    39,1G XP-c1
sdc2  part            1K
sdc5  part ext4     400G Data
sdc6  part ext4     200G Photos
sdc7  part ext4    19,5G home-c11
sdc8  part ext4     5,9G SH
sdc9  part ext4    38,1G gnome
sdc10 part swap       4G
sdc11 part ext4    29,3G U18-04-c11
sdc12 part ntfs    51,9G Z-c12
sdc13 part ext4    24,9G home_SDD
sdc14 part ext4      10G var_SDD
sdd   disk        232,9G
sdd1  part ext4    38,8G U18.04-d1
sdd2  part ext4      14G ex-home-d2
sdd3  part            1K
sdd5  part ext4     9,3G ex-var-d5
sdd6  part ext4   170,8G
sde   disk        465,8G
sde1  part vfat     512M
sde2  part ext4   465,3G 18-4-EFI
sda16 part ext4    43,9G ISOS
sda17 part ext4   104,2G filmJPL

KNAME ROTA RO RM STATE   MOUNTPOINT
loop0    1  1  0
sda      1  0  0 running
sda1     1  0  0         /mnt/boot-sav/sda1
sda2     1  0  0         /mnt/boot-sav/sda2
sda3     1  0  0         /mnt/boot-sav/sda3
sda4     1  0  0
sda5     1  0  0         /mnt/boot-sav/sda5
sda6     1  0  0
sda7     1  0  0         /mnt/boot-sav/sda7
sda8     1  0  0
sda9     1  0  0         /mnt/boot-sav/sda9
sda10    1  0  0         /mnt/boot-sav/sda10
sda11    1  0  0         /mnt/boot-sav/sda11
sda12    1  0  0         /mnt/boot-sav/sda12
sda13    1  0  0         /mnt/boot-sav/sda13
sda14    1  0  0         /mnt/boot-sav/sda14
sda15    1  0  0         /mnt/boot-sav/sda15
sdb      1  0  0 running
sdb1     1  0  0         /mnt/boot-sav/sdb1
sdb2     1  0  0         /mnt/boot-sav/sdb2
sdb3     1  0  0         /mnt/boot-sav/sdb3
sdb4     1  0  0
sdb5     1  0  0         /mnt/boot-sav/sdb5
sdb6     1  0  0
sdb7     1  0  0         /mnt/boot-sav/sdb7
sdb8     1  0  0         /mnt/boot-sav/sdb8
sdb9     1  0  0         /mnt/boot-sav/sdb9
sdb10    1  0  0         /mnt/boot-sav/sdb10
sdb11    1  0  0         /mnt/boot-sav/sdb11
sdc      1  0  0 running
sdc1     1  0  0         /mnt/boot-sav/sdc1
sdc2     1  0  0
sdc5     1  0  0         /media/Data
sdc6     1  0  0         /mnt/boot-sav/sdc6
sdc7     1  0  0         /mnt/boot-sav/sdc7
sdc8     1  0  0         /media/SH
sdc9     1  0  0         /mnt/boot-sav/sdc9
sdc10    1  0  0
sdc11    1  0  0         /mnt/boot-sav/sdc11
sdc12    1  0  0         /mnt/boot-sav/sdc12
sdc13    1  0  0         /home
sdc14    1  0  0         /var
sdd      0  0  0 running
sdd1     0  0  0         /
sdd2     0  0  0         /mnt/boot-sav/sdd2
sdd3     0  0  0
sdd5     0  0  0         /mnt/boot-sav/sdd5
sdd6     0  0  0         /mnt/boot-sav/sdd6
sde      0  0  0 running
sde1     0  0  0         /mnt/boot-sav/sde1
sde2     0  0  0         /mnt/boot-sav/sde2
sda16    1  0  0         /media/ISOS
sda17    1  0  0         /mnt/boot-sav/sda17


=================== mount:
sysfs on /sys type sysfs (rw,nosuid,nodev,noexec,relatime)
proc on /proc type proc (rw,nosuid,nodev,noexec,relatime)
udev on /dev type devtmpfs (rw,nosuid,relatime,size=1942776k,nr_inodes=485694,mode=755)
devpts on /dev/pts type devpts (rw,nosuid,noexec,relatime,gid=5,mode=620,ptmxmode=000)
tmpfs on /run type tmpfs (rw,nosuid,noexec,relatime,size=393036k,mode=755)
/dev/sdd1 on / type ext4 (rw,relatime,errors=remount-ro,data=ordered)
securityfs on /sys/kernel/security type securityfs (rw,nosuid,nodev,noexec,relatime)
tmpfs on /dev/shm type tmpfs (rw,nosuid,nodev)
tmpfs on /run/lock type tmpfs (rw,nosuid,nodev,noexec,relatime,size=5120k)
tmpfs on /sys/fs/cgroup type tmpfs (ro,nosuid,nodev,noexec,mode=755)
cgroup on /sys/fs/cgroup/unified type cgroup2 (rw,nosuid,nodev,noexec,relatime,nsdelegate)
cgroup on /sys/fs/cgroup/systemd type cgroup (rw,nosuid,nodev,noexec,relatime,xattr,name=systemd)
pstore on /sys/fs/pstore type pstore (rw,nosuid,nodev,noexec,relatime)
cgroup on /sys/fs/cgroup/pids type cgroup (rw,nosuid,nodev,noexec,relatime,pids)
cgroup on /sys/fs/cgroup/perf_event type cgroup (rw,nosuid,nodev,noexec,relatime,perf_event)
cgroup on /sys/fs/cgroup/hugetlb type cgroup (rw,nosuid,nodev,noexec,relatime,hugetlb)
cgroup on /sys/fs/cgroup/net_cls,net_prio type cgroup (rw,nosuid,nodev,noexec,relatime,net_cls,net_prio)
cgroup on /sys/fs/cgroup/memory type cgroup (rw,nosuid,nodev,noexec,relatime,memory)
cgroup on /sys/fs/cgroup/cpuset type cgroup (rw,nosuid,nodev,noexec,relatime,cpuset)
cgroup on /sys/fs/cgroup/cpu,cpuacct type cgroup (rw,nosuid,nodev,noexec,relatime,cpu,cpuacct)
cgroup on /sys/fs/cgroup/blkio type cgroup (rw,nosuid,nodev,noexec,relatime,blkio)
cgroup on /sys/fs/cgroup/freezer type cgroup (rw,nosuid,nodev,noexec,relatime,freezer)
cgroup on /sys/fs/cgroup/devices type cgroup (rw,nosuid,nodev,noexec,relatime,devices)
cgroup on /sys/fs/cgroup/rdma type cgroup (rw,nosuid,nodev,noexec,relatime,rdma)
debugfs on /sys/kernel/debug type debugfs (rw,relatime)
systemd-1 on /proc/sys/fs/binfmt_misc type autofs (rw,relatime,fd=40,pgrp=1,timeout=0,minproto=5,maxproto=5,direct,pipe_ino=2737)
hugetlbfs on /dev/hugepages type hugetlbfs (rw,relatime,pagesize=2M)
mqueue on /dev/mqueue type mqueue (rw,relatime)
fusectl on /sys/fs/fuse/connections type fusectl (rw,relatime)
configfs on /sys/kernel/config type configfs (rw,relatime)
/dev/sda16 on /media/ISOS type ext4 (rw,relatime,data=ordered)
/dev/sdc13 on /home type ext4 (rw,relatime,data=ordered)
/dev/sdc8 on /media/SH type ext4 (rw,relatime,data=ordered)
/dev/sdc5 on /media/Data type ext4 (rw,relatime,data=ordered)
/dev/sdc14 on /var type ext4 (rw,relatime,data=ordered)
tmpfs on /run/user/120 type tmpfs (rw,nosuid,nodev,relatime,size=393032k,mode=700,uid=120,gid=126)
tmpfs on /run/user/1000 type tmpfs (rw,nosuid,nodev,relatime,size=393032k,mode=700,uid=1000,gid=1000)
gvfsd-fuse on /run/user/1000/gvfs type fuse.gvfsd-fuse (rw,nosuid,nodev,relatime,user_id=1000,group_id=1000)
/dev/fuse on /root/.cache/doc type fuse (rw,nosuid,nodev,relatime,user_id=0,group_id=0)
gvfsd-fuse on /root/.gvfs type fuse.gvfsd-fuse (rw,nosuid,nodev,relatime,user_id=0,group_id=0)
/dev/sda1 on /mnt/boot-sav/sda1 type ext4 (rw,relatime,data=ordered)
/dev/sda2 on /mnt/boot-sav/sda2 type ext4 (rw,relatime,stripe=32730,data=ordered)
/dev/sda3 on /mnt/boot-sav/sda3 type ext4 (rw,relatime,data=ordered)
/dev/sda5 on /mnt/boot-sav/sda5 type ext4 (rw,relatime,data=ordered)
/dev/sda7 on /mnt/boot-sav/sda7 type ext4 (rw,relatime,data=ordered)
/dev/sda9 on /mnt/boot-sav/sda9 type ext4 (rw,relatime,stripe=32650,data=ordered)
/dev/sda10 on /mnt/boot-sav/sda10 type ext4 (rw,relatime,stripe=32624,data=ordered)
/dev/sda11 on /mnt/boot-sav/sda11 type ext4 (rw,relatime,data=ordered)
/dev/sda12 on /mnt/boot-sav/sda12 type ext4 (rw,relatime,stripe=32603,data=ordered)
/dev/sda13 on /mnt/boot-sav/sda13 type ext4 (rw,relatime,data=ordered)
/dev/sda14 on /mnt/boot-sav/sda14 type ext4 (rw,relatime,data=ordered)
/dev/sda15 on /mnt/boot-sav/sda15 type ext4 (rw,relatime,data=ordered)
/dev/sda17 on /mnt/boot-sav/sda17 type ext4 (rw,relatime,data=ordered)
/dev/sdb1 on /mnt/boot-sav/sdb1 type fuseblk (rw,relatime,user_id=0,group_id=0,allow_other,blksize=4096)
/dev/sdb2 on /mnt/boot-sav/sdb2 type fuseblk (rw,relatime,user_id=0,group_id=0,allow_other,blksize=4096)
/dev/sdb3 on /mnt/boot-sav/sdb3 type ext4 (rw,relatime,data=ordered)
/dev/sdb5 on /mnt/boot-sav/sdb5 type ext4 (rw,relatime,stripe=32667,data=ordered)
/dev/sdb7 on /mnt/boot-sav/sdb7 type ext4 (rw,relatime,data=ordered)
/dev/sdb8 on /mnt/boot-sav/sdb8 type ext4 (rw,relatime,data=ordered)
/dev/sdb9 on /mnt/boot-sav/sdb9 type ext4 (rw,relatime,data=ordered)
/dev/sdb10 on /mnt/boot-sav/sdb10 type ext4 (rw,relatime,data=ordered)
/dev/sdb11 on /mnt/boot-sav/sdb11 type ext4 (rw,relatime,data=ordered)
/dev/sdc1 on /mnt/boot-sav/sdc1 type fuseblk (rw,relatime,user_id=0,group_id=0,allow_other,blksize=4096)
/dev/sdc6 on /mnt/boot-sav/sdc6 type ext4 (rw,relatime,stripe=32732,data=ordered)
/dev/sdc7 on /mnt/boot-sav/sdc7 type ext4 (rw,relatime,data=ordered)
/dev/sdc9 on /mnt/boot-sav/sdc9 type ext4 (rw,relatime,data=ordered)
/dev/sdc11 on /mnt/boot-sav/sdc11 type ext4 (rw,relatime,data=ordered)
/dev/sdc12 on /mnt/boot-sav/sdc12 type fuseblk (rw,relatime,user_id=0,group_id=0,allow_other,blksize=4096)
/dev/sdd2 on /mnt/boot-sav/sdd2 type ext4 (rw,relatime,data=ordered)
/dev/sdd5 on /mnt/boot-sav/sdd5 type ext4 (rw,relatime,data=ordered)
/dev/sdd6 on /mnt/boot-sav/sdd6 type ext4 (rw,relatime,data=ordered)
/dev/sde1 on /mnt/boot-sav/sde1 type vfat (rw,relatime,fmask=0022,dmask=0022,codepage=437,iocharset=iso8859-1,shortname=mixed,errors=remount-ro)
/dev/sde2 on /mnt/boot-sav/sde2 type ext4 (rw,relatime,data=ordered)


=================== ls:
/sys/block/sda (filtered):  alignment_offset bdi capability dev device discard_alignment events events_async events_poll_msecs ext_range hidden holders inflight integrity power queue range removable ro sda1 sda10 sda11 sda12 sda13 sda14 sda15 sda16 sda17 sda2 sda3 sda4 sda5 sda6 sda7 sda8 sda9 size slaves stat subsystem trace uevent
/sys/block/sdb (filtered):  alignment_offset bdi capability dev device discard_alignment events events_async events_poll_msecs ext_range hidden holders inflight integrity power queue range removable ro sdb1 sdb10 sdb11 sdb2 sdb3 sdb4 sdb5 sdb6 sdb7 sdb8 sdb9 size slaves stat subsystem trace uevent
/sys/block/sdc (filtered):  alignment_offset bdi capability dev device discard_alignment events events_async events_poll_msecs ext_range hidden holders inflight integrity power queue range removable ro sdc1 sdc10 sdc11 sdc12 sdc13 sdc14 sdc2 sdc5 sdc6 sdc7 sdc8 sdc9 size slaves stat subsystem trace uevent
/sys/block/sdd (filtered):  alignment_offset bdi capability dev device discard_alignment events events_async events_poll_msecs ext_range hidden holders inflight integrity power queue range removable ro sdd1 sdd2 sdd3 sdd5 sdd6 size slaves stat subsystem trace uevent
/sys/block/sde (filtered):  alignment_offset bdi capability dev device discard_alignment events events_async events_poll_msecs ext_range hidden holders inflight integrity power queue range removable ro sde1 sde2 size slaves stat subsystem trace uevent
/dev (filtered):  autofs block bsg btrfs-control bus char console core cpu cpu_dma_latency cuse disk dmmidi2 dri drm_dp_aux0 ecryptfs fb0 fd full fuse hidraw0 hidraw1 hpet hugepages hwrng i2c-0 i2c-1 i2c-2 i2c-3 initctl input kmsg kvm lightnvm log lp0 mapper mcelog media0 mei0 mem memory_bandwidth midi2 mqueue net network_latency network_throughput null parport0 port ppp psaux ptmx pts random rfkill rtc rtc0 sda sda1 sda10 sda11 sda12 sda13 sda14 sda15 sda16 sda17 sda2 sda3 sda4 sda5 sda6 sda7 sda8 sda9 sdb sdb1 sdb10 sdb11 sdb2 sdb3 sdb4 sdb5 sdb6 sdb7 sdb8 sdb9 sdc sdc1 sdc10 sdc11 sdc12 sdc13 sdc14 sdc2 sdc5 sdc6 sdc7 sdc8 sdc9 sdd sdd1 sdd2 sdd3 sdd5 sdd6 sde sde1 sde2 sg0 sg1 sg2 sg3 sg4 shm snapshot snd stderr stdin stdout uhid uinput urandom usb userio v4l vfio vga_arbiter vhci vhost-net vhost-vsock video0 zero
ls /dev/mapper:  control

=================== hexdump -n512 -C /dev/sdb1
00000000  eb 52 90 4e 54 46 53 20  20 20 20 00 02 08 00 00  |.R.NTFS    .....|
00000010  00 00 00 00 00 f8 00 00  3f 00 ff 00 3f 00 00 00  |........?...?...|
00000020  00 00 00 00 80 00 80 00  c0 07 fa 00 00 00 00 00  |................|
00000030  04 00 00 00 00 00 00 00  7c a0 0f 00 00 00 00 00  |........|.......|
00000040  f6 00 00 00 01 00 00 00  4b 27 45 4e ed f8 f8 0a  |........K'EN....|
00000050  00 00 00 00 fa 33 c0 8e  d0 bc 00 7c fb b8 c0 07  |.....3.....|....|
00000060  8e d8 e8 16 00 b8 00 0d  8e c0 33 db c6 06 0e 00  |..........3.....|
00000070  10 e8 53 00 68 00 0d 68  6a 02 cb 8a 16 24 00 b4  |..S.h..hj....$..|
00000080  08 cd 13 73 05 b9 ff ff  8a f1 66 0f b6 c6 40 66  |...s......f...@f|
00000090  0f b6 d1 80 e2 3f f7 e2  86 cd c0 ed 06 41 66 0f  |.....?.......Af.|
000000a0  b7 c9 66 f7 e1 66 a3 20  00 c3 b4 41 bb aa 55 8a  |..f..f. ...A..U.|
000000b0  16 24 00 cd 13 72 0f 81  fb 55 aa 75 09 f6 c1 01  |.$...r...U.u....|
000000c0  74 04 fe 06 14 00 c3 66  60 1e 06 66 a1 10 00 66  |t......f`..f...f|
000000d0  03 06 1c 00 66 3b 06 20  00 0f 82 3a 00 1e 66 6a  |....f;. ...:..fj|
000000e0  00 66 50 06 53 66 68 10  00 01 00 80 3e 14 00 00  |.fP.Sfh.....>...|
000000f0  0f 85 0c 00 e8 b3 ff 80  3e 14 00 00 0f 84 61 00  |........>.....a.|
00000100  b4 42 8a 16 24 00 16 1f  8b f4 cd 13 66 58 5b 07  |.B..$.......fX[.|
00000110  66 58 66 58 1f eb 2d 66  33 d2 66 0f b7 0e 18 00  |fXfX..-f3.f.....|
00000120  66 f7 f1 fe c2 8a ca 66  8b d0 66 c1 ea 10 f7 36  |f......f..f....6|
00000130  1a 00 86 d6 8a 16 24 00  8a e8 c0 e4 06 0a cc b8  |......$.........|
00000140  01 02 cd 13 0f 82 19 00  8c c0 05 20 00 8e c0 66  |........... ...f|
00000150  ff 06 10 00 ff 0e 0e 00  0f 85 6f ff 07 1f 66 61  |..........o...fa|
00000160  c3 a0 f8 01 e8 09 00 a0  fb 01 e8 03 00 fb eb fe  |................|
00000170  b4 01 8b f0 ac 3c 00 74  09 b4 0e bb 07 00 cd 10  |.....<.t........|
00000180  eb f2 c3 0d 0a 45 72 72  2e 20 6c 65 63 74 75 72  |.....Err. lectur|
00000190  65 20 64 69 73 71 75 65  00 0d 0a 4e 54 4c 44 52  |e disque...NTLDR|
000001a0  20 6d 61 6e 71 75 65 00  0d 0a 4e 54 4c 44 52 20  | manque...NTLDR |
000001b0  65 73 74 20 63 6f 6d 70  72 65 73 73 82 00 0d 0a  |est compress....|
000001c0  45 6e 74 72 65 7a 20 43  74 72 6c 2b 41 6c 74 2b  |Entrez Ctrl+Alt+|
000001d0  53 75 70 70 72 20 70 6f  75 72 20 72 65 64 82 6d  |Suppr pour red.m|
000001e0  61 72 72 65 72 0d 0a 00  0d 0a 00 00 00 00 00 00  |arrer...........|
000001f0  00 00 00 00 00 00 00 00  83 99 a8 be 00 00 55 aa  |..............U.|
00000200

=================== hexdump -n512 -C /dev/sdb2
00000000  eb 52 90 4e 54 46 53 20  20 20 20 00 02 08 00 00  |.R.NTFS    .....|
00000010  00 00 00 00 00 f8 00 00  3f 00 ff 00 00 08 fa 00  |........?.......|
00000020  00 00 00 00 80 00 80 00  f8 bf b6 06 00 00 00 00  |................|
00000030  04 00 00 00 00 00 00 00  f5 01 78 00 00 00 00 00  |..........x.....|
00000040  f6 00 00 00 01 00 00 00  c7 59 41 38 4c 20 2b 67  |.........YA8L +g|
00000050  00 00 00 00 fa 33 c0 8e  d0 bc 00 7c fb 68 c0 07  |.....3.....|.h..|
00000060  1f 1e 68 66 00 cb 88 16  0e 00 66 81 3e 03 00 4e  |..hf......f.>..N|
00000070  54 46 53 75 15 b4 41 bb  aa 55 cd 13 72 0c 81 fb  |TFSu..A..U..r...|
00000080  55 aa 75 06 f7 c1 01 00  75 03 e9 d2 00 1e 83 ec  |U.u.....u.......|
00000090  18 68 1a 00 b4 48 8a 16  0e 00 8b f4 16 1f cd 13  |.h...H..........|
000000a0  9f 83 c4 18 9e 58 1f 72  e1 3b 06 0b 00 75 db a3  |.....X.r.;...u..|
000000b0  0f 00 c1 2e 0f 00 04 1e  5a 33 db b9 00 20 2b c8  |........Z3... +.|
000000c0  66 ff 06 11 00 03 16 0f  00 8e c2 ff 06 16 00 e8  |f...............|
000000d0  40 00 2b c8 77 ef b8 00  bb cd 1a 66 23 c0 75 2d  |@.+.w......f#.u-|
000000e0  66 81 fb 54 43 50 41 75  24 81 f9 02 01 72 1e 16  |f..TCPAu$....r..|
000000f0  68 07 bb 16 68 70 0e 16  68 09 00 66 53 66 53 66  |h...hp..h..fSfSf|
00000100  55 16 16 16 68 b8 01 66  61 0e 07 cd 1a e9 6a 01  |U...h..fa.....j.|
00000110  90 90 66 60 1e 06 66 a1  11 00 66 03 06 1c 00 1e  |..f`..f...f.....|
00000120  66 68 00 00 00 00 66 50  06 53 68 01 00 68 10 00  |fh....fP.Sh..h..|
00000130  b4 42 8a 16 0e 00 16 1f  8b f4 cd 13 66 59 5b 5a  |.B..........fY[Z|
00000140  66 59 66 59 1f 0f 82 16  00 66 ff 06 11 00 03 16  |fYfY.....f......|
00000150  0f 00 8e c2 ff 0e 16 00  75 bc 07 1f 66 61 c3 a0  |........u...fa..|
00000160  f8 01 e8 08 00 a0 fb 01  e8 02 00 eb fe b4 01 8b  |................|
00000170  f0 ac 3c 00 74 09 b4 0e  bb 07 00 cd 10 eb f2 c3  |..<.t...........|
00000180  0d 0a 41 20 64 69 73 6b  20 72 65 61 64 20 65 72  |..A disk read er|
00000190  72 6f 72 20 6f 63 63 75  72 72 65 64 00 0d 0a 42  |ror occurred...B|
000001a0  4f 4f 54 4d 47 52 20 69  73 20 6d 69 73 73 69 6e  |OOTMGR is missin|
000001b0  67 00 0d 0a 42 4f 4f 54  4d 47 52 20 69 73 20 63  |g...BOOTMGR is c|
000001c0  6f 6d 70 72 65 73 73 65  64 00 0d 0a 50 72 65 73  |ompressed...Pres|
000001d0  73 20 43 74 72 6c 2b 41  6c 74 2b 44 65 6c 20 74  |s Ctrl+Alt+Del t|
000001e0  6f 20 72 65 73 74 61 72  74 0d 0a 00 00 00 00 00  |o restart.......|
000001f0  00 00 00 00 00 00 00 00  80 9d b2 ca 00 00 55 aa  |..............U.|
00000200

=================== hexdump -n512 -C /dev/sdc1
00000000  eb 52 90 4e 54 46 53 20  20 20 20 00 02 08 00 00  |.R.NTFS    .....|
00000010  00 00 00 00 00 f8 00 00  3f 00 ff 00 3f 00 00 00  |........?...?...|
00000020  00 00 00 00 80 00 80 00  b8 ff e1 04 00 00 00 00  |................|
00000030  00 00 0c 00 00 00 00 00  fb 1f 4e 00 00 00 00 00  |..........N.....|
00000040  f6 00 00 00 01 00 00 00  e4 30 44 68 72 44 68 78  |.........0DhrDhx|
00000050  00 00 00 00 fa 33 c0 8e  d0 bc 00 7c fb b8 c0 07  |.....3.....|....|
00000060  8e d8 e8 16 00 b8 00 0d  8e c0 33 db c6 06 0e 00  |..........3.....|
00000070  10 e8 53 00 68 00 0d 68  6a 02 cb 8a 16 24 00 b4  |..S.h..hj....$..|
00000080  08 cd 13 73 05 b9 ff ff  8a f1 66 0f b6 c6 40 66  |...s......f...@f|
00000090  0f b6 d1 80 e2 3f f7 e2  86 cd c0 ed 06 41 66 0f  |.....?.......Af.|
000000a0  b7 c9 66 f7 e1 66 a3 20  00 c3 b4 41 bb aa 55 8a  |..f..f. ...A..U.|
000000b0  16 24 00 cd 13 72 0f 81  fb 55 aa 75 09 f6 c1 01  |.$...r...U.u....|
000000c0  74 04 fe 06 14 00 c3 66  60 1e 06 66 a1 10 00 66  |t......f`..f...f|
000000d0  03 06 1c 00 66 3b 06 20  00 0f 82 3a 00 1e 66 6a  |....f;. ...:..fj|
000000e0  00 66 50 06 53 66 68 10  00 01 00 80 3e 14 00 00  |.fP.Sfh.....>...|
000000f0  0f 85 0c 00 e8 b3 ff 80  3e 14 00 00 0f 84 61 00  |........>.....a.|
00000100  b4 42 8a 16 24 00 16 1f  8b f4 cd 13 66 58 5b 07  |.B..$.......fX[.|
00000110  66 58 66 58 1f eb 2d 66  33 d2 66 0f b7 0e 18 00  |fXfX..-f3.f.....|
00000120  66 f7 f1 fe c2 8a ca 66  8b d0 66 c1 ea 10 f7 36  |f......f..f....6|
00000130  1a 00 86 d6 8a 16 24 00  8a e8 c0 e4 06 0a cc b8  |......$.........|
00000140  01 02 cd 13 0f 82 19 00  8c c0 05 20 00 8e c0 66  |........... ...f|
00000150  ff 06 10 00 ff 0e 0e 00  0f 85 6f ff 07 1f 66 61  |..........o...fa|
00000160  c3 a0 f8 01 e8 09 00 a0  fb 01 e8 03 00 fb eb fe  |................|
00000170  b4 01 8b f0 ac 3c 00 74  09 b4 0e bb 07 00 cd 10  |.....<.t........|
00000180  eb f2 c3 0d 0a 45 72 72  2e 20 6c 65 63 74 75 72  |.....Err. lectur|
00000190  65 20 64 69 73 71 75 65  00 0d 0a 4e 54 4c 44 52  |e disque...NTLDR|
000001a0  20 6d 61 6e 71 75 65 00  0d 0a 4e 54 4c 44 52 20  | manque...NTLDR |
000001b0  65 73 74 20 63 6f 6d 70  72 65 73 73 82 00 0d 0a  |est compress....|
000001c0  45 6e 74 72 65 7a 20 43  74 72 6c 2b 41 6c 74 2b  |Entrez Ctrl+Alt+|
000001d0  53 75 70 70 72 20 70 6f  75 72 20 72 65 64 82 6d  |Suppr pour red.m|
000001e0  61 72 72 65 72 0d 0a 00  0d 0a 00 00 00 00 00 00  |arrer...........|
000001f0  00 00 00 00 00 00 00 00  83 99 a8 be 00 00 55 aa  |..............U.|
00000200

=================== hexdump -n512 -C /dev/sdc12
00000000  eb 52 90 4e 54 46 53 20  20 20 20 00 02 08 00 00  |.R.NTFS    .....|
00000010  00 00 00 00 00 f8 00 00  3f 00 ff 00 00 78 fc 5b  |........?....x.[|
00000020  00 00 00 00 80 00 80 00  f8 07 7b 06 00 00 00 00  |..........{.....|
00000030  04 00 00 00 00 00 00 00  7f 02 78 00 00 00 00 00  |..........x.....|
00000040  f6 00 00 00 01 00 00 00  6d 33 ef 5e a8 62 60 27  |........m3.^.b`'|
00000050  00 00 00 00 0e 1f be 71  7c ac 22 c0 74 0b 56 b4  |.......q|.".t.V.|
00000060  0e bb 07 00 cd 10 5e eb  f0 32 e4 cd 16 cd 19 eb  |......^..2......|
00000070  fe 54 68 69 73 20 69 73  20 6e 6f 74 20 61 20 62  |.This is not a b|
00000080  6f 6f 74 61 62 6c 65 20  64 69 73 6b 2e 20 50 6c  |ootable disk. Pl|
00000090  65 61 73 65 20 69 6e 73  65 72 74 20 61 20 62 6f  |ease insert a bo|
000000a0  6f 74 61 62 6c 65 20 66  6c 6f 70 70 79 20 61 6e  |otable floppy an|
000000b0  64 0d 0a 70 72 65 73 73  20 61 6e 79 20 6b 65 79  |d..press any key|
000000c0  20 74 6f 20 74 72 79 20  61 67 61 69 6e 20 2e 2e  | to try again ..|
000000d0  2e 20 0d 0a 00 00 00 00  00 00 00 00 00 00 00 00  |. ..............|
000000e0  00 00 00 00 00 00 00 00  00 00 00 00 00 00 00 00  |................|
*
000001f0  00 00 00 00 00 00 00 00  00 00 00 00 00 00 55 aa  |..............U.|
00000200

=================== hexdump -n512 -C /dev/sde1
00000000  eb 58 90 6d 6b 66 73 2e  66 61 74 00 02 08 20 00  |.X.mkfs.fat... .|
00000010  02 00 00 00 00 f8 00 00  3f 00 ff 00 00 08 00 00  |........?.......|
00000020  00 00 10 00 00 04 00 00  00 00 00 00 02 00 00 00  |................|
00000030  01 00 06 00 00 00 00 00  00 00 00 00 00 00 00 00  |................|
00000040  80 01 29 36 a4 d9 34 4e  4f 20 4e 41 4d 45 20 20  |..)6..4NO NAME  |
00000050  20 20 46 41 54 33 32 20  20 20 0e 1f be 77 7c ac  |  FAT32   ...w|.|
00000060  22 c0 74 0b 56 b4 0e bb  07 00 cd 10 5e eb f0 32  |".t.V.......^..2|
00000070  e4 cd 16 cd 19 eb fe 54  68 69 73 20 69 73 20 6e  |.......This is n|
00000080  6f 74 20 61 20 62 6f 6f  74 61 62 6c 65 20 64 69  |ot a bootable di|
00000090  73 6b 2e 20 20 50 6c 65  61 73 65 20 69 6e 73 65  |sk.  Please inse|
000000a0  72 74 20 61 20 62 6f 6f  74 61 62 6c 65 20 66 6c  |rt a bootable fl|
000000b0  6f 70 70 79 20 61 6e 64  0d 0a 70 72 65 73 73 20  |oppy and..press |
000000c0  61 6e 79 20 6b 65 79 20  74 6f 20 74 72 79 20 61  |any key to try a|
000000d0  67 61 69 6e 20 2e 2e 2e  20 0d 0a 00 00 00 00 00  |gain ... .......|
000000e0  00 00 00 00 00 00 00 00  00 00 00 00 00 00 00 00  |................|
*
000001f0  00 00 00 00 00 00 00 00  00 00 00 00 00 00 55 aa  |..............U.|
00000200
Failed to read extended partition table (offset=377511496): Invalid argument
Partition 1 does not start on physical sector boundary.
Partition 2 does not start on physical sector boundary.
Partition 3 does not start on physical sector boundary.
Partition 4 does not start on physical sector boundary.
Partition 1 does not start on physical sector boundary.
Partition 2 does not start on physical sector boundary.

=================== df -Th:

Filesystem     Type      Size  Used Avail Use% Mounted on
udev           devtmpfs  1.9G     0  1.9G   0% /dev
tmpfs          tmpfs     384M  2.3M  382M   1% /run
/dev/sdd1      ext4       38G  6.8G   30G  19% /
tmpfs          tmpfs     1.9G   57M  1.9G   3% /dev/shm
tmpfs          tmpfs     5.0M  4.0K  5.0M   1% /run/lock
tmpfs          tmpfs     1.9G     0  1.9G   0% /sys/fs/cgroup
/dev/sda16     ext4       44G   28G   14G  68% /media/ISOS
/dev/sdc13     ext4       25G   12G   12G  50% /home
/dev/sdc8      ext4      5.8G  333M  5.1G   7% /media/SH
/dev/sdc5      ext4      394G  291G   83G  78% /media/Data
/dev/sdc14     ext4      9.8G  2.1G  7.3G  22% /var
tmpfs          tmpfs     384M   16K  384M   1% /run/user/120
tmpfs          tmpfs     384M   52K  384M   1% /run/user/1000
/dev/sda1      ext4      367G  258G   91G  74% /mnt/boot-sav/sda1
/dev/sda2      ext4       92G   17G   71G  19% /mnt/boot-sav/sda2
/dev/sda3      ext4       92G   66G   22G  76% /mnt/boot-sav/sda3
/dev/sda5      ext4       20G  5.1G   14G  28% /mnt/boot-sav/sda5
/dev/sda7      ext4       48G  9.9G   36G  22% /mnt/boot-sav/sda7
/dev/sda9      ext4       20G  5.3G   14G  28% /mnt/boot-sav/sda9
/dev/sda10     ext4       39G   22G   15G  60% /mnt/boot-sav/sda10
/dev/sda11     ext4      5.7G  330M  5.1G   7% /mnt/boot-sav/sda11
/dev/sda12     ext4       14G  7.5G  5.6G  58% /mnt/boot-sav/sda12
/dev/sda13     ext4       15G  8.2G  5.5G  61% /mnt/boot-sav/sda13
/dev/sda14     ext4      9.6G  2.0G  7.1G  23% /mnt/boot-sav/sda14
/dev/sda15     ext4      9.6G  723M  8.4G   8% /mnt/boot-sav/sda15
/dev/sda17     ext4      103G   97G  1.1G  99% /mnt/boot-sav/sda17
/dev/sdb1      fuseblk   7.9G  5.1G  2.8G  65% /mnt/boot-sav/sdb1
/dev/sdb2      fuseblk    54G   51G  3.4G  94% /mnt/boot-sav/sdb2
/dev/sdb3      ext4      117G   34G   77G  31% /mnt/boot-sav/sdb3
/dev/sdb5      ext4       29G   23G  4.4G  85% /mnt/boot-sav/sdb5
/dev/sdb7      ext4      393G  305G   69G  82% /mnt/boot-sav/sdb7
/dev/sdb8      ext4      196G   82G  105G  44% /mnt/boot-sav/sdb8
/dev/sdb9      ext4      5.9G  655M  4.9G  12% /mnt/boot-sav/sdb9
/dev/sdb10     ext4       25G  8.3G   16G  36% /mnt/boot-sav/sdb10
/dev/sdb11     ext4      9.8G   23M  9.3G   1% /mnt/boot-sav/sdb11
/dev/sdc1      fuseblk    40G   18G   22G  45% /mnt/boot-sav/sdc1
/dev/sdc6      ext4      197G   82G  106G  44% /mnt/boot-sav/sdc6
/dev/sdc7      ext4       20G  2.8G   16G  16% /mnt/boot-sav/sdc7
/dev/sdc9      ext4       38G  5.8G   30G  17% /mnt/boot-sav/sdc9
/dev/sdc11     ext4       29G  9.6G   18G  36% /mnt/boot-sav/sdc11
/dev/sdc12     fuseblk    52G   51G  1.6G  98% /mnt/boot-sav/sdc12
/dev/sdd2      ext4       14G   43M   13G   1% /mnt/boot-sav/sdd2
/dev/sdd5      ext4      9.2G  1.4G  7.3G  16% /mnt/boot-sav/sdd5
/dev/sdd6      ext4      168G   61M  159G   1% /mnt/boot-sav/sdd6
/dev/sde1      vfat      511M  6.1M  505M   2% /mnt/boot-sav/sde1
/dev/sde2      ext4      457G  7.5G  427G   2% /mnt/boot-sav/sde2

=================== fdisk -l:
Disk /dev/loop0: 31.5 KiB, 32256 bytes, 63 sectors
Units: sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disklabel type: dos
Disk identifier: 0x00098c59

Device       Boot     Start        End    Sectors   Size Id Type
/dev/loop0p1 *           63   16386047   16385985   7.8G  7 HPFS/NTFS/exFAT
/dev/loop0p2       16386048  129026047  112640000  53.7G  7 HPFS/NTFS/exFAT
/dev/loop0p3      129026048  377509887  248483840 118.5G 83 Linux
/dev/loop0p4      377511496 1953523850 1576012355 751.5G  5 Extended


Disk /dev/sda: 931.5 GiB, 1000204886016 bytes, 1953525168 sectors
Units: sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 4096 bytes
I/O size (minimum/optimal): 4096 bytes / 4096 bytes
Disklabel type: dos
Disk identifier: 0x00096b93

Device     Boot      Start        End   Sectors   Size Id Type
/dev/sda1  *            63  781417664 781417602 372.6G 83 Linux
/dev/sda2        781417665  976767274 195349610  93.2G 83 Linux
/dev/sda3        976768065 1172118464 195350400  93.2G 83 Linux
/dev/sda4       1172121598 1953525167 781403570 372.6G  5 Extended
/dev/sda5       1172121600 1213082537  40960938  19.5G 83 Linux
/dev/sda6       1213083648 1228707839  15624192   7.5G 82 Linux swap / Solaris
/dev/sda7       1228709888 1331110278 102400391  48.8G 83 Linux
/dev/sda8       1331111936 1344782335  13670400   6.5G 82 Linux swap / Solaris
/dev/sda9       1344784384 1387397665  42613282  20.3G 83 Linux
/dev/sda10      1387399168 1469319167  81920000  39.1G 83 Linux
/dev/sda11      1469321216 1481609215  12288000   5.9G 83 Linux
/dev/sda12      1481613312 1510899711  29286400    14G 83 Linux
/dev/sda13      1510901760 1541621759  30720000  14.7G 83 Linux
/dev/sda14      1541623808 1562103807  20480000   9.8G 83 Linux
/dev/sda15      1562105856 1582585855  20480000   9.8G 83 Linux
/dev/sda16      1582587904 1674506239  91918336  43.9G 83 Linux
/dev/sda17      1695234048 1913749503 218515456 104.2G 83 Linux



Disk /dev/sdb: 931.5 GiB, 1000204886016 bytes, 1953525168 sectors
Units: sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 4096 bytes
I/O size (minimum/optimal): 4096 bytes / 4096 bytes
Disklabel type: dos
Disk identifier: 0x00098c59

Device     Boot      Start        End    Sectors   Size Id Type
/dev/sdb1  *            63   16386047   16385985   7.8G  7 HPFS/NTFS/exFAT
/dev/sdb2         16386048  129026047  112640000  53.7G  7 HPFS/NTFS/exFAT
/dev/sdb3        129026048  377509887  248483840 118.5G 83 Linux
/dev/sdb4        377511496 1953523850 1576012355 751.5G  5 Extended
/dev/sdb5        377513984  438953983   61440000  29.3G 83 Linux
/dev/sdb6        438956032  455340031   16384000   7.8G 82 Linux swap / Solaris
/dev/sdb7        455342080 1294202879  838860800   400G 83 Linux
/dev/sdb8       1294204928 1713635327  419430400   200G 83 Linux
/dev/sdb9       1713637376 1726220287   12582912     6G 83 Linux
/dev/sdb10      1726222336 1778651135   52428800    25G 83 Linux
/dev/sdb11      1778653184 1799624703   20971520    10G 83 Linux



Disk /dev/sdc: 931.5 GiB, 1000204886016 bytes, 1953525168 sectors
Units: sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 4096 bytes
I/O size (minimum/optimal): 4096 bytes / 4096 bytes
Disklabel type: dos
Disk identifier: 0x86fa836a

Device     Boot      Start        End    Sectors   Size Id Type
/dev/sdc1  *          2048   81922047   81920000  39.1G  7 HPFS/NTFS/exFAT
/dev/sdc2         81924094 1953523711 1871599618 892.5G  5 Extended
/dev/sdc5         81924096  920784895  838860800   400G 83 Linux
/dev/sdc6        920786944 1340217343  419430400   200G 83 Linux
/dev/sdc7       1340219392 1381180329   40960938  19.5G 83 Linux
/dev/sdc8       1381181440 1393469439   12288000   5.9G 83 Linux
/dev/sdc9       1393471488 1473438284   79966797  38.1G 83 Linux
/dev/sdc10      1473439744 1481828351    8388608     4G 82 Linux swap / Solaris
/dev/sdc11      1481830400 1543269853   61439454  29.3G 83 Linux
/dev/sdc12      1543272448 1651998719  108726272  51.9G  7 HPFS/NTFS/exFAT
/dev/sdc13      1669294080 1721542655   52248576  24.9G 83 Linux
/dev/sdc14      1721544704 1742516223   20971520    10G 83 Linux



Disk /dev/sdd: 232.9 GiB, 250059350016 bytes, 488397168 sectors
Units: sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disklabel type: dos
Disk identifier: 0x0d514067

Device     Boot     Start       End   Sectors   Size Id Type
/dev/sdd1  *           63  81400453  81400391  38.8G 83 Linux
/dev/sdd2        81401856 110696447  29294592    14G 83 Linux
/dev/sdd3       110698494 488396799 377698306 180.1G  5 Extended
/dev/sdd5       110698496 130228223  19529728   9.3G 83 Linux
/dev/sdd6       130230272 488396799 358166528 170.8G 83 Linux


Disk /dev/sde: 465.8 GiB, 500107862016 bytes, 976773168 sectors
Units: sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disklabel type: gpt
Disk identifier: 7B980612-9235-42EA-B001-AFB1C36DD868

Device       Start       End   Sectors   Size Type
/dev/sde1     2048   1050623   1048576   512M EFI System
/dev/sde2  1050624 976771071 975720448 465.3G Linux filesystem


Gtk-Message: 09:15:57.303: GtkDialog mapped without a transient parent. This is discouraged.
User choice: Est-ce que sdd (ATA Samsung SSD 860) est un disque amovible ? no




=================== Suggested repair
The default repair of the Boot-Repair utility would reinstall the grub2 of sdd1 into the MBRs of all disks (except live-disks and removable disks without OS).
Grub-efi would not be selected by default because: no-win-efi
Additional repair would be performed: unhide-bootmenu-10s   fix-windows-boot


=================== Final advice in case of suggested repair
N'oubliez pas de régler votre BIOS pour qu'il amorce sur le disque sdd (ATA Samsung SSD 860) !


=================== User settings
The settings chosen by the user will not act on the boot.

boot-info (non UEFI) 2020-04-20 : /var/log/boot-info/20200420_091448/Boot-Info_20200420_0914.txt (316.5Ko)

avec cat

Mode UEFI/Legacy ok
Partition EFI    ok
OS détecté par os-prober ok
Partition(s) avec OS OK
Contenu de /etc/fstab ok
UUID OK
Type de disque : OK

avec yad
un peu mieux mais

Mode UEFI/Legacy vide
Partition EFI    vide
OS détecté par os-prober vide
Partition(s) avec OS est vide
Contenu de /etc/fstab ok
UUID OK
Type de disque : vide

PC          : B760M DS3H DDR4,  12th Gen Intel(R) Core(TM) i3-12100, RAM DDR4 8GiB -2400 Ubuntu 22.04, 22.04, 23.04
Portable1 : Intel(R) Core(TM)2 Duo CPU     T6570  @ 2.10GHz RAM 4GiB DDR2 667 MHz Ubuntu 23.04 ( en voyage )
Portable2 : T5750  @ 2.00GHz RAM 1GiB DDR2 667 Mhz Ubuntu 20.04 ( batterie HS )
stourm a ran war bep tachenn (Angela Duval) ( Je combats sur tous les fronts )

Hors ligne

#16 Le 20/04/2020, à 09:57

ar barzh paour

Re : [Script] Synthèse rapport boot

pour obtenir le le résultat j'ai modifié un peu le script (mais il faut avoir le fichier source à dispo sous la main)
au début

ajout de2  lignes

#!/bin/bash
[[ $# -eq 0 ]] && echo "relancer en donnant le nom complet du fichier à traiter" && read g && exit 1
fich="$1"
# Récupération du rapport

j'ai supprimé la ligne

#rapport=$(yad --entry --button

et j'ai remplacé tous les echo $raport par cat "$fich"

#OSprober=$(echo "$rapport"  | sed ...)

par

OSprober=$(cat "$fich"  | .....)

etc

Dernière modification par ar barzh paour (Le 20/04/2020, à 10:04)


PC          : B760M DS3H DDR4,  12th Gen Intel(R) Core(TM) i3-12100, RAM DDR4 8GiB -2400 Ubuntu 22.04, 22.04, 23.04
Portable1 : Intel(R) Core(TM)2 Duo CPU     T6570  @ 2.10GHz RAM 4GiB DDR2 667 MHz Ubuntu 23.04 ( en voyage )
Portable2 : T5750  @ 2.00GHz RAM 1GiB DDR2 667 Mhz Ubuntu 20.04 ( batterie HS )
stourm a ran war bep tachenn (Angela Duval) ( Je combats sur tous les fronts )

Hors ligne

#17 Le 20/04/2020, à 14:17

Babdu89

Re : [Script] Synthèse rapport boot

LukePerp a écrit :

merci les gars, vos rapports mettent en évidence des anomalies dans mon script, je vais corriger ça smile
Baddu : je ne sais pas, montres moi un rapport avec des partitions crypté et je verrai bien

Il me semmble une installe en UEFI avec lvm et partition cryptée.

https://forum.ubuntu-fr.org/viewtopic.p … #p21698533

 Boot Info Script cfd9efe + Boot-Repair extra info      [Boot-Info 26Apr2016]


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

 => No boot loader is installed in the MBR of /dev/sda.
 => Syslinux MBR (4.04-4.07) is installed in the MBR of /dev/sdb.

sda1: __________________________________________________________________________

    File system:       vfat
    Boot sector type:  FAT32
    Boot sector info:  No errors found in the Boot Parameter Block.
    Operating System:  
    Boot files:        /EFI/ubuntu/MokManager.efi /EFI/ubuntu/fwupx64.efi 
                       /EFI/ubuntu/grubx64.efi /EFI/ubuntu/shimx64.efi

sda2: __________________________________________________________________________

    File system:       ext2
    Boot sector type:  -
    Boot sector info: 
    Operating System:  
    Boot files:        /grub/grub.cfg

sda3: __________________________________________________________________________

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

sdb1: __________________________________________________________________________

    File system:       vfat
    Boot sector type:  SYSLINUX 4.05 20140113
    Boot sector info:  Syslinux looks at sector 8917952 of /dev/sdb1 for its 
                       second stage. SYSLINUX is installed in the  directory. 
                       No errors found in the Boot Parameter Block.
    Operating System:  
    Boot files:        /boot/grub/grub.cfg /syslinux.cfg /casper/vmlinuz.efi 
                       /EFI/BOOT/grubx64.efi /ldlinux.sys

ubuntu-vg-root: ________________________________________________________________

    File system:       ext4
    Boot sector type:  -
    Boot sector info: 
    Mounting failed:   mount: wrong fs type, bad option, bad superblock on /dev/mapper/ubuntu--vg-root,
       missing codepage or helper program, or other error
       In some cases useful info is found in syslog - try
       dmesg | tail  or so


ubuntu-vg-swap_1: ______________________________________________________________

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

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

Drive: sda _____________________________________________________________________

Disk /dev/sda: 500.1 GB, 500107862016 bytes
255 heads, 63 sectors/track, 60801 cylinders, total 976773168 sectors
Units = sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 4096 bytes

Partition  Boot  Start Sector    End Sector  # of Sectors  Id System

/dev/sda1                   1   976,773,167   976,773,167  ee GPT


GUID Partition Table detected.

Partition  Attrs   Start Sector    End Sector  # of Sectors System
/dev/sda1                 2,048     1,050,623     1,048,576 EFI System partition
/dev/sda2             1,050,624     1,550,335       499,712 Data partition (Linux)
/dev/sda3             1,550,336   976,771,071   975,220,736 Logical Volume Manager (LVM) partition (Linux)

Attributes: R=Required, N=No Block IO, B=Legacy BIOS Bootable, +=More bits set

Drive: sdb _____________________________________________________________________

Disk /dev/sdb: 7862 MB, 7862353920 bytes
37 heads, 37 sectors/track, 11217 cylinders, total 15356160 sectors
Units = sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes

Partition  Boot  Start Sector    End Sector  # of Sectors  Id System

/dev/sdb1    *          8,064    15,356,159    15,348,096   c W95 FAT32 (LBA)


"blkid" output: ________________________________________________________________

Device           UUID                                   TYPE       LABEL

/dev/loop0                                              squashfs   
/dev/mapper/ubuntu--vg-root e7b9bbcf-6959-42ce-8a91-d5c797819418   ext4       
/dev/mapper/ubuntu--vg-swap_1 42b412bb-a8cd-4cde-a06d-f5f02abe8ec8   swap       
/dev/sda1        B66F-2CED                              vfat       
/dev/sda2        6f29cdc2-e8af-4b1c-9f10-c2aa236ecaeb   ext2       
/dev/sda3        TewiQI-eTT8-SmXL-tI0j-5Dlw-yjv1-00zdn9 LVM2_member 
/dev/sdb1        0FA4-909A                              vfat       KINGSTON

========================= "ls -l /dev/disk/by-id" output: ======================

total 0
lrwxrwxrwx 1 root root  9 Mar 17  2017 ata-HL-DT-ST_DVDRAM_GTA0N_KW4E4ND4759 -> ../../sr0
lrwxrwxrwx 1 root root  9 Mar 17 16:43 ata-TOSHIBA_MQ01ABF050_446CP1V7T -> ../../sda
lrwxrwxrwx 1 root root 10 Mar 17 16:37 ata-TOSHIBA_MQ01ABF050_446CP1V7T-part1 -> ../../sda1
lrwxrwxrwx 1 root root 10 Mar 17  2017 ata-TOSHIBA_MQ01ABF050_446CP1V7T-part2 -> ../../sda2
lrwxrwxrwx 1 root root 10 Mar 17  2017 ata-TOSHIBA_MQ01ABF050_446CP1V7T-part3 -> ../../sda3
lrwxrwxrwx 1 root root 10 Mar 17 16:43 dm-name-ubuntu--vg-root -> ../../dm-0
lrwxrwxrwx 1 root root 10 Mar 17 16:43 dm-name-ubuntu--vg-swap_1 -> ../../dm-1
lrwxrwxrwx 1 root root 10 Mar 17 16:43 dm-uuid-LVM-7odVySKXCvic2CzBrJRIt7m9IyxFpcbdpddqYVdAecO1kskH2a3ucFlxftWBpfMT -> ../../dm-1
lrwxrwxrwx 1 root root 10 Mar 17 16:43 dm-uuid-LVM-7odVySKXCvic2CzBrJRIt7m9IyxFpcbdvmO2RsrpeeSaBQ0lPb6faORKdlj2N4CR -> ../../dm-0
lrwxrwxrwx 1 root root  9 Mar 17 16:43 usb-Kingston_DataTraveler_2.0_C860008861F9BD612A071D9F-0:0 -> ../../sdb
lrwxrwxrwx 1 root root 10 Mar 17 16:37 usb-Kingston_DataTraveler_2.0_C860008861F9BD612A071D9F-0:0-part1 -> ../../sdb1
lrwxrwxrwx 1 root root  9 Mar 17 16:43 wwn-0x50000395727005ec -> ../../sda
lrwxrwxrwx 1 root root 10 Mar 17 16:37 wwn-0x50000395727005ec-part1 -> ../../sda1
lrwxrwxrwx 1 root root 10 Mar 17  2017 wwn-0x50000395727005ec-part2 -> ../../sda2
lrwxrwxrwx 1 root root 10 Mar 17  2017 wwn-0x50000395727005ec-part3 -> ../../sda3
lrwxrwxrwx 1 root root  9 Mar 17  2017 wwn-0x5001480000000000 -> ../../sr0

========================= "ls -R /dev/mapper/" output: =========================

/dev/mapper:
control
ubuntu--vg-root
ubuntu--vg-swap_1

================================ Mount points: =================================

Device           Mount_Point              Type       Options

/dev/loop0       /rofs                    squashfs   (ro,noatime)
/dev/sdb1        /cdrom                   vfat       (ro,noatime,fmask=0022,dmask=0022,codepage=437,iocharset=iso8859-1,shortname=mixed,errors=remount-ro)


============================= sda2/grub/grub.cfg: ==============================

--------------------------------------------------------------------------------
#
# DO NOT EDIT THIS FILE
#
# It is automatically generated by grub-mkconfig using templates
# from /etc/grub.d and settings from /etc/default/grub
#

### BEGIN /etc/grub.d/00_header ###
if [ -s $prefix/grubenv ]; then
  set have_grubenv=true
  load_env
fi
if [ "${next_entry}" ] ; then
   set default="${next_entry}"
   set next_entry=
   save_env next_entry
   set boot_once=true
else
   set default="0"
fi

if [ x"${feature_menuentry_id}" = xy ]; then
  menuentry_id_option="--id"
else
  menuentry_id_option=""
fi

export menuentry_id_option

if [ "${prev_saved_entry}" ]; then
  set saved_entry="${prev_saved_entry}"
  save_env saved_entry
  set prev_saved_entry=
  save_env prev_saved_entry
  set boot_once=true
fi

function savedefault {
  if [ -z "${boot_once}" ]; then
    saved_entry="${chosen}"
    save_env saved_entry
  fi
}
function recordfail {
  set recordfail=1
  if [ -n "${have_grubenv}" ]; then if [ -z "${boot_once}" ]; then save_env recordfail; fi; fi
}
function load_video {
  if [ x$feature_all_video_module = xy ]; then
    insmod all_video
  else
    insmod efi_gop
    insmod efi_uga
    insmod ieee1275_fb
    insmod vbe
    insmod vga
    insmod video_bochs
    insmod video_cirrus
  fi
}

if [ x$feature_default_font_path = xy ] ; then
   font=unicode
else
insmod part_gpt
insmod lvm
insmod ext2
set root='lvmid/7odVyS-KXCv-ic2C-zBrJ-RIt7-m9Iy-xFpcbd/vmO2Rs-rpee-SaBQ-0lPb-6faO-RKdl-j2N4CR'
if [ x$feature_platform_search_hint = xy ]; then
  search --no-floppy --fs-uuid --set=root --hint='lvmid/7odVyS-KXCv-ic2C-zBrJ-RIt7-m9Iy-xFpcbd/vmO2Rs-rpee-SaBQ-0lPb-6faO-RKdl-j2N4CR'  e7b9bbcf-6959-42ce-8a91-d5c797819418
else
  search --no-floppy --fs-uuid --set=root e7b9bbcf-6959-42ce-8a91-d5c797819418
fi
    font="/usr/share/grub/unicode.pf2"
fi

if loadfont $font ; then
  set gfxmode=auto
  load_video
  insmod gfxterm
  set locale_dir=$prefix/locale
  set lang=fr_FR
  insmod gettext
fi
terminal_output gfxterm
if [ "${recordfail}" = 1 ] ; then
  set timeout=30
else
  if [ x$feature_timeout_style = xy ] ; then
    set timeout_style=hidden
    set timeout=0
  # Fallback hidden-timeout code in case the timeout_style feature is
  # unavailable.
  elif sleep --interruptible 0 ; then
    set timeout=0
  fi
fi
### END /etc/grub.d/00_header ###

### BEGIN /etc/grub.d/05_debian_theme ###
set menu_color_normal=white/black
set menu_color_highlight=black/light-gray
if background_color 44,0,30,0; then
  clear
fi
### END /etc/grub.d/05_debian_theme ###

### BEGIN /etc/grub.d/10_linux ###
function gfxmode {
	set gfxpayload="${1}"
	if [ "${1}" = "keep" ]; then
		set vt_handoff=vt.handoff=7
	else
		set vt_handoff=
	fi
}
if [ "${recordfail}" != 1 ]; then
  if [ -e ${prefix}/gfxblacklist.txt ]; then
    if hwmatch ${prefix}/gfxblacklist.txt 3; then
      if [ ${match} = 0 ]; then
        set linux_gfx_mode=keep
      else
        set linux_gfx_mode=text
      fi
    else
      set linux_gfx_mode=text
    fi
  else
    set linux_gfx_mode=keep
  fi
else
  set linux_gfx_mode=text
fi
export linux_gfx_mode
menuentry 'Ubuntu' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-simple-e7b9bbcf-6959-42ce-8a91-d5c797819418' {
	recordfail
	load_video
	gfxmode $linux_gfx_mode
	insmod gzio
	if [ x$grub_platform = xxen ]; then insmod xzio; insmod lzopio; fi
	insmod part_gpt
	insmod ext2
	set root='hd0,gpt2'
	if [ x$feature_platform_search_hint = xy ]; then
	  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,gpt2 --hint-efi=hd0,gpt2 --hint-baremetal=ahci0,gpt2  6f29cdc2-e8af-4b1c-9f10-c2aa236ecaeb
	else
	  search --no-floppy --fs-uuid --set=root 6f29cdc2-e8af-4b1c-9f10-c2aa236ecaeb
	fi
	linux	/vmlinuz-4.8.0-42-generic root=/dev/mapper/ubuntu--vg-root ro zswap.enabled=1 quiet splash $vt_handoff
	initrd	/initrd.img-4.8.0-42-generic
}
submenu 'Options avancées pour Ubuntu' $menuentry_id_option 'gnulinux-advanced-e7b9bbcf-6959-42ce-8a91-d5c797819418' {
	menuentry 'Ubuntu, avec Linux 4.8.0-42-generic' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-4.8.0-42-generic-advanced-e7b9bbcf-6959-42ce-8a91-d5c797819418' {
		recordfail
		load_video
		gfxmode $linux_gfx_mode
		insmod gzio
		if [ x$grub_platform = xxen ]; then insmod xzio; insmod lzopio; fi
		insmod part_gpt
		insmod ext2
		set root='hd0,gpt2'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,gpt2 --hint-efi=hd0,gpt2 --hint-baremetal=ahci0,gpt2  6f29cdc2-e8af-4b1c-9f10-c2aa236ecaeb
		else
		  search --no-floppy --fs-uuid --set=root 6f29cdc2-e8af-4b1c-9f10-c2aa236ecaeb
		fi
		echo	'Chargement de Linux 4.8.0-42-generic…'
		linux	/vmlinuz-4.8.0-42-generic root=/dev/mapper/ubuntu--vg-root ro zswap.enabled=1 quiet splash $vt_handoff
		echo	'Chargement du disque mémoire initial…'
		initrd	/initrd.img-4.8.0-42-generic
	}
	menuentry 'Ubuntu, with Linux 4.8.0-42-generic (upstart)' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-4.8.0-42-generic-init-upstart-e7b9bbcf-6959-42ce-8a91-d5c797819418' {
		recordfail
		load_video
		gfxmode $linux_gfx_mode
		insmod gzio
		if [ x$grub_platform = xxen ]; then insmod xzio; insmod lzopio; fi
		insmod part_gpt
		insmod ext2
		set root='hd0,gpt2'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,gpt2 --hint-efi=hd0,gpt2 --hint-baremetal=ahci0,gpt2  6f29cdc2-e8af-4b1c-9f10-c2aa236ecaeb
		else
		  search --no-floppy --fs-uuid --set=root 6f29cdc2-e8af-4b1c-9f10-c2aa236ecaeb
		fi
		echo	'Chargement de Linux 4.8.0-42-generic…'
		linux	/vmlinuz-4.8.0-42-generic root=/dev/mapper/ubuntu--vg-root ro zswap.enabled=1 quiet splash $vt_handoff init=/sbin/upstart
		echo	'Chargement du disque mémoire initial…'
		initrd	/initrd.img-4.8.0-42-generic
	}
	menuentry 'Ubuntu, with Linux 4.8.0-42-generic (recovery mode)' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-4.8.0-42-generic-recovery-e7b9bbcf-6959-42ce-8a91-d5c797819418' {
		recordfail
		load_video
		insmod gzio
		if [ x$grub_platform = xxen ]; then insmod xzio; insmod lzopio; fi
		insmod part_gpt
		insmod ext2
		set root='hd0,gpt2'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,gpt2 --hint-efi=hd0,gpt2 --hint-baremetal=ahci0,gpt2  6f29cdc2-e8af-4b1c-9f10-c2aa236ecaeb
		else
		  search --no-floppy --fs-uuid --set=root 6f29cdc2-e8af-4b1c-9f10-c2aa236ecaeb
		fi
		echo	'Chargement de Linux 4.8.0-42-generic…'
		linux	/vmlinuz-4.8.0-42-generic root=/dev/mapper/ubuntu--vg-root ro recovery nomodeset zswap.enabled=1
		echo	'Chargement du disque mémoire initial…'
		initrd	/initrd.img-4.8.0-42-generic
	}
	menuentry 'Ubuntu, avec Linux 4.8.0-41-generic' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-4.8.0-41-generic-advanced-e7b9bbcf-6959-42ce-8a91-d5c797819418' {
		recordfail
		load_video
		gfxmode $linux_gfx_mode
		insmod gzio
		if [ x$grub_platform = xxen ]; then insmod xzio; insmod lzopio; fi
		insmod part_gpt
		insmod ext2
		set root='hd0,gpt2'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,gpt2 --hint-efi=hd0,gpt2 --hint-baremetal=ahci0,gpt2  6f29cdc2-e8af-4b1c-9f10-c2aa236ecaeb
		else
		  search --no-floppy --fs-uuid --set=root 6f29cdc2-e8af-4b1c-9f10-c2aa236ecaeb
		fi
		echo	'Chargement de Linux 4.8.0-41-generic…'
		linux	/vmlinuz-4.8.0-41-generic root=/dev/mapper/ubuntu--vg-root ro zswap.enabled=1 quiet splash $vt_handoff
		echo	'Chargement du disque mémoire initial…'
		initrd	/initrd.img-4.8.0-41-generic
	}
	menuentry 'Ubuntu, with Linux 4.8.0-41-generic (upstart)' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-4.8.0-41-generic-init-upstart-e7b9bbcf-6959-42ce-8a91-d5c797819418' {
		recordfail
		load_video
		gfxmode $linux_gfx_mode
		insmod gzio
		if [ x$grub_platform = xxen ]; then insmod xzio; insmod lzopio; fi
		insmod part_gpt
		insmod ext2
		set root='hd0,gpt2'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,gpt2 --hint-efi=hd0,gpt2 --hint-baremetal=ahci0,gpt2  6f29cdc2-e8af-4b1c-9f10-c2aa236ecaeb
		else
		  search --no-floppy --fs-uuid --set=root 6f29cdc2-e8af-4b1c-9f10-c2aa236ecaeb
		fi
		echo	'Chargement de Linux 4.8.0-41-generic…'
		linux	/vmlinuz-4.8.0-41-generic root=/dev/mapper/ubuntu--vg-root ro zswap.enabled=1 quiet splash $vt_handoff init=/sbin/upstart
		echo	'Chargement du disque mémoire initial…'
		initrd	/initrd.img-4.8.0-41-generic
	}
	menuentry 'Ubuntu, with Linux 4.8.0-41-generic (recovery mode)' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-4.8.0-41-generic-recovery-e7b9bbcf-6959-42ce-8a91-d5c797819418' {
		recordfail
		load_video
		insmod gzio
		if [ x$grub_platform = xxen ]; then insmod xzio; insmod lzopio; fi
		insmod part_gpt
		insmod ext2
		set root='hd0,gpt2'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,gpt2 --hint-efi=hd0,gpt2 --hint-baremetal=ahci0,gpt2  6f29cdc2-e8af-4b1c-9f10-c2aa236ecaeb
		else
		  search --no-floppy --fs-uuid --set=root 6f29cdc2-e8af-4b1c-9f10-c2aa236ecaeb
		fi
		echo	'Chargement de Linux 4.8.0-41-generic…'
		linux	/vmlinuz-4.8.0-41-generic root=/dev/mapper/ubuntu--vg-root ro recovery nomodeset zswap.enabled=1
		echo	'Chargement du disque mémoire initial…'
		initrd	/initrd.img-4.8.0-41-generic
	}
	menuentry 'Ubuntu, avec Linux 4.8.0-38-generic' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-4.8.0-38-generic-advanced-e7b9bbcf-6959-42ce-8a91-d5c797819418' {
		recordfail
		load_video
		gfxmode $linux_gfx_mode
		insmod gzio
		if [ x$grub_platform = xxen ]; then insmod xzio; insmod lzopio; fi
		insmod part_gpt
		insmod ext2
		set root='hd0,gpt2'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,gpt2 --hint-efi=hd0,gpt2 --hint-baremetal=ahci0,gpt2  6f29cdc2-e8af-4b1c-9f10-c2aa236ecaeb
		else
		  search --no-floppy --fs-uuid --set=root 6f29cdc2-e8af-4b1c-9f10-c2aa236ecaeb
		fi
		echo	'Chargement de Linux 4.8.0-38-generic…'
		linux	/vmlinuz-4.8.0-38-generic root=/dev/mapper/ubuntu--vg-root ro zswap.enabled=1 quiet splash $vt_handoff
		echo	'Chargement du disque mémoire initial…'
		initrd	/initrd.img-4.8.0-38-generic
	}
	menuentry 'Ubuntu, with Linux 4.8.0-38-generic (upstart)' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-4.8.0-38-generic-init-upstart-e7b9bbcf-6959-42ce-8a91-d5c797819418' {
		recordfail
		load_video
		gfxmode $linux_gfx_mode
		insmod gzio
		if [ x$grub_platform = xxen ]; then insmod xzio; insmod lzopio; fi
		insmod part_gpt
		insmod ext2
		set root='hd0,gpt2'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,gpt2 --hint-efi=hd0,gpt2 --hint-baremetal=ahci0,gpt2  6f29cdc2-e8af-4b1c-9f10-c2aa236ecaeb
		else
		  search --no-floppy --fs-uuid --set=root 6f29cdc2-e8af-4b1c-9f10-c2aa236ecaeb
		fi
		echo	'Chargement de Linux 4.8.0-38-generic…'
		linux	/vmlinuz-4.8.0-38-generic root=/dev/mapper/ubuntu--vg-root ro zswap.enabled=1 quiet splash $vt_handoff init=/sbin/upstart
		echo	'Chargement du disque mémoire initial…'
		initrd	/initrd.img-4.8.0-38-generic
	}
	menuentry 'Ubuntu, with Linux 4.8.0-38-generic (recovery mode)' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-4.8.0-38-generic-recovery-e7b9bbcf-6959-42ce-8a91-d5c797819418' {
		recordfail
		load_video
		insmod gzio
		if [ x$grub_platform = xxen ]; then insmod xzio; insmod lzopio; fi
		insmod part_gpt
		insmod ext2
		set root='hd0,gpt2'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,gpt2 --hint-efi=hd0,gpt2 --hint-baremetal=ahci0,gpt2  6f29cdc2-e8af-4b1c-9f10-c2aa236ecaeb
		else
		  search --no-floppy --fs-uuid --set=root 6f29cdc2-e8af-4b1c-9f10-c2aa236ecaeb
		fi
		echo	'Chargement de Linux 4.8.0-38-generic…'
		linux	/vmlinuz-4.8.0-38-generic root=/dev/mapper/ubuntu--vg-root ro recovery nomodeset zswap.enabled=1
		echo	'Chargement du disque mémoire initial…'
		initrd	/initrd.img-4.8.0-38-generic
	}
}

### END /etc/grub.d/10_linux ###

### BEGIN /etc/grub.d/20_linux_xen ###

### END /etc/grub.d/20_linux_xen ###

### BEGIN /etc/grub.d/20_memtest86+ ###
### END /etc/grub.d/20_memtest86+ ###

### BEGIN /etc/grub.d/30_os-prober ###
### END /etc/grub.d/30_os-prober ###

### BEGIN /etc/grub.d/30_uefi-firmware ###
menuentry 'System setup' $menuentry_id_option 'uefi-firmware' {
	fwsetup
}
### END /etc/grub.d/30_uefi-firmware ###

### BEGIN /etc/grub.d/40_custom ###
# This file provides an easy way to add custom menu entries.  Simply type the
# menu entries you want to add after this comment.  Be careful not to change
# the 'exec tail' line above.
### END /etc/grub.d/40_custom ###

### BEGIN /etc/grub.d/41_custom ###
if [ -f  ${config_directory}/custom.cfg ]; then
  source ${config_directory}/custom.cfg
elif [ -z "${config_directory}" -a -f  $prefix/custom.cfg ]; then
  source $prefix/custom.cfg;
fi
### END /etc/grub.d/41_custom ###
--------------------------------------------------------------------------------

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

           GiB - GB             File                                 Fragment(s)

   0.500976562 = 0.537919488    grub/grub.cfg                                 11
   0.636857986 = 0.683821056    vmlinuz-4.8.0-38-generic                      16
   0.601701736 = 0.646072320    vmlinuz-4.8.0-41-generic                      13
   0.695440292 = 0.746723328    vmlinuz-4.8.0-42-generic                      17
   0.735351562 = 0.789577728    initrd.img-4.8.0-38-generic                   19
   0.739199638 = 0.793709568    initrd.img-4.8.0-41-generic                   71
   0.637833595 = 0.684868608    initrd.img-4.8.0-42-generic                   20

=========================== sdb1/boot/grub/grub.cfg: ===========================

--------------------------------------------------------------------------------

if loadfont /boot/grub/font.pf2 ; then
	set gfxmode=auto
	insmod efi_gop
	insmod efi_uga
	insmod gfxterm
	terminal_output gfxterm
fi

set menu_color_normal=white/black
set menu_color_highlight=black/light-gray

menuentry "Try Ubuntu without installing" {
	set gfxpayload=keep
	linux	/casper/vmlinuz.efi  file=/cdrom/preseed/ubuntu.seed boot=casper quiet splash --
	initrd	/casper/initrd.lz
}
menuentry "Install Ubuntu" {
	set gfxpayload=keep
	linux	/casper/vmlinuz.efi  file=/cdrom/preseed/ubuntu.seed boot=casper only-ubiquity quiet splash --
	initrd	/casper/initrd.lz
}
menuentry "OEM install (for manufacturers)" {
	set gfxpayload=keep
	linux	/casper/vmlinuz.efi  file=/cdrom/preseed/ubuntu.seed boot=casper only-ubiquity quiet splash oem-config/enable=true --
	initrd	/casper/initrd.lz
}
menuentry "Check disc for defects" {
	set gfxpayload=keep
	linux	/casper/vmlinuz.efi  boot=casper integrity-check quiet splash --
	initrd	/casper/initrd.lz
}
--------------------------------------------------------------------------------

============================== sdb1/syslinux.cfg: ==============================

--------------------------------------------------------------------------------
default menu.c32
prompt 0
menu title UNetbootin
timeout 100

label unetbootindefault
menu label Default
kernel /ubnkern
append initrd=/ubninit file=/cdrom/preseed/ubuntu.seed boot=casper quiet splash --

label ubnentry0
menu label ^Help
kernel /ubnkern
append initrd=/ubninit 

label ubnentry1
menu label ^Try Ubuntu without installing
kernel /casper/vmlinuz.efi
append initrd=/casper/initrd.lz file=/cdrom/preseed/ubuntu.seed boot=casper  quiet splash --

label ubnentry2
menu label ^Install Ubuntu
kernel /casper/vmlinuz.efi
append initrd=/casper/initrd.lz file=/cdrom/preseed/ubuntu.seed boot=casper only-ubiquity  quiet splash --

label ubnentry3
menu label ^Check disc for defects
kernel /casper/vmlinuz.efi
append initrd=/casper/initrd.lz boot=casper integrity-check  quiet splash --

label ubnentry4
menu label Test ^memory
kernel /install/mt86plus
append initrd=/ubninit 

label ubnentry5
menu label ^Boot from first hard disk
kernel /ubnkern
append initrd=/ubninit 

label ubnentry6
menu label Try Ubuntu without installing
kernel /casper/vmlinuz.efi
append initrd=/casper/initrd.lz file=/cdrom/preseed/ubuntu.seed boot=casper quiet splash --

label ubnentry7
menu label Install Ubuntu
kernel /casper/vmlinuz.efi
append initrd=/casper/initrd.lz file=/cdrom/preseed/ubuntu.seed boot=casper only-ubiquity quiet splash --

label ubnentry8
menu label OEM install (for manufacturers)
kernel /casper/vmlinuz.efi
append initrd=/casper/initrd.lz file=/cdrom/preseed/ubuntu.seed boot=casper only-ubiquity quiet splash oem-config/enable=true --

label ubnentry9
menu label Check disc for defects
kernel /casper/vmlinuz.efi
append initrd=/casper/initrd.lz boot=casper integrity-check quiet splash --

--------------------------------------------------------------------------------

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

           GiB - GB             File                                 Fragment(s)

            ?? = ??             boot/grub/grub.cfg                             1

================= sdb1: Location of files loaded by Syslinux: ==================

           GiB - GB             File                                 Fragment(s)

            ?? = ??             syslinux.cfg                                   1
            ?? = ??             ldlinux.sys                                    1
            ?? = ??             menu.c32                                       1
            ?? = ??             syslinux/chain.c32                             1
            ?? = ??             syslinux/gfxboot.c32                           1
            ?? = ??             syslinux/vesamenu.c32                          1

============== sdb1: Version of COM32(R) files used by Syslinux: ===============

 menu.c32                           :  COM32R module (v4.xx)
 syslinux/chain.c32                 :  COM32R module (v4.xx)
 syslinux/gfxboot.c32               :  COM32R module (v4.xx)
 syslinux/vesamenu.c32              :  COM32R module (v4.xx)

=============================== StdErr Messages: ===============================

File descriptor 9 (/proc/5139/mounts) leaked on lvs invocation. Parent PID 11207: bash
File descriptor 63 (pipe:[50815]) leaked on lvs invocation. Parent PID 11207: bash
File descriptor 9 (/proc/5139/mounts) leaked on lvchange invocation. Parent PID 12049: bash
File descriptor 63 (pipe:[50815]) leaked on lvchange invocation. Parent PID 12049: bash
File descriptor 9 (/proc/5139/mounts) leaked on lvchange invocation. Parent PID 12049: bash
File descriptor 63 (pipe:[50815]) leaked on lvchange invocation. Parent PID 12049: bash

ADDITIONAL INFORMATION :
=================== log of boot-info 2017-03-17__16h43 ===================
boot-info version : 4ppa40
boot-sav version : 4ppa40
glade2script version : 3.2.3~ppa1
boot-sav-extra version : 4ppa40
BLKID BEFORE LVM ACTIVATION:
/dev/loop0: TYPE="squashfs"
/dev/sda1: UUID="B66F-2CED" TYPE="vfat"
/dev/sda2: UUID="6f29cdc2-e8af-4b1c-9f10-c2aa236ecaeb" TYPE="ext2"
/dev/sda3: UUID="TewiQI-eTT8-SmXL-tI0j-5Dlw-yjv1-00zdn9" TYPE="LVM2_member"
/dev/mapper/ubuntu--vg-root: UUID="e7b9bbcf-6959-42ce-8a91-d5c797819418" TYPE="ext4"
/dev/mapper/ubuntu--vg-swap_1: UUID="42b412bb-a8cd-4cde-a06d-f5f02abe8ec8" TYPE="swap"
/dev/sdb1: LABEL="KINGSTON" UUID="0FA4-909A" TYPE="vfat"
MODPROBE
VGSCAN
File descriptor 9 (/proc/5139/mounts) leaked on vgscan invocation. Parent PID 5151: /bin/bash
Reading all physical volumes.  This may take a while...
Found volume group "ubuntu-vg" using metadata type lvm2
VGCHANGE
File descriptor 9 (/proc/5139/mounts) leaked on vgchange invocation. Parent PID 5151: /bin/bash
2 logical volume(s) in volume group "ubuntu-vg" now active
File descriptor 9 (/proc/5139/mounts) leaked on lvscan invocation. Parent PID 5151: /bin/bash
LVSCAN:
ACTIVE            '/dev/ubuntu-vg/root' [463.09 GiB] inherit
ACTIVE            '/dev/ubuntu-vg/swap_1' [1.92 GiB] inherit
Is there RAID on this computer? no
File descriptor 9 (/proc/5139/mounts) leaked on vgs invocation. Parent PID 7027: grub-probe
File descriptor 9 (/proc/5139/mounts) leaked on vgs invocation. Parent PID 7027: grub-probe
boot-info is executed in live-session (Ubuntu 14.04.1 LTS, trusty, Ubuntu, x86_64)
CPU op-mode(s):        32-bit, 64-bit
BOOT_IMAGE=/casper/vmlinuz.efi file=/cdrom/preseed/ubuntu.seed boot=casper quiet splash --
ls: cannot access /home/usr/.config: No such file or directory
[dmraid -sa -c] no
[dmraid -sa -c] raid
[dmraid -sa -c] disks
Set sda as corresponding disk of mapper/ubuntu--vg-root
mount: wrong fs type, bad option, bad superblock on /dev/mapper/ubuntu--vg-root,
missing codepage or helper program, or other error
In some cases useful info is found in syslog - try
dmesg | tail  or so

mount /dev/mapper/ubuntu--vg-root : Error code 32
mount -r /dev/mapper/ubuntu--vg-root /mnt/boot-sav/mapper/ubuntu--vg-root
mount: wrong fs type, bad option, bad superblock on /dev/mapper/ubuntu--vg-root,
missing codepage or helper program, or other error
In some cases useful info is found in syslog - try
dmesg | tail  or so

mount -r /dev/mapper/ubuntu--vg-root : Error code 32

WARNING: GPT (GUID Partition Table) detected on '/dev/sda'! The util fdisk doesn't support GPT. Use GNU Parted.

Disk /dev/mapper/ubuntu--vg-root doesn't contain a valid partition table
Disk /dev/mapper/ubuntu--vg-swap_1 doesn't contain a valid partition table

=================== os-prober:
/dev/mapper/ubuntu--vg-root:Ubuntu 16.10 (16.10):Ubuntu:linux

=================== blkid:
/dev/loop0: TYPE="squashfs"
/dev/sda1: UUID="B66F-2CED" TYPE="vfat"
/dev/sda2: UUID="6f29cdc2-e8af-4b1c-9f10-c2aa236ecaeb" TYPE="ext2"
/dev/sda3: UUID="TewiQI-eTT8-SmXL-tI0j-5Dlw-yjv1-00zdn9" TYPE="LVM2_member"
/dev/mapper/ubuntu--vg-root: UUID="e7b9bbcf-6959-42ce-8a91-d5c797819418" TYPE="ext4"
/dev/mapper/ubuntu--vg-swap_1: UUID="42b412bb-a8cd-4cde-a06d-f5f02abe8ec8" TYPE="swap"
/dev/sdb1: LABEL="KINGSTON" UUID="0FA4-909A" TYPE="vfat"

[dmraid -sa -c] no
[dmraid -sa -c] raid
[dmraid -sa -c] disks
Set sda as corresponding disk of mapper/ubuntu--vg-root

1 disks with OS, 1 OS : 1 Linux, 0 MacOS, 0 Windows, 0 unknown type OS.

mount: wrong fs type, bad option, bad superblock on /dev/mapper/ubuntu--vg-root,
missing codepage or helper program, or other error
In some cases useful info is found in syslog - try
dmesg | tail  or so

mount /dev/mapper/ubuntu--vg-root : Error code 32
mount -r /dev/mapper/ubuntu--vg-root /mnt/boot-sav/mapper/ubuntu--vg-root
mount: wrong fs type, bad option, bad superblock on /dev/mapper/ubuntu--vg-root,
missing codepage or helper program, or other error
In some cases useful info is found in syslog - try
dmesg | tail  or so

mount -r /dev/mapper/ubuntu--vg-root : Error code 32

WARNING: GPT (GUID Partition Table) detected on '/dev/sda'! The util sfdisk doesn't support GPT. Use GNU Parted.


WARNING: GPT (GUID Partition Table) detected on '/dev/sda'! The util fdisk doesn't support GPT. Use GNU Parted.


=================== sda2recordfail=1/grub/grubenv :
recordfail=1




=================== efibootmgr -v
BootCurrent: 0005
Timeout: 0 seconds
BootOrder: 0005,0000,0004,0002,0003
Boot0000* ubuntu	HD(1,800,100000,5a14528d-1c1d-431a-8400-eae70b2bf694)File(EFIubuntugrubx64.efi)
Boot0002* UEFI: IP4 Qualcomm Atheros PCIe Network Controller	ACPI(a0341d0,0)PCI(1c,3)PCI(0,0)MAC(448a5b44f86a,0)IPv4(0.0.0.0:0<->0.0.0.0:0,0, 0..BO
Boot0003* UEFI: IP6 Qualcomm Atheros PCIe Network Controller	ACPI(a0341d0,0)PCI(1c,3)PCI(0,0)MAC(448a5b44f86a,0)030d3c000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000..BO
Boot0004* ubuntu	HD(1,800,100000,5a14528d-1c1d-431a-8400-eae70b2bf694)File(EFIUbuntugrubx64.efi)
Boot0005* UEFI: KingstonDataTraveler 2.0PMAP	ACPI(a0341d0,0)PCI(14,0)USB(1,0)HD(1,1f80,ea3180,000760f0)..BO

=================== UEFI/Legacy mode:
BIOS is EFI-compatible, and is setup in EFI-mode for this live-session.
SecureBoot disabled. (maybe sec-boot, Please report this message to boot.repair@gmail.com)


=================== PARTITIONS & DISKS:
sda1	: sda,	not-sepboot,	no-grubenv	nogrub,	no-docgrub,	no-update-grub,	32,	no-boot,	no-os,	is-correct-EFI,	part-has-no-fstab,	part-has-no-fstab,	no-nt,	no-winload,	no-recov-nor-hid,	no-bmgr,	notwinboot,	nopakmgr,	nogrubinstall,	no---usr,	part-has-no-fstab,	not-sep-usr,	standard,	not-far,	/mnt/boot-sav/sda1.
sda2	: sda,	is-sepboot,	grubenv-ng	nogrub,	no-docgrub,	no-update-grub,	32,	no-boot,	no-os,	not--efi--part,	part-has-no-fstab,	part-has-no-fstab,	no-nt,	no-winload,	no-recov-nor-hid,	no-bmgr,	notwinboot,	nopakmgr,	nogrubinstall,	no---usr,	part-has-no-fstab,	not-sep-usr,	standard,	not-far,	/mnt/boot-sav/sda2.
mapper/ubuntu--vg-root	: sda,	not-sepboot,	no-grubenv	nogrub,	no-docgrub,	no-update-grub,	32,	no-boot,	is-os,	not--efi--part,	part-has-no-fstab,	part-has-no-fstab,	no-nt,	no-winload,	no-recov-nor-hid,	no-bmgr,	notwinboot,	nopakmgr,	nogrubinstall,	no---usr,	part-has-no-fstab,	not-sep-usr,	standard,	not-far,	/mnt/boot-sav/mapper/ubuntu--vg-root.

sda	: GPT,	no-BIOS_boot,	has-correctEFI, 	not-usb,	has-os,	2048 sectors * 512 bytes


=================== parted -l:

Model: ATA TOSHIBA MQ01ABF0 (scsi)
Disk /dev/sda: 500GB
Sector size (logical/physical): 512B/4096B
Partition Table: gpt

Number  Start   End    Size   File system  Name  Flags
1      1049kB  538MB  537MB  fat32              boot
2      538MB   794MB  256MB  ext2
3      794MB   500GB  499GB                     lvm


Model: Kingston DataTraveler 2.0 (scsi)
Disk /dev/sdb: 7862MB
Sector size (logical/physical): 512B/512B
Partition Table: msdos

Number  Start   End     Size    Type     File system  Flags
1      4129kB  7862MB  7858MB  primary  fat32        boot, lba


Model: Linux device-mapper (linear) (dm)
Disk /dev/mapper/ubuntu--vg-root: 497GB
Sector size (logical/physical): 512B/4096B
Partition Table: loop

Number  Start  End    Size   File system  Flags
1      0.00B  497GB  497GB  ext4


Model: Linux device-mapper (linear) (dm)
Disk /dev/mapper/ubuntu--vg-swap_1: 2064MB
Sector size (logical/physical): 512B/4096B
Partition Table: loop

Number  Start  End     Size    File system     Flags
1      0.00B  2064MB  2064MB  linux-swap(v1)

=================== parted -lm:

BYT;
/dev/sda:500GB:scsi:512:4096:gpt:ATA TOSHIBA MQ01ABF0;
1:1049kB:538MB:537MB:fat32::boot;
2:538MB:794MB:256MB:ext2::;
3:794MB:500GB:499GB:::lvm;

BYT;
/dev/sdb:7862MB:scsi:512:512:msdos:Kingston DataTraveler 2.0;
1:4129kB:7862MB:7858MB:fat32::boot, lba;

BYT;
/dev/mapper/ubuntu--vg-root:497GB:dm:512:4096:loop:Linux device-mapper (linear);
1:0.00B:497GB:497GB:ext4::;

BYT;
/dev/mapper/ubuntu--vg-swap_1:2064MB:dm:512:4096:loop:Linux device-mapper (linear);
1:0.00B:2064MB:2064MB:linux-swap(v1)::;

=================== lsblk:
KNAME TYPE FSTYPE        SIZE LABEL
sda   disk             465.8G
sda1  part vfat          512M
sda2  part ext2          244M
sda3  part LVM2_member   465G
dm-0  lvm  ext4        463.1G
dm-1  lvm  swap          1.9G
sdb   disk               7.3G
sdb1  part vfat          7.3G KINGSTON
sr0   rom               1024M
loop0 loop squashfs    938.7M

KNAME ROTA RO RM STATE   MOUNTPOINT
sda      1  0  0 running
sda1     1  0  0         /mnt/boot-sav/sda1
sda2     1  0  0         /mnt/boot-sav/sda2
sda3     1  0  0
dm-0     1  0  0 running
dm-1     1  0  0 running
sdb      1  0  1 running
sdb1     1  0  1         /cdrom
sr0      1  0  1 running
loop0    1  1  0         /rofs


=================== mount:
/cow on / type overlayfs (rw)
proc on /proc type proc (rw,noexec,nosuid,nodev)
sysfs on /sys type sysfs (rw,noexec,nosuid,nodev)
udev on /dev type devtmpfs (rw,mode=0755)
devpts on /dev/pts type devpts (rw,noexec,nosuid,gid=5,mode=0620)
tmpfs on /run type tmpfs (rw,noexec,nosuid,size=10%,mode=0755)
/dev/sdb1 on /cdrom type vfat (ro,noatime,fmask=0022,dmask=0022,codepage=437,iocharset=iso8859-1,shortname=mixed,errors=remount-ro)
/dev/loop0 on /rofs type squashfs (ro,noatime)
none on /sys/fs/cgroup type tmpfs (rw)
none on /sys/fs/fuse/connections type fusectl (rw)
none on /sys/kernel/debug type debugfs (rw)
none on /sys/kernel/security type securityfs (rw)
none on /sys/firmware/efi/efivars type efivarfs (rw)
tmpfs on /tmp type tmpfs (rw,nosuid,nodev)
none on /run/lock type tmpfs (rw,noexec,nosuid,nodev,size=5242880)
none on /run/shm type tmpfs (rw,nosuid,nodev)
none on /run/user type tmpfs (rw,noexec,nosuid,nodev,size=104857600,mode=0755)
none on /sys/fs/pstore type pstore (rw)
systemd on /sys/fs/cgroup/systemd type cgroup (rw,noexec,nosuid,nodev,none,name=systemd)
gvfsd-fuse on /run/user/999/gvfs type fuse.gvfsd-fuse (rw,nosuid,nodev,user=ubuntu)
/dev/sda1 on /mnt/boot-sav/sda1 type vfat (rw)
/dev/sda2 on /mnt/boot-sav/sda2 type ext2 (rw)


=================== ls:
/sys/block/dm-0 (filtered):  alignment_offset bdi capability dev discard_alignment dm ext_range holders inflight power queue range removable ro size slaves stat subsystem trace uevent
/sys/block/dm-1 (filtered):  alignment_offset bdi capability dev discard_alignment dm ext_range holders inflight power queue range removable ro size slaves stat subsystem trace uevent
/sys/block/sda (filtered):  alignment_offset bdi capability dev device discard_alignment events events_async events_poll_msecs ext_range holders inflight power queue range removable ro sda1 sda2 sda3 size slaves stat subsystem trace uevent
/sys/block/sdb (filtered):  alignment_offset bdi capability dev device discard_alignment events events_async events_poll_msecs ext_range holders inflight power queue range removable ro sdb1 size slaves stat subsystem trace uevent
/sys/block/sr0 (filtered):  alignment_offset bdi capability dev device discard_alignment events events_async events_poll_msecs ext_range holders inflight power queue range removable ro size slaves stat subsystem trace uevent
/dev (filtered):  autofs block bsg btrfs-control bus cdrom char console core cpu cpu_dma_latency cuse disk dm-0 dm-1 dri ecryptfs fb0 fd full fuse hpet input kmsg kvm log mapper mcelog mei mem net network_latency network_throughput null port ppp psaux ptmx pts random rfkill rtc rtc0 sda sda1 sda2 sda3 sdb sdb1 sg0 sg1 sg2 shm snapshot snd sr0 stderr stdin stdout ubuntu-vg uhid uinput urandom v4l vga_arbiter vhci vhost-net video0 zero
ls /dev/mapper:  control ubuntu--vg-root ubuntu--vg-swap_1

=================== hexdump -n512 -C /dev/sda1
00000000  eb 58 90 6d 6b 66 73 2e  66 61 74 00 02 08 20 00  |.X.mkfs.fat... .|
00000010  02 00 00 00 00 f8 00 00  3f 00 ff 00 00 08 00 00  |........?.......|
00000020  00 00 10 00 fe 03 00 00  00 00 00 00 02 00 00 00  |................|
00000030  01 00 06 00 00 00 00 00  00 00 00 00 00 00 00 00  |................|
00000040  80 01 29 ed 2c 6f b6 4e  4f 20 4e 41 4d 45 20 20  |..).,o.NO NAME  |
00000050  20 20 46 41 54 33 32 20  20 20 0e 1f be 77 7c ac  |  FAT32   ...w|.|
00000060  22 c0 74 0b 56 b4 0e bb  07 00 cd 10 5e eb f0 32  |".t.V.......^..2|
00000070  e4 cd 16 cd 19 eb fe 54  68 69 73 20 69 73 20 6e  |.......This is n|
00000080  6f 74 20 61 20 62 6f 6f  74 61 62 6c 65 20 64 69  |ot a bootable di|
00000090  73 6b 2e 20 20 50 6c 65  61 73 65 20 69 6e 73 65  |sk.  Please inse|
000000a0  72 74 20 61 20 62 6f 6f  74 61 62 6c 65 20 66 6c  |rt a bootable fl|
000000b0  6f 70 70 79 20 61 6e 64  0d 0a 70 72 65 73 73 20  |oppy and..press |
000000c0  61 6e 79 20 6b 65 79 20  74 6f 20 74 72 79 20 61  |any key to try a|
000000d0  67 61 69 6e 20 2e 2e 2e  20 0d 0a 00 00 00 00 00  |gain ... .......|
000000e0  00 00 00 00 00 00 00 00  00 00 00 00 00 00 00 00  |................|
*
000001f0  00 00 00 00 00 00 00 00  00 00 00 00 00 00 55 aa  |..............U.|
00000200

WARNING: GPT (GUID Partition Table) detected on '/dev/sda'! The util fdisk doesn't support GPT. Use GNU Parted.

Disk /dev/mapper/ubuntu--vg-root doesn't contain a valid partition table
Disk /dev/mapper/ubuntu--vg-swap_1 doesn't contain a valid partition table

=================== df -Th:

Filesystem     Type       Size  Used Avail Use% Mounted on
/cow           overlayfs  4.9G  142M  4.8G   3% /
udev           devtmpfs   4.9G   12K  4.9G   1% /dev
tmpfs          tmpfs      993M  1.2M  992M   1% /run
/dev/sdb1      vfat       7.4G  5.9G  1.5G  81% /cdrom
/dev/loop0     squashfs   939M  939M     0 100% /rofs
none           tmpfs      4.0K     0  4.0K   0% /sys/fs/cgroup
tmpfs          tmpfs      4.9G  1.2M  4.9G   1% /tmp
none           tmpfs      5.0M     0  5.0M   0% /run/lock
none           tmpfs      4.9G   80K  4.9G   1% /run/shm
none           tmpfs      100M   64K  100M   1% /run/user
/dev/sda1      vfat       511M  2.7M  509M   1% /mnt/boot-sav/sda1
/dev/sda2      ext2       237M  126M  100M  56% /mnt/boot-sav/sda2

=================== fdisk -l:

Disk /dev/sda: 500.1 GB, 500107862016 bytes
255 heads, 63 sectors/track, 60801 cylinders, total 976773168 sectors
Units = sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 4096 bytes
I/O size (minimum/optimal): 4096 bytes / 4096 bytes
Disk identifier: 0x00000000

Device Boot      Start         End      Blocks   Id  System
/dev/sda1               1   976773167   488386583+  ee  GPT
Partition 1 does not start on physical sector boundary.

Disk /dev/mapper/ubuntu--vg-root: 497.2 GB, 497234739200 bytes
255 heads, 63 sectors/track, 60452 cylinders, total 971161600 sectors
Units = sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 4096 bytes
I/O size (minimum/optimal): 4096 bytes / 4096 bytes
Disk identifier: 0x00000000


Disk /dev/mapper/ubuntu--vg-swap_1: 2063 MB, 2063597568 bytes
255 heads, 63 sectors/track, 250 cylinders, total 4030464 sectors
Units = sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 4096 bytes
I/O size (minimum/optimal): 4096 bytes / 4096 bytes
Disk identifier: 0x00000000


Disk /dev/sdb: 7862 MB, 7862353920 bytes
37 heads, 37 sectors/track, 11217 cylinders, total 15356160 sectors
Units = sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disk identifier: 0x000760f0

Device Boot      Start         End      Blocks   Id  System
/dev/sdb1   *        8064    15356159     7674048    c  W95 FAT32 (LBA)


No OS or WinEFI system
gui-tab-other.sh: line 93: _checkbutton_repairfilesystems: command not found
No OS or WinEFI system


=================== Suggested repair
The default repair of the Boot-Repair utility would not act on the MBR.
Additional repair would be performed:  repair-filesystems


=================== User settings
The settings chosen by the user will not act on the boot.

@+.   Babdu89  .


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

Hors ligne

#18 Le 20/04/2020, à 14:37

LukePerp

Re : [Script] Synthèse rapport boot

J'ai trouvé la cause des zones vides. La zone entrée de texte de yad --entry ne supporte pas les textes longs tel que ceux du post #11. Je cherche à traiter le sujet avec yad --form --field=:TXT mais le nouveau problème est que la zone de texte de form ne traite pas les sauts de ligne \n. Alors je cherche à corriger avec printf. J'explore la piste suivante, mais je bute sur le problème de la prise en charge des caractères spéciaux, tel que %, de printf et de sa prise en charge des sauts de ligne \n.

rapport=$(yad --title=Rapport --text="Coller tout le rapport seul" --fixed --width=500 --height=200 --center --button=OK --form --field=:TXT)
printf '%s' "${rapport}" > /tmp/rapport

Dernière modification par LukePerp (Le 20/04/2020, à 14:47)


Desktop & Laptop - Ubuntu Mate dernière LTS - Intel i5 - 16 Go - Dual boot Windows offline

Hors ligne

#19 Le 20/04/2020, à 16:25

ar barzh paour

Re : [Script] Synthèse rapport boot

hello , je me suis souvenu que j'utilisais dans un script xsel
comment j'ai résolu :
il faut d'abord installer xsel

dans le script remplacer la ligne

rapport=$(yad --entry .....

par la ligne

rapport="$(xsel -o)"

# j'ai ajouté un test sur la longueur du fichier ... à voir pour son utilité , mais il faut prévenir qu'il faut d'abord sélectionner avant de lancer le script
# sinon il y a des chances pour que le script donne un résultat vide

[[ ${#rapport} -le 1000 ]]  && echo "avant de lancer le programme ,il faut sélectionner les lignes du fichier à traiter" && read g && exit 1

donc
installer xsel
modifier le script

utilisation :
1-sélectionner les lignes à traiter
2- lancer le script

Dernière modification par ar barzh paour (Le 20/04/2020, à 16:29)


PC          : B760M DS3H DDR4,  12th Gen Intel(R) Core(TM) i3-12100, RAM DDR4 8GiB -2400 Ubuntu 22.04, 22.04, 23.04
Portable1 : Intel(R) Core(TM)2 Duo CPU     T6570  @ 2.10GHz RAM 4GiB DDR2 667 MHz Ubuntu 23.04 ( en voyage )
Portable2 : T5750  @ 2.00GHz RAM 1GiB DDR2 667 Mhz Ubuntu 20.04 ( batterie HS )
stourm a ran war bep tachenn (Angela Duval) ( Je combats sur tous les fronts )

Hors ligne

#20 Le 20/04/2020, à 16:59

LukePerp

Re : [Script] Synthèse rapport boot

Merci pour ta suggestion. J'ai trouvé une solution avant ton post 19, je regarderai ta solution dès que possible. J'ai actualisé mon script du post 1.
J'ai remplacé la petite zone de texte :

rapport=$(yad --entry --button=OK --fixed --title="Source du rapport" --width=400 --height=70 --center --entry-label="Coller tout le rapport seul")

par une fenêtre de texte qui envoi le résultat dans un fichier, avec l'astuce du -e au lieu de printf de mon post 12

textrapport=$(yad --title=Rapport --text="Coller tout le rapport seul" --fixed --width=500 --height=200 --center --button=OK --form --field=:TXT)
rapport="/tmp/syntheserapport"
echo -e "$textrapport" > "$rapport"

et j'ai remplacé le traitement avec echo

echo "$rapport"

par cat du fichier

cat "$rapport"

J'ai essayé vos différents rapports ci-dessus, c'est bon il n'y a plus de vide. Je vais maintenant travailler sur le traitement des partitions cryptées, dont je ne connais pas leurs entrées dans les rapports boot info. Merci encore pour vos contributions smile

Dernière modification par LukePerp (Le 20/04/2020, à 17:01)


Desktop & Laptop - Ubuntu Mate dernière LTS - Intel i5 - 16 Go - Dual boot Windows offline

Hors ligne

#21 Le 20/04/2020, à 17:04

marcus68

Re : [Script] Synthèse rapport boot

il y a déjà eu des cas ou le "rapport boot" a été utile pour dépanner un utilisateur ?

Parce qu'en règle général, il suffit de réinstaller le GRUB dans la grande majorité des cas.

Je me pose la question de perdre du temps à créer un script, qui lui même prend un rapport qui est généré par un autre script, qui au final n'est peut-être pas tant utile que ça.

A moins que le but est de s’entraîner à faire des scripts ?

Hors ligne

#22 Le 20/04/2020, à 17:40

LukePerp

Re : [Script] Synthèse rapport boot

marcus68 a écrit :

il y a déjà eu des cas ou le "rapport boot" a été utile pour dépanner un utilisateur ?

Parce qu'en règle général, il suffit de réinstaller le GRUB dans la grande majorité des cas.

Je me pose la question de perdre du temps à créer un script, qui lui même prend un rapport qui est généré par un autre script, qui au final n'est peut-être pas tant utile que ça.

A moins que le but est de s’entraîner à faire des scripts ?

.
Le rapport est très utile dans beaucoup de situation. La réinstallation de grub ne fonctionne pas à tout les coups. Il y a plusieurs sujets comme ça dans le forum, je vais essayer de les retrouver. J'aime bien analyser le rapport de boot info pour trouver la cause du problème, mais sa lecture est à mon gout pénible, d'ou mon script, qui sera probablement utile qu'à moi. J'aime bien coder aussi.


Desktop & Laptop - Ubuntu Mate dernière LTS - Intel i5 - 16 Go - Dual boot Windows offline

Hors ligne

#23 Le 20/04/2020, à 17:45

ar barzh paour

Re : [Script] Synthèse rapport boot

marcus68 a écrit :

il y a déjà eu des cas ou le "rapport boot" a été utile pour dépanner un utilisateur ?

là je pense que oui !!! il y a une foultitude de cas de dépannage

marcus68 a écrit :

A moins que le but est de s’entraîner à faire des scripts ?

pour mon cas c'est aussi oui ! lol lol

maintenant est-ce que ce script est utile , je ne sais pas !!! il donne une vision assez synthétique , il y manque certainement des infos , mais on pourra toujours se référer au fichier source si besoin


et LukePerp a bien précisé
Le script suivant répond à mon besoin. Je l'ai fait pour moi

et qu'il précise
Je le partage ici afin d'avoir vos suggestions d'améliorations.
ce que je trouve sympa !

un point à améliorer , : le rapport du contenu de fstab , le mien n'est pas utilisable , toutes les lignes se suivent , on ne sait pas à qui appartient le fstab
suggestion : supprimer egrep -v "(^#.*|^$)" , un peu embêtant mais ...
EDIT : non voir post 26

Dernière modification par ar barzh paour (Le 20/04/2020, à 19:20)


PC          : B760M DS3H DDR4,  12th Gen Intel(R) Core(TM) i3-12100, RAM DDR4 8GiB -2400 Ubuntu 22.04, 22.04, 23.04
Portable1 : Intel(R) Core(TM)2 Duo CPU     T6570  @ 2.10GHz RAM 4GiB DDR2 667 MHz Ubuntu 23.04 ( en voyage )
Portable2 : T5750  @ 2.00GHz RAM 1GiB DDR2 667 Mhz Ubuntu 20.04 ( batterie HS )
stourm a ran war bep tachenn (Angela Duval) ( Je combats sur tous les fronts )

Hors ligne

#24 Le 20/04/2020, à 18:38

LukePerp

Re : [Script] Synthèse rapport boot

ar barzh paour a écrit :

un point à améliorer , : le rapport du contenu de fstab , le mien n'est pas utilisable , toutes les lignes se suivent , on ne sait pas à qui appartient le fstab

Bien vue, je vais améliorer ça, merci smile


Desktop & Laptop - Ubuntu Mate dernière LTS - Intel i5 - 16 Go - Dual boot Windows offline

Hors ligne

#25 Le 20/04/2020, à 18:59

Babdu89

Re : [Script] Synthèse rapport boot

Avec le boot info du post#11, voila ce que j'obtiens;


=================== Mode UEFI/Legacy


=================== efibootmgr


=================== Partition(s) EFI


=================== Grub MBR


=================== OS détecté par os-prober


=================== Partition(s) avec OS


=================== Contenu de /etc/fstab


=================== UUID blkid


=================== Type de disque et partition

Souci?.


bernard@bernard-System-Product-Name:~$ 
bernard@bernard-System-Product-Name:~$ #!/bin/bash
bernard@bernard-System-Product-Name:~$ 
bernard@bernard-System-Product-Name:~$ # Récupération du rapport
bernard@bernard-System-Product-Name:~$ # Faut coller tout le rapport seul
bernard@bernard-System-Product-Name:~$ textrapport=$(yad --title=Rapport --text="Coller tout le rapport seul" --fixed --width=500 --height=200 --center --button=OK --form --field=:TXT)
bernard@bernard-System-Product-Name:~$ -m 2)"
bash: erreur de syntaxe près du symbole inattendu « ) »
bernard@bernard-System-Product-Name:~$ 
bernard@bernard-System-Product-Name:~$ # fstab
bernard@bernard-System-Product-Name:~$ fstab=$(cat "$rapport" | sed -n "/fstab: ================================/,/===============/p" | sed -e "/fstab: ================================/d" | sed -e "/===============/d" | egrep -v "(^#.*|^$)" | sed -e "/--------------------------------------------------------------------------------/d")
cat: '': Aucun fichier ou dossier de ce type
bernard@bernard-System-Product-Name:~$ 
bernard@bernard-System-Product-Name:~$ # UUID blkid
bernard@bernard-System-Product-Name:~$ blkidoutput=$(cat "$rapport" | sed -n '\|"blkid" output:|,\|by-id|p' | sed -e '\|"blkid" output:|d' | sed -e '\|by-id|d' | grep -Ev "loop" | grep -Ev "iso9660" | awk 'NF')
cat: '': Aucun fichier ou dossier de ce type
bernard@bernard-System-Product-Name:~$ 
bernard@bernard-System-Product-Name:~$ # fdisk, GPT, Dos
bernard@bernard-System-Product-Name:~$ fdiskoutput=$(cat "$rapport" | sed -n "/=================== fdisk/,/===============/p" | sed -e "/=================== fdisk/d" | sed -e "/===============/d" | grep -Ev "Disk model" | grep -Ev "Sector size" | grep -Ev "I/O size" | grep -Ev "Disk identifier" | grep -Ev "Units" | grep -Ev "loop" | awk 'NF')
cat: '': Aucun fichier ou dossier de ce type
bernard@bernard-System-Product-Name:~$ 
bernard@bernard-System-Product-Name:~$ output=$(
> echo "=================== Mode UEFI/Legacy"
> echo "$UEFImode"
> echo ""
> echo "=================== efibootmgr"
> echo "$efibootmgr"
> echo ""
> echo "=================== Partition(s) EFI"
> echo "$EFIpartition"
> echo ""
> echo "=================== Grub MBR"
> echo "$GrubMBR"
> echo ""
> echo "=================== OS détecté par os-prober"
> echo "$OSprober"
> echo ""
> echo "=================== Partition(s) avec OS"
> echo "$OSexist"
> echo ""
> echo "=================== Contenu de /etc/fstab"
> echo "$fstab"
> echo ""
> echo "=================== UUID blkid"
> echo "$blkidoutput"
> echo ""
> echo "=================== Type de disque et partition"
> echo "$fdiskoutput")
bernard@bernard-System-Product-Name:~$ 
bernard@bernard-System-Product-Name:~$ echo -e "$output" | yad --text-info --width=800 --height=500 --fixed --center --title="Synthèse du rapport" --button=OK

J'ai copié le contenu du script dans le terminal, il se lance, la fenêtre yad s'ouvre, j'y colle le contenu du boot info et résultat ci-dessus.

@+.   Babdu89   .


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

Hors ligne