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 02/03/2018, à 16:50

Crap0

grub-imageboot - tout va bien mais démarre pas sur l'iso depuis grub2

Voilà et bonjour.
J'ai suivis ce post ci : https://forum.ubuntu-fr.org/viewtopic.php?id=1850541

J'obtiens tout de bon pour l'installation
la commande

sudo update-grub2

me donne bien une réponse, avec parmis d'autres (les autres qui me sont classique):

Found iso image: /boot/images/xubuntu-16.04.3-desktop-amd64.iso

(xubuntu-16.04.3-desktop-amd64.iso : est bien l'image que j'ai choisie de copier-coller dans mon /boot/images)

Je redemarre avec la touche "esc" pour accéder a l'interface "Grub2"
je sélectionne mon image "xubuntu" - je vous rassure, je suis bien sur un ordi tournant en amd64 -

là, du moins j'ai l'impression car des textes jamais vu depuis lors apparaissent, ça tourne ... mais au final: j'arrive sur ma session traditionnel de mon Lubuntu 16.4.3 ...

--
- 1) y a t-il un autre logiciel plus adapté (la date du post remonte à juin 2015)
- 2) qu'aurais je pas fini, compris, fait ?
- 3) que pensez vous de cette demarche ci : https://doc.ubuntu-fr.org/tutoriel/grub … images_iso ?
Je l'ai essayer mais j'ai tout fait planter
Qu'utilisez-vous pour cette fonction-option ?
- 4) dans un futur proche, j'aimerais faire un dual boot avec un osx ... donc mettre rEFInd pour accéder aux différant os (mac et linux)
est ce problèmatique? A quel moment vais je devoir appuyer sur "esc" ou autres pour accéder à mon image "xubuntu" dans cette exemple ci?
--

merci
aPluche

--
ps: j'ai aussi essayer: grml ( https://forum.ubuntu-fr.org/viewtopic.php?id=1159601 )
mais finitos tutti total foiré : mais l'info est un peu vieillote, j'aurais du m'en douter ...
je déconseille ! : est ce un bonconseil ? lol


Artwork : https://artgstructure.wordpress.com/ (encre de chine et autres)
Musique : https://www.mixcloud.com/ex_s/ (dj set)

Hors ligne

#2 Le 02/03/2018, à 22:44

Babdu89

Re : grub-imageboot - tout va bien mais démarre pas sur l'iso depuis grub2

Bonsoir.

Actuellement je lance mes iso en live depuis Grub comme ceci, en modifiant le fichier /etc/grub.d/40_custom
Après  # the 'exec tail' line above., j'ajoute les menuentry.

### 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 partition system" {
insmod part_msdos
insmod iso9660
search --no-floppy --fs-uuid --set=root 041cfc74-96e1-4c0f-ad6f-61ae768a1a3c
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-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
}
### END /etc/grub.d/40_custom ###

Alors;

menuentry "Iso Live ubuntu-budgie-17.04-desktop-i386.iso dans partition system"

Signifie que je stocke l'iso dans la racine de la partition système, de l'Os qui utilise Grub pour démarrer.
Pour que Grub sache où est stockée l'iso, il faut lui indiquer la partition système avec son UUID comme ceci;

search --no-floppy --fs-uuid --set=root 041cfc74-96e1-4c0f-ad6f-61ae768a1a3c

Pour la ligne linux(loop) ;

linux (loop)/casper/vmlinuz.efi boot=

On aura pour vmlinuz
Pour une iso en 32 bit;  vmlinuz
Pour une iso en 64 bit;  vmlinuz.efi

Alors pour la ligne initrd;

initrd (loop)/casper/initrd.lz

On peut avoir;  initrd.img ou initrd.lz  ou encore une autre extension, dont je ne me souviens plus.

Pour savoir laquelle reporter, il faut ouvrir l'iso avec un visionneur d'archive, et fouiner dans les dossiers pour  trouver le fichier initrd (dans /casper)

1520025648.png

Alors pour t'aider.

Tu copies ton iso;   xubuntu-16.04.3-desktop-amd64.iso  dans la racine de ta partition système.
Tu indiques le retour de ;

sudo blkid

En indiquant la partition système (/dev/sd**)

Tu ouvres l'iso avec un visionneur d'archive pour indiquer l’extension du fichier initrd. (.img  .lz  ou autre)

Je te proposerais la modification à faire dans le fichier; /etc/grub.d/40_custom

La modif sera suivie d'une maj de Grub, pour porter la nouvelle entrée permettant de lancer l'iso en live depuis le menu Grub.

En lisant les menuentry ci-dessus, tu pourras voir que je stocke aussi les iso sur clé usb, il faut dans ce cas indiquer l'UUID de la partition de la clé où est stockée l'iso à lancer en live.
Çà veut dire qu'on peut mettre les iso dans la racine (çà facilite la modif, je les mets aussi dans des dossiers.) d'autre partitions du disque, quel qu’en soit le format. J'ai des iso stockées dans de partition NTFS sur une autre machine.

@+.   Babdu89   .

Dernière modification par Babdu89 (Le 02/03/2018, à 22:49)


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

Hors ligne

#3 Le 02/03/2018, à 22:59

??

Re : grub-imageboot - tout va bien mais démarre pas sur l'iso depuis grub2

Crap0 a écrit :

Voilà et bonjour.
.......
- 4) dans un futur proche, j'aimerais faire un dual boot avec un osx ... donc mettre rEFInd pour accéder aux différant os (mac et linux)

Bonsoir.
Quel est ton matériel?
Le but étant de savoir s'il boote en EFI pour être compatible refind.


Ajout pour BABDU89
Avec refind, je mets le contenu de l'iso windows dans une partition FAT32 et le contenu de l'iso ubuntu dans une partition EXT2. Après il se débrouille pour proposer.
Le problème est que je ne sais pas le faire en de commande, il faut que je passe par l'application "gestionnaire d'archive" ou "monteur d'image disque"
ce qui permet aussi au bios EFI de booter cette installation si nécessaire.

Dernière modification par ?? (Le 03/03/2018, à 00:02)


Utiliser REFIND au lieu du GRUB https://doc.ubuntu-fr.org/refind . Aidez à vous faire dépanner en suivant le guide et en utilisant les outils de diagnostic J'ai perdu ma gomme. Désolé pour les fautes d'orthographes non corrigées.

Hors ligne

#4 Le 02/03/2018, à 23:45

Babdu89

Re : grub-imageboot - tout va bien mais démarre pas sur l'iso depuis grub2

Comme je n'avais plus de place dans ma partition système.
J'ai téléchargé l'iso Xubuntu16.04.3 dans la racine de la partition Windows7 de la machine.

J'ai vérifier le MD5;

016171f8298b3eb8ff13acdf8e61be23 *xubuntu-16.04.3-desktop-amd64.iso

Alors dans ,   search --no-floppy --fs-uuid.....,  l'UUID de la partition;  FA2AC6152AC5CF37
Pour vmlinuz;  vmlinuz.efi
Pour le initrd ;   initrd.lz

J'ai ajouter un menuentry dans /etc/grub.d/40_custom, comme ceci;

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
}

Une maj de Grub pour la prise en compte de la modif...

Et je poste depuis la session live xubuntu-16.04.3-desktop-amd64.iso

1520030636.png

Comme le suppose  ?? , ce sera intéressant de savoir si çà marche depuis une machine  Mac...
@+.   Babdu89 .

Dernière modification par Babdu89 (Le 02/03/2018, à 23:55)


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

Hors ligne

#5 Le 05/03/2018, à 03:00

Crap0

Re : grub-imageboot - tout va bien mais démarre pas sur l'iso depuis grub2

Hello

merci:
ça marche ...

?? a écrit :

Quel est ton matériel?

C'est un mac ... là, sais pas trop te dire lequel exactement.
mais j'avais déjà fait un dual boot avec refind et no problem.


Artwork : https://artgstructure.wordpress.com/ (encre de chine et autres)
Musique : https://www.mixcloud.com/ex_s/ (dj set)

Hors ligne

#6 Le 05/03/2018, à 09:10

??

Re : grub-imageboot - tout va bien mais démarre pas sur l'iso depuis grub2

Bonjour.
Lorsque tu utilises refind, il suffit que tu mettes les fichiers contenus dans l'iso dans une partition indépendante
      Fat32 pour windows , taille 5 Go
     Ext2 pour ubuntu , taille 2 Go
Il te proposera alors de les booter.


Utiliser REFIND au lieu du GRUB https://doc.ubuntu-fr.org/refind . Aidez à vous faire dépanner en suivant le guide et en utilisant les outils de diagnostic J'ai perdu ma gomme. Désolé pour les fautes d'orthographes non corrigées.

Hors ligne

#7 Le 25/03/2018, à 13:06

Crap0

Re : grub-imageboot - tout va bien mais démarre pas sur l'iso depuis grub2

hello

?? a écrit :

Lorsque tu utilises refind, il suffit que tu mettes les fichiers contenus dans l'iso dans une partition indépendante

Aussi simple que ça ?
Donc pas besoin de la démarche de "Babdu89" dans le post #2 de ce sujet ?
Créer un nombre de partition ext2. Nombre équivalent d'os à mettre au démarage (juste une pour moi) et y loger le contenu d'une iso linux ...
Ces os linux ajouter sont-elles en mode persistant ou non-persistant ?

hiep, merci


Artwork : https://artgstructure.wordpress.com/ (encre de chine et autres)
Musique : https://www.mixcloud.com/ex_s/ (dj set)

Hors ligne

#8 Le 25/03/2018, à 17:02

??

Re : grub-imageboot - tout va bien mais démarre pas sur l'iso depuis grub2

Bonjour
En MAC, tu utilises EFI, Babdu89 est en LEGACY. Il ne peut pas faire autrement.

Tu ne seras pas en mode persistant qui est une autre démarche.
Attention loger le contenu ne consiste pas à copier l'ISO mais à ouvrir l'iso et copier les fichiers qui sont à l'intérieur. Ce n'est pas une démarche simple. Du moins je ne connais pas la commande le faisant, Je suis obligé de passer par le logiciel ouvrant un fichier ISO.


Utiliser REFIND au lieu du GRUB https://doc.ubuntu-fr.org/refind . Aidez à vous faire dépanner en suivant le guide et en utilisant les outils de diagnostic J'ai perdu ma gomme. Désolé pour les fautes d'orthographes non corrigées.

Hors ligne

#9 Le 25/03/2018, à 17:43

Babdu89

Re : grub-imageboot - tout va bien mais démarre pas sur l'iso depuis grub2

Bonjour.

?? a écrit;

Babdu89 est en LEGACY. Il ne peut pas faire autrement.

Non, je lance aussi des iso 64 Bits en session live en mode UEFI, depuis le Grub d'une installation faite en UEFI, lancée elle même en mode UEFI, depuis que je dispose d'une machine UEFI/Bios_Legacy.

Je vais faire un boot info dès que je le peux...

@+.   Babdu89  .

Dernière modification par Babdu89 (Le 25/03/2018, à 17:44)


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

Hors ligne

#10 Le 25/03/2018, à 18:09

??

Re : grub-imageboot - tout va bien mais démarre pas sur l'iso depuis grub2

Je n'avais pas noté que tu avais une machine EFI.       Avec un MAC qui a déjà REFIND, cela me semble plus simple de décomprimer l'ISO dans une partition (EXT2 voir EXT4) , Cela permet d'invalider la mise en place du SHIM qui va vouloir s'installer prioritairement

Puisque vous avez décidé de ne plus utiliser le grub, pensez que vos prochaines installations de ubuntu vont détruire le boot refind si vous ne faites rien. Pour éviter cette situation, la solution est de détruire ou renommer shimx64.efi directement dans le support d'installation. Ce fichier est stocké à l'adresse suivante: /pool/main/s/shim-signed/shim-signed_xxxxxxxxxxxxxxxxxxx_amd64.deb

Dernière modification par ?? (Le 25/03/2018, à 18:11)


Utiliser REFIND au lieu du GRUB https://doc.ubuntu-fr.org/refind . Aidez à vous faire dépanner en suivant le guide et en utilisant les outils de diagnostic J'ai perdu ma gomme. Désolé pour les fautes d'orthographes non corrigées.

Hors ligne

#11 Le 25/03/2018, à 18:57

Babdu89

Re : grub-imageboot - tout va bien mais démarre pas sur l'iso depuis grub2

Le boot info fait depuis une session live ubuntu17.10 en mode UEFI, lancée depuis le Grub de la Xubuntu-efi installé dans la clé Emtec de tests dans la partition /dev/sdb3. Xubuntu-efi lancé en mode UEFI.

http://paste.ubuntu.com/p/mxJf3ZYZBF/

Ubuntu Pastebin
Paste from boot-repair at Sun, 25 Mar 2018 17:47:56 +0000
Download as text

 Boot Info Script 8f991e4 + Boot-Repair extra info      [Boot-Info 25oct2017]


============================= 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:  
    Boot files:        /bootmgr /Boot/BCD /Windows/System32/winload.exe

sda2: __________________________________________________________________________

    File system:       ext4
    Boot sector type:  -
    Boot sector info: 
    Operating System:  Ubuntu 14.04.5 LTS
    Boot files:        /boot/grub/grub.cfg /etc/fstab 
                       /boot/extlinux/extlinux.conf 
                       /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 14.04.1 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: 111.8 GiB, 120034123776 bytes, 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
Disklabel type: dos

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   234,440,703   178,057,216  83 Linux


Drive: sdb _____________________________________________________________________
Disk /dev/sdb: 58.9 GiB, 63216549888 bytes, 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
Disklabel type: gpt

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/loop0                                              squashfs   
/dev/sda1        FA2AC6152AC5CF37                       ntfs       windows-7-del
/dev/sda2        041cfc74-96e1-4c0f-ad6f-61ae768a1a3c   ext4       fusion-14._dell
/dev/sdb1        92C8-E043                              vfat       
/dev/sdb2                                                          
/dev/sdb3        72a66c99-76c9-420b-b133-77d8811a67f5   ext4       xubuntu-efi
/dev/sdb4        26e86484-52db-4b3b-ae12-584dd21d8154   ext4       lubuntu-14.04
/dev/sdb5        0669-366B                              vfat       test-multi

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

total 0
lrwxrwxrwx 1 root root  9 Mar 25 17:47 ata-LDLC_07072217A2384 -> ../../sda
lrwxrwxrwx 1 root root 10 Mar 25 17:47 ata-LDLC_07072217A2384-part1 -> ../../sda1
lrwxrwxrwx 1 root root 10 Mar 25 17:47 ata-LDLC_07072217A2384-part2 -> ../../sda2
lrwxrwxrwx 1 root root  9 Mar 25 17:39 ata-TSSTcorp_DVD+_-RW_TS-U633J_R86X6GSZB05544 -> ../../sr0
lrwxrwxrwx 1 root root  9 Mar 25 17:47 usb-_USB_DISK_3.0_07103C4D8A154C54-0:0 -> ../../sdb
lrwxrwxrwx 1 root root 10 Mar 25 17:47 usb-_USB_DISK_3.0_07103C4D8A154C54-0:0-part1 -> ../../sdb1
lrwxrwxrwx 1 root root 10 Mar 25 17:47 usb-_USB_DISK_3.0_07103C4D8A154C54-0:0-part2 -> ../../sdb2
lrwxrwxrwx 1 root root 10 Mar 25 17:47 usb-_USB_DISK_3.0_07103C4D8A154C54-0:0-part3 -> ../../sdb3
lrwxrwxrwx 1 root root 10 Mar 25 17:47 usb-_USB_DISK_3.0_07103C4D8A154C54-0:0-part4 -> ../../sdb4
lrwxrwxrwx 1 root root 10 Mar 25 17:47 usb-_USB_DISK_3.0_07103C4D8A154C54-0:0-part5 -> ../../sdb5

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

Device           Mount_Point              Type       Options

/dev/loop0       /rofs                    squashfs   (ro,noatime)
/dev/sda2        /media/ubuntu/fusion-14._dell ext4       (rw,nosuid,nodev,relatime,data=ordered,uhelper=udisks2)
/dev/sdb3        /media/ubuntu/xubuntu-efi ext4       (rw,nosuid,nodev,relatime,stripe=32639,data=ordered,uhelper=udisks2)
/dev/sdb4        /media/ubuntu/lubuntu-14.04 ext4       (rw,nosuid,nodev,relatime,stripe=32639,data=ordered,uhelper=udisks2)
/dev/sdb5        /media/ubuntu/test-multi vfat       (rw,nosuid,nodev,relatime,uid=999,gid=999,fmask=0022,dmask=0022,codepage=437,iocharset=iso8859-1,shortname=mixed,showexec,utf8,flush,errors=remount-ro,uhelper=udisks2)
/dev/shm         /cdrom                   tmpfs      (rw,relatime,size=1537780k)


=========================== 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-143-generic root=UUID=041cfc74-96e1-4c0f-ad6f-61ae768a1a3c ro  quiet splash $vt_handoff
	initrd	/boot/initrd.img-3.13.0-143-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-143-generic' --class hybryde --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-3.13.0-143-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-143-generic…'
		linux	/boot/vmlinuz-3.13.0-143-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-143-generic
	}
	menuentry 'HYBRYDE FUSION 14.04_Dell-Latitude-E4310 GNU/Linux, with Linux 3.13.0-143-generic (recovery mode)' --class hybryde --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-3.13.0-143-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-143-generic…'
		linux	/boot/vmlinuz-3.13.0-143-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-143-generic
	}
	menuentry 'HYBRYDE FUSION 14.04_Dell-Latitude-E4310 GNU/Linux, avec Linux 3.13.0-142-generic' --class hybryde --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-3.13.0-142-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-142-generic…'
		linux	/boot/vmlinuz-3.13.0-142-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-142-generic
	}
	menuentry 'HYBRYDE FUSION 14.04_Dell-Latitude-E4310 GNU/Linux, with Linux 3.13.0-142-generic (recovery mode)' --class hybryde --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-3.13.0-142-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-142-generic…'
		linux	/boot/vmlinuz-3.13.0-142-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-142-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
}
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 partition system" {
insmod part_msdos
insmod iso9660
search --no-floppy --fs-uuid --set=root 041cfc74-96e1-4c0f-ad6f-61ae768a1a3c
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-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
}
### 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)

  69.222221375 = 74.326794240   boot/grub/grub.cfg                             1
  51.270828247 = 55.051632640   boot/grub/i386-pc/core.img                     1
  37.274021149 = 40.022675456   boot/vmlinuz-3.13.0-142-generic                1
  38.301387787 = 41.125801984   boot/vmlinuz-3.13.0-143-generic                1
  38.301387787 = 41.125801984   vmlinuz                                        1
  37.274021149 = 40.022675456   vmlinuz.old                                    1
  38.104488373 = 40.914382848   boot/initrd.img-3.13.0-142-generic             3
  39.610862732 = 42.531840000   boot/initrd.img-3.13.0-143-generic             5
  39.610862732 = 42.531840000   initrd.img                                     5
  38.104488373 = 40.914382848   initrd.img.old                                 3

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

           GiB - GB             File                                 Fragment(s)

  99.026473999 = 106.328866816  boot/extlinux/extlinux.conf                    1
  51.300090790 = 55.083053056   boot/extlinux/chain.c32                        1

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

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

========================== 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' --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 'LUBUNTU 14.04 CLE EMTEC GNU/Linux' --class lubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-simple-26e86484-52db-4b3b-ae12-584dd21d8154' {
	recordfail
	load_video
	gfxmode $linux_gfx_mode
	insmod gzio
	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  26e86484-52db-4b3b-ae12-584dd21d8154
	else
	  search --no-floppy --fs-uuid --set=root 26e86484-52db-4b3b-ae12-584dd21d8154
	fi
	linux	/boot/vmlinuz-3.13.0-32-generic root=UUID=26e86484-52db-4b3b-ae12-584dd21d8154 ro  quiet splash $vt_handoff
	initrd	/boot/initrd.img-3.13.0-32-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.5 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-142-generic root=UUID=041cfc74-96e1-4c0f-ad6f-61ae768a1a3c ro quiet splash $vt_handoff
	initrd /boot/initrd.img-3.13.0-142-generic
}
submenu 'Options avancées pour Ubuntu 14.04.5 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-142-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-142-generic root=UUID=041cfc74-96e1-4c0f-ad6f-61ae768a1a3c ro quiet splash $vt_handoff
		initrd /boot/initrd.img-3.13.0-142-generic
	}
	menuentry 'HYBRYDE FUSION 14.04_Dell-Latitude-E4310 GNU/Linux, avec Linux 3.13.0-142-generic (sur /dev/sda2)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-3.13.0-142-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-142-generic root=UUID=041cfc74-96e1-4c0f-ad6f-61ae768a1a3c ro quiet splash $vt_handoff
		initrd /boot/initrd.img-3.13.0-142-generic
	}
	menuentry 'HYBRYDE FUSION 14.04_Dell-Latitude-E4310 GNU/Linux, with Linux 3.13.0-142-generic (recovery mode) (sur /dev/sda2)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-3.13.0-142-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-142-generic root=UUID=041cfc74-96e1-4c0f-ad6f-61ae768a1a3c ro recovery nomodeset
		initrd /boot/initrd.img-3.13.0-142-generic
	}
	menuentry 'HYBRYDE FUSION 14.04_Dell-Latitude-E4310 GNU/Linux, avec Linux 3.13.0-141-generic (sur /dev/sda2)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-3.13.0-141-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-141-generic root=UUID=041cfc74-96e1-4c0f-ad6f-61ae768a1a3c ro quiet splash $vt_handoff
		initrd /boot/initrd.img-3.13.0-141-generic
	}
	menuentry 'HYBRYDE FUSION 14.04_Dell-Latitude-E4310 GNU/Linux, with Linux 3.13.0-141-generic (recovery mode) (sur /dev/sda2)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-3.13.0-141-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-141-generic root=UUID=041cfc74-96e1-4c0f-ad6f-61ae768a1a3c ro recovery nomodeset
		initrd /boot/initrd.img-3.13.0-141-generic
	}
}

menuentry 'Ubuntu 14.04.1 LTS (14.04) (sur /dev/sdb4)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-simple-26e86484-52db-4b3b-ae12-584dd21d8154' {
	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  26e86484-52db-4b3b-ae12-584dd21d8154
	else
	  search --no-floppy --fs-uuid --set=root 26e86484-52db-4b3b-ae12-584dd21d8154
	fi
	linux /boot/vmlinuz-3.13.0-32-generic root=UUID=26e86484-52db-4b3b-ae12-584dd21d8154 ro quiet splash $vt_handoff
	initrd /boot/initrd.img-3.13.0-32-generic
}
submenu 'Options avancées pour Ubuntu 14.04.1 LTS (14.04) (sur /dev/sdb4)' $menuentry_id_option 'osprober-gnulinux-advanced-26e86484-52db-4b3b-ae12-584dd21d8154' {
	menuentry 'LUBUNTU 14.04 CLE EMTEC GNU/Linux (sur /dev/sdb4)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-3.13.0-32-generic--26e86484-52db-4b3b-ae12-584dd21d8154' {
		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  26e86484-52db-4b3b-ae12-584dd21d8154
		else
		  search --no-floppy --fs-uuid --set=root 26e86484-52db-4b3b-ae12-584dd21d8154
		fi
		linux /boot/vmlinuz-3.13.0-32-generic root=UUID=26e86484-52db-4b3b-ae12-584dd21d8154 ro quiet splash $vt_handoff
		initrd /boot/initrd.img-3.13.0-32-generic
	}
	menuentry 'LUBUNTU 14.04 CLE EMTEC GNU/Linux, avec Linux 3.13.0-32-generic (sur /dev/sdb4)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-3.13.0-32-generic--26e86484-52db-4b3b-ae12-584dd21d8154' {
		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  26e86484-52db-4b3b-ae12-584dd21d8154
		else
		  search --no-floppy --fs-uuid --set=root 26e86484-52db-4b3b-ae12-584dd21d8154
		fi
		linux /boot/vmlinuz-3.13.0-32-generic root=UUID=26e86484-52db-4b3b-ae12-584dd21d8154 ro quiet splash $vt_handoff
		initrd /boot/initrd.img-3.13.0-32-generic
	}
	menuentry 'LUBUNTU 14.04 CLE EMTEC GNU/Linux, with Linux 3.13.0-32-generic (recovery mode) (sur /dev/sdb4)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-3.13.0-32-generic-root=UUID=26e86484-52db-4b3b-ae12-584dd21d8154 ro recovery nomodeset-26e86484-52db-4b3b-ae12-584dd21d8154' {
		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  26e86484-52db-4b3b-ae12-584dd21d8154
		else
		  search --no-floppy --fs-uuid --set=root 26e86484-52db-4b3b-ae12-584dd21d8154
		fi
		linux /boot/vmlinuz-3.13.0-32-generic root=UUID=26e86484-52db-4b3b-ae12-584dd21d8154 ro recovery nomodeset
		initrd /boot/initrd.img-3.13.0-32-generic
	}
	menuentry 'XUBUNTU 14.04 EFI GNU/Linux, avec Linux 3.13.0-32-generic (sur /dev/sdb3) (sur /dev/sdb4)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-3.13.0-32-generic--26e86484-52db-4b3b-ae12-584dd21d8154' {
		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  26e86484-52db-4b3b-ae12-584dd21d8154
		else
		  search --no-floppy --fs-uuid --set=root 26e86484-52db-4b3b-ae12-584dd21d8154
		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) (sur /dev/sdb4)' --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-26e86484-52db-4b3b-ae12-584dd21d8154' {
		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  26e86484-52db-4b3b-ae12-584dd21d8154
		else
		  search --no-floppy --fs-uuid --set=root 26e86484-52db-4b3b-ae12-584dd21d8154
		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
	}
	menuentry 'Ubuntu 14.04.1 LTS (14.04) (sur /dev/sdb4) (sur /dev/sdb3) (sur /dev/sdb4)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-3.13.0-32-generic--26e86484-52db-4b3b-ae12-584dd21d8154' {
		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  26e86484-52db-4b3b-ae12-584dd21d8154
		else
		  search --no-floppy --fs-uuid --set=root 26e86484-52db-4b3b-ae12-584dd21d8154
		fi
		linux /boot/vmlinuz-3.13.0-32-generic root=UUID=26e86484-52db-4b3b-ae12-584dd21d8154 ro quiet splash $vt_handoff
		initrd /boot/initrd.img-3.13.0-32-generic
	}
	menuentry 'Ubuntu (sur /dev/sdb4) (sur /dev/sdb3) (sur /dev/sdb4)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-3.13.0-32-generic--26e86484-52db-4b3b-ae12-584dd21d8154' {
		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  26e86484-52db-4b3b-ae12-584dd21d8154
		else
		  search --no-floppy --fs-uuid --set=root 26e86484-52db-4b3b-ae12-584dd21d8154
		fi
		linux /boot/vmlinuz-3.13.0-32-generic root=UUID=26e86484-52db-4b3b-ae12-584dd21d8154 ro quiet splash $vt_handoff
		initrd /boot/initrd.img-3.13.0-32-generic
	}
	menuentry 'Ubuntu, avec Linux 3.13.0-32-generic (sur /dev/sdb4) (sur /dev/sdb3) (sur /dev/sdb4)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-3.13.0-32-generic--26e86484-52db-4b3b-ae12-584dd21d8154' {
		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  26e86484-52db-4b3b-ae12-584dd21d8154
		else
		  search --no-floppy --fs-uuid --set=root 26e86484-52db-4b3b-ae12-584dd21d8154
		fi
		linux /boot/vmlinuz-3.13.0-32-generic root=UUID=26e86484-52db-4b3b-ae12-584dd21d8154 ro quiet splash $vt_handoff
		initrd /boot/initrd.img-3.13.0-32-generic
	}
	menuentry 'Ubuntu, with Linux 3.13.0-32-generic (recovery mode) (sur /dev/sdb4) (sur /dev/sdb3) (sur /dev/sdb4)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-3.13.0-32-generic-root=UUID=26e86484-52db-4b3b-ae12-584dd21d8154 ro recovery nomodeset-26e86484-52db-4b3b-ae12-584dd21d8154' {
		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  26e86484-52db-4b3b-ae12-584dd21d8154
		else
		  search --no-floppy --fs-uuid --set=root 26e86484-52db-4b3b-ae12-584dd21d8154
		fi
		linux /boot/vmlinuz-3.13.0-32-generic root=UUID=26e86484-52db-4b3b-ae12-584dd21d8154 ro recovery nomodeset
		initrd /boot/initrd.img-3.13.0-32-generic
	}
	menuentry 'Ubuntu, with Linux 3.13.0-32-generic (sur /dev/sdb3) (sur /dev/sdb4) (sur /dev/sdb3) (sur /dev/sdb4)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-3.13.0-32-generic--26e86484-52db-4b3b-ae12-584dd21d8154' {
		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  26e86484-52db-4b3b-ae12-584dd21d8154
		else
		  search --no-floppy --fs-uuid --set=root 26e86484-52db-4b3b-ae12-584dd21d8154
		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 'Ubuntu, with Linux 3.13.0-32-generic (recovery mode) (sur /dev/sdb3) (sur /dev/sdb4) (sur /dev/sdb3) (sur /dev/sdb4)' --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-26e86484-52db-4b3b-ae12-584dd21d8154' {
		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  26e86484-52db-4b3b-ae12-584dd21d8154
		else
		  search --no-floppy --fs-uuid --set=root 26e86484-52db-4b3b-ae12-584dd21d8154
		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.
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)

  35.439548492 = 38.052925440   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  26e86484-52db-4b3b-ae12-584dd21d8154
else
  search --no-floppy --fs-uuid --set=root 26e86484-52db-4b3b-ae12-584dd21d8154
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=-1
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 'LUBUNTU 14.04 CLE EMTEC GNU/Linux' --class lubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-simple-26e86484-52db-4b3b-ae12-584dd21d8154' {
	recordfail
	load_video
	gfxmode $linux_gfx_mode
	insmod gzio
	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  26e86484-52db-4b3b-ae12-584dd21d8154
	else
	  search --no-floppy --fs-uuid --set=root 26e86484-52db-4b3b-ae12-584dd21d8154
	fi
	linux	/boot/vmlinuz-3.13.0-32-generic root=UUID=26e86484-52db-4b3b-ae12-584dd21d8154 ro  quiet splash $vt_handoff
	initrd	/boot/initrd.img-3.13.0-32-generic
}
submenu 'Options avancées pour LUBUNTU 14.04 CLE EMTEC GNU/Linux' $menuentry_id_option 'gnulinux-advanced-26e86484-52db-4b3b-ae12-584dd21d8154' {
	menuentry 'LUBUNTU 14.04 CLE EMTEC GNU/Linux, avec Linux 3.13.0-32-generic' --class lubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-3.13.0-32-generic-advanced-26e86484-52db-4b3b-ae12-584dd21d8154' {
		recordfail
		load_video
		gfxmode $linux_gfx_mode
		insmod gzio
		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  26e86484-52db-4b3b-ae12-584dd21d8154
		else
		  search --no-floppy --fs-uuid --set=root 26e86484-52db-4b3b-ae12-584dd21d8154
		fi
		echo	'Chargement de Linux 3.13.0-32-generic…'
		linux	/boot/vmlinuz-3.13.0-32-generic root=UUID=26e86484-52db-4b3b-ae12-584dd21d8154 ro  quiet splash $vt_handoff
		echo	'Chargement du disque mémoire initial…'
		initrd	/boot/initrd.img-3.13.0-32-generic
	}
	menuentry 'LUBUNTU 14.04 CLE EMTEC GNU/Linux, with Linux 3.13.0-32-generic (recovery mode)' --class lubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-3.13.0-32-generic-recovery-26e86484-52db-4b3b-ae12-584dd21d8154' {
		recordfail
		load_video
		insmod gzio
		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  26e86484-52db-4b3b-ae12-584dd21d8154
		else
		  search --no-floppy --fs-uuid --set=root 26e86484-52db-4b3b-ae12-584dd21d8154
		fi
		echo	'Chargement de Linux 3.13.0-32-generic…'
		linux	/boot/vmlinuz-3.13.0-32-generic root=UUID=26e86484-52db-4b3b-ae12-584dd21d8154 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+ ###
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  26e86484-52db-4b3b-ae12-584dd21d8154
	else
	  search --no-floppy --fs-uuid --set=root 26e86484-52db-4b3b-ae12-584dd21d8154
	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  26e86484-52db-4b3b-ae12-584dd21d8154
	else
	  search --no-floppy --fs-uuid --set=root 26e86484-52db-4b3b-ae12-584dd21d8154
	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' {
	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.5 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-142-generic root=UUID=041cfc74-96e1-4c0f-ad6f-61ae768a1a3c ro quiet splash $vt_handoff
	initrd /boot/initrd.img-3.13.0-142-generic
}
submenu 'Options avancées pour Ubuntu 14.04.5 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-142-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-142-generic root=UUID=041cfc74-96e1-4c0f-ad6f-61ae768a1a3c ro quiet splash $vt_handoff
		initrd /boot/initrd.img-3.13.0-142-generic
	}
	menuentry 'HYBRYDE FUSION 14.04_Dell-Latitude-E4310 GNU/Linux, avec Linux 3.13.0-142-generic (sur /dev/sda2)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-3.13.0-142-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-142-generic root=UUID=041cfc74-96e1-4c0f-ad6f-61ae768a1a3c ro quiet splash $vt_handoff
		initrd /boot/initrd.img-3.13.0-142-generic
	}
	menuentry 'HYBRYDE FUSION 14.04_Dell-Latitude-E4310 GNU/Linux, with Linux 3.13.0-142-generic (recovery mode) (sur /dev/sda2)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-3.13.0-142-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-142-generic root=UUID=041cfc74-96e1-4c0f-ad6f-61ae768a1a3c ro recovery nomodeset
		initrd /boot/initrd.img-3.13.0-142-generic
	}
	menuentry 'HYBRYDE FUSION 14.04_Dell-Latitude-E4310 GNU/Linux, avec Linux 3.13.0-141-generic (sur /dev/sda2)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-3.13.0-141-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-141-generic root=UUID=041cfc74-96e1-4c0f-ad6f-61ae768a1a3c ro quiet splash $vt_handoff
		initrd /boot/initrd.img-3.13.0-141-generic
	}
	menuentry 'HYBRYDE FUSION 14.04_Dell-Latitude-E4310 GNU/Linux, with Linux 3.13.0-141-generic (recovery mode) (sur /dev/sda2)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-3.13.0-141-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-141-generic root=UUID=041cfc74-96e1-4c0f-ad6f-61ae768a1a3c ro recovery nomodeset
		initrd /boot/initrd.img-3.13.0-141-generic
	}
}

menuentry 'Ubuntu 14.04.1 LTS (14.04) (sur /dev/sdb3)' --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 (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
	}
	menuentry 'Ubuntu 14.04.1 LTS (14.04) (sur /dev/sdb4) (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=26e86484-52db-4b3b-ae12-584dd21d8154 ro quiet splash $vt_handoff
		initrd /boot/initrd.img-3.13.0-32-generic
	}
	menuentry 'Ubuntu (sur /dev/sdb4) (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=26e86484-52db-4b3b-ae12-584dd21d8154 ro quiet splash $vt_handoff
		initrd /boot/initrd.img-3.13.0-32-generic
	}
	menuentry 'Ubuntu, avec Linux 3.13.0-32-generic (sur /dev/sdb4) (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=26e86484-52db-4b3b-ae12-584dd21d8154 ro quiet splash $vt_handoff
		initrd /boot/initrd.img-3.13.0-32-generic
	}
	menuentry 'Ubuntu, with Linux 3.13.0-32-generic (recovery mode) (sur /dev/sdb4) (sur /dev/sdb3)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-3.13.0-32-generic-root=UUID=26e86484-52db-4b3b-ae12-584dd21d8154 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=26e86484-52db-4b3b-ae12-584dd21d8154 ro recovery nomodeset
		initrd /boot/initrd.img-3.13.0-32-generic
	}
	menuentry 'Ubuntu, with Linux 3.13.0-32-generic (sur /dev/sdb3) (sur /dev/sdb4) (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 'Ubuntu, with Linux 3.13.0-32-generic (recovery mode) (sur /dev/sdb3) (sur /dev/sdb4) (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.
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
}

### 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>
# / was on /dev/sdb4 during installation
UUID=26e86484-52db-4b3b-ae12-584dd21d8154 /               ext4    errors=remount-ro 0       1
--------------------------------------------------------------------------------

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

           GiB - GB             File                                 Fragment(s)

  44.151466370 = 47.407276032   boot/grub/grub.cfg                             1
  50.068786621 = 53.760950272   boot/grub/i386-pc/core.img                     1
  38.903316498 = 41.772118016   boot/vmlinuz-3.13.0-32-generic                 2
  38.903316498 = 41.772118016   vmlinuz                                        2
  39.634895325 = 42.557644800   boot/initrd.img-3.13.0-32-generic              2
  39.634895325 = 42.557644800   initrd.img                                     2

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

File descriptor 9 (/proc/3631/mountinfo) leaked on lvs invocation. Parent PID 18303: bash
File descriptor 63 (pipe:[66742]) leaked on lvs invocation. Parent PID 18303: bash

ADDITIONAL INFORMATION :
=================== log of boot-info 20180325_1747 ===================
boot-info version : 4ppa65
boot-sav version : 4ppa65
boot-sav-extra version : 4ppa65
glade2script version : 3.2.3~ppa4
Error: The backup GPT table is corrupt, but the primary appears OK, so that will be used.
The backup GPT table is corrupt, but the primary appears OK, so that will be used.
boot-info is executed in live-session (Ubuntu 17.10, artful, Ubuntu, x86_64)
CPU op-mode(s):      32-bit, 64-bit
BOOT_IMAGE=(loop)/casper/vmlinuz.efi boot=casper iso-scan/filename=/ubuntu-17.10-desktop-amd64.iso toram locale=fr_FR bootkbd=fr console-setup/layoutcode=fr noprompt noeject quiet splash --
ls: impossible d'accéder à '/home/usr/.config': Aucun fichier ou dossier de ce type

=================== os-prober:
/dev/sda2:Ubuntu 14.04.5 LTS (14.04):Ubuntu:linux
/dev/sdb3:Ubuntu 14.04.1 LTS (14.04):Ubuntu1:linux
/dev/sdb4:Ubuntu 14.04.1 LTS (14.04):Ubuntu2:linux

=================== blkid:
/dev/sda1: LABEL="windows-7-del" UUID="FA2AC6152AC5CF37" TYPE="ntfs" PARTUUID="00040603-01"
/dev/sdb1: UUID="92C8-E043" TYPE="vfat" PARTUUID="c279ab17-8851-4486-b8fb-7ae86a52026d"
/dev/sdb5: LABEL="test-multi" UUID="0669-366B" TYPE="vfat" PARTUUID="ee32a4b8-08a9-4165-b9e8-cf034813eaf5"
/dev/loop0: TYPE="squashfs"
/dev/sda2: LABEL="fusion-14._dell" UUID="041cfc74-96e1-4c0f-ad6f-61ae768a1a3c" TYPE="ext4" PARTUUID="00040603-02"
/dev/sdb3: LABEL="xubuntu-efi" UUID="72a66c99-76c9-420b-b133-77d8811a67f5" TYPE="ext4" PARTUUID="fcb240a0-cd9d-4f0f-829f-fac324612298"
/dev/sdb4: LABEL="lubuntu-14.04" UUID="26e86484-52db-4b3b-ae12-584dd21d8154" TYPE="ext4" PARTUUID="75c298a7-c048-4426-8ee7-943d786ea1f2"
/dev/sdb2: PARTUUID="1f6dd8ce-568c-4617-9138-bb17d3c624a5"


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

Windows not detected by os-prober on sda1.
Linux not detected by os-prober on sdb2. Veuillez indiquer ce message à boot.repair@gmail.com
The backup GPT table is corrupt, but the primary appears OK, so that will be used.
The backup GPT table is corrupt, but the primary appears OK, so that will be used.
Presence of EFI/Boot file detected: /mnt/boot-sav/sdb1/EFI/Boot/bootx64.efi

=================== /media/ubuntu/fusion-14._dell/etc/grub.d/ :
drwxr-xr-x  2 root root              4096 mars   4 15:28 grub.d
total 80
-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  2662 mars   4 15:28 40_custom
-rwxr-xr-x 1 root root  2664 mars   4 15:11 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


=================== /media/ubuntu/fusion-14._dell/etc/grub.d/40_custom :
menuentry "Iso Live ubuntu-budgie-17.04-desktop-i386.iso dans partition system" {
insmod part_msdos
insmod iso9660
search --no-floppy --fs-uuid --set=root 041cfc74-96e1-4c0f-ad6f-61ae768a1a3c
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-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
}




=================== /media/ubuntu/fusion-14._dell/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=gnulinux-simple-041cfc74-96e1-4c0f-ad6f-61ae768a1a3c/grub/grubenv :
saved_entry=gnulinux-simple-041cfc74-96e1-4c0f-ad6f-61ae768a1a3c




=================== /media/ubuntu/xubuntu-efi/etc/grub.d/ :
drwxr-xr-x  2 root root               4096 mars   8 14:39 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  3143 mars   8 14:46 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 21:09 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 17:36 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


=================== /media/ubuntu/xubuntu-efi/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
}




=================== /media/ubuntu/xubuntu-efi/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)

=================== /media/ubuntu/lubuntu-14.04/etc/grub.d/ :
drwxr-xr-x  2 root root               4096 juil. 13  2017 grub.d
total 80
-rwxr-xr-x 1 root root  9424 mai   15  2014 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+
-rwxr-xr-x 1 root root 11692 mai   15  2014 30_os-prober
-rwxr-xr-x 1 root root  1416 mai   15  2014 30_uefi-firmware
-rwxr-xr-x 1 root root   724 juil. 13  2017 40_custom
-rwxr-xr-x 1 root root   724 juil. 13  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


=================== /media/ubuntu/lubuntu-14.04/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
}




=================== /media/ubuntu/lubuntu-14.04/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 LUBUNTU 14.04 CLE EMTEC`
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"




=================== /etc/grub.d/ :
drwxr-xr-x  2 root root     204 oct.  18 18:36 grub.d
total 58
-rwxr-xr-x 1 root root  9783 oct.  12 13:41 00_header
-rwxr-xr-x 1 root root  6258 avril 24  2017 05_debian_theme
-rwxr-xr-x 1 root root 12676 oct.  12 13:41 10_linux
-rwxr-xr-x 1 root root 11281 oct.  12 13:41 20_linux_xen
-rwxr-xr-x 1 root root  1992 janv. 28  2016 20_memtest86+
-rwxr-xr-x 1 root root 12059 oct.  12 13:41 30_os-prober
-rwxr-xr-x 1 root root  1418 oct.  12 13:41 30_uefi-firmware
-rwxr-xr-x 1 root root   214 oct.  12 13:41 40_custom
-rwxr-xr-x 1 root root   216 oct.  12 13:41 41_custom
-rw-r--r-- 1 root root   483 oct.  12 13:41 README




=================== /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"



=================== No kernel in /boot:
abi-4.13.0-16-generic
config-4.13.0-16-generic
grub
memtest86+.bin
memtest86+.elf
memtest86+_multiboot.bin
System.map-4.13.0-16-generic


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

=================== efibootmgr -v
BootCurrent: 0006
Timeout: 2 seconds
BootOrder: 0006,0000,0001,0002,0003,0004,0007
Boot0000  Diskette Drive	BBS(Floppy,,0x0)
Boot0001* Internal HDD	BBS(HD,,0x0)P0: LDLC                      .
Boot0002* USB Storage Device	BBS(USB,,0x0)USB Storage Device.
Boot0003* CD/DVD/CD-RW Drive	BBS(CDROM,,0x0)P1: TSSTcorp DVD+/-RW TS-U633J.
Boot0004  Onboard NIC	BBS(Network,,0x0)
Boot0006* ubuntu	HD(1,GPT,c279ab17-8851-4486-b8fb-7ae86a52026d,0x2007000,0xc8000)/File(EFIubuntushimx64.efi)
Boot0007  UEFI: INT13(USB,0x80)	PciRoot(0x0)/Pci(0x1d,0x0)/VenHw(aa7ba38a-dabf-40c3-8d18-b55b39609ef7,8001000000005553422020202020ffffffffffffffffffffffffffffffffffffffffffffffff)/HD(1,GPT,c279ab17-8851-4486-b8fb-7ae86a52026d,0x2007000,0xc8000)

=================== UEFI/Legacy mode:
BIOS is EFI-compatible, and is setup in EFI-mode for this live-session.
SecureBoot maybe enabled. (maybe sec-boot, Veuillez indiquer ce message à boot.repair@gmail.com)


=================== PARTITIONS & DISKS:
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.
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, /mnt/boot-sav/sdb1.
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, /media/ubuntu/test-multi.
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,	farbios,	notbiosboot, /media/ubuntu/fusion-14._dell.
sdb3	: sdb,	not-sepboot,	grubenv-ok	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, /media/ubuntu/xubuntu-efi.
sdb4	: sdb,	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,	not-far,	notbiosboot, /media/ubuntu/lubuntu-14.04.
sdb2	: sdb,	not-sepboot,	grubenv-ok	grub2,	grub-pc ,	update-grub,	64,	no-kernel,	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,	is-biosboot, .

sda	: not-GPT,	BIOSboot-not-needed,	has-no-EFIpart, 	not-usb,	not-mmc, has-os,	2048 sectors * 512 bytes
sdb	: GPT,	BIOS_boot,	has-correctEFI, 	usb-disk,	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:120GB:91.2GB:ext4::;

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, esp;
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
loop0 loop squashfs   1,3G
sda   disk          111,8G
sda1  part ntfs      26,9G windows-7-del
sda2  part ext4      84,9G fusion-14._dell
sdb   disk           58,9G
sdb1  part vfat       400M
sdb2  part            500M
sdb3  part ext4        21G xubuntu-efi
sdb4  part ext4        21G lubuntu-14.04
sdb5  part vfat        16G test-multi
sr0   rom            1024M

KNAME ROTA RO RM STATE   MOUNTPOINT
loop0    1  0  0         /rofs
sda      0  0  0 running
sda1     0  0  0         /mnt/boot-sav/sda1
sda2     0  0  0         /media/ubuntu/fusion-14._dell
sdb      1  0  1 running
sdb1     1  0  1         /mnt/boot-sav/sdb1
sdb2     1  0  1
sdb3     1  0  1         /media/ubuntu/xubuntu-efi
sdb4     1  0  1         /media/ubuntu/lubuntu-14.04
sdb5     1  0  1         /media/ubuntu/test-multi
sr0      1  0  1 running


=================== 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=1900972k,nr_inodes=475243,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=383748k,mode=755)
/dev/shm on /cdrom type tmpfs (rw,relatime,size=1537780k)
/dev/loop0 on /rofs type squashfs (ro,noatime)
/cow on / type overlay (rw,relatime,lowerdir=//filesystem.squashfs,upperdir=/cow/upper,workdir=/cow/work)
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)
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)
efivarfs on /sys/firmware/efi/efivars type efivarfs (rw,nosuid,nodev,noexec,relatime)
cgroup on /sys/fs/cgroup/perf_event type cgroup (rw,nosuid,nodev,noexec,relatime,perf_event)
cgroup on /sys/fs/cgroup/cpu,cpuacct type cgroup (rw,nosuid,nodev,noexec,relatime,cpu,cpuacct)
cgroup on /sys/fs/cgroup/rdma type cgroup (rw,nosuid,nodev,noexec,relatime,rdma)
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/pids type cgroup (rw,nosuid,nodev,noexec,relatime,pids)
cgroup on /sys/fs/cgroup/cpuset type cgroup (rw,nosuid,nodev,noexec,relatime,cpuset)
cgroup on /sys/fs/cgroup/devices type cgroup (rw,nosuid,nodev,noexec,relatime,devices)
cgroup on /sys/fs/cgroup/freezer type cgroup (rw,nosuid,nodev,noexec,relatime,freezer)
cgroup on /sys/fs/cgroup/blkio type cgroup (rw,nosuid,nodev,noexec,relatime,blkio)
cgroup on /sys/fs/cgroup/hugetlb type cgroup (rw,nosuid,nodev,noexec,relatime,hugetlb)
systemd-1 on /proc/sys/fs/binfmt_misc type autofs (rw,relatime,fd=30,pgrp=1,timeout=0,minproto=5,maxproto=5,direct,pipe_ino=18269)
debugfs on /sys/kernel/debug type debugfs (rw,relatime)
hugetlbfs on /dev/hugepages type hugetlbfs (rw,relatime,pagesize=2M)
mqueue on /dev/mqueue type mqueue (rw,relatime)
configfs on /sys/kernel/config type configfs (rw,relatime)
fusectl on /sys/fs/fuse/connections type fusectl (rw,relatime)
tmpfs on /tmp type tmpfs (rw,nosuid,nodev,relatime)
tmpfs on /run/user/999 type tmpfs (rw,nosuid,nodev,relatime,size=383744k,mode=700,uid=999,gid=999)
gvfsd-fuse on /run/user/999/gvfs type fuse.gvfsd-fuse (rw,nosuid,nodev,relatime,user_id=999,group_id=999)
/dev/sdb4 on /media/ubuntu/lubuntu-14.04 type ext4 (rw,nosuid,nodev,relatime,stripe=32639,data=ordered,uhelper=udisks2)
/dev/sdb3 on /media/ubuntu/xubuntu-efi type ext4 (rw,nosuid,nodev,relatime,stripe=32639,data=ordered,uhelper=udisks2)
/dev/sdb5 on /media/ubuntu/test-multi type vfat (rw,nosuid,nodev,relatime,uid=999,gid=999,fmask=0022,dmask=0022,codepage=437,iocharset=iso8859-1,shortname=mixed,showexec,utf8,flush,errors=remount-ro,uhelper=udisks2)
/dev/sda2 on /media/ubuntu/fusion-14._dell type ext4 (rw,nosuid,nodev,relatime,data=ordered,uhelper=udisks2)
/dev/sda1 on /mnt/boot-sav/sda1 type fuseblk (rw,relatime,user_id=0,group_id=0,allow_other,blksize=4096)
/dev/sdb1 on /mnt/boot-sav/sdb1 type vfat (rw,relatime,fmask=0022,dmask=0022,codepage=437,iocharset=iso8859-1,shortname=mixed,errors=remount-ro)


=================== ls:
/sys/block/sda (filtered):  alignment_offset bdi capability dev device discard_alignment events events_async events_poll_msecs ext_range holders inflight integrity power queue range removable ro sda1 sda2 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 integrity 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 integrity power queue range removable ro size slaves stat subsystem trace uevent
/dev (filtered):  autofs block bsg btrfs-control bus cdrom cdrw char console core cpu cpu_dma_latency cuse disk dri drm_dp_aux0 drm_dp_aux1 drm_dp_aux2 dvd dvdrw ecryptfs fb0 fd freefall full fuse hidraw0 hpet hugepages hwrng i2c-0 i2c-1 i2c-2 i2c-3 i2c-4 i2c-5 i2c-6 i2c-7 i2c-8 initctl input kmsg kvm lightnvm log mapper mcelog media0 mei0 mem memory_bandwidth mqueue net network_latency network_throughput null port ppp psaux ptmx pts random rfkill rtc rtc0 sda sda1 sda2 sdb sdb1 sdb2 sdb3 sdb4 sdb5 sg0 sg1 sg2 shm snapshot snd sr0 stderr stdin stdout uhid uinput urandom userio v4l vfio vga_arbiter vhci vhost-net vhost-vsock video0 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
The backup GPT table is corrupt, but the primary appears OK, so that will be used.

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

Filesystem     Type      Size  Used Avail Use% Mounted on
udev           devtmpfs  1.9G     0  1.9G   0% /dev
tmpfs          tmpfs     375M  6.4M  369M   2% /run
/dev/shm       tmpfs     1.5G  1.4G   71M  96% /cdrom
/dev/loop0     squashfs  1.4G  1.4G     0 100% /rofs
/cow           overlay   1.9G   86M  1.8G   5% /
tmpfs          tmpfs     1.9G   23M  1.9G   2% /dev/shm
tmpfs          tmpfs     5.0M  4.0K  5.0M   1% /run/lock
tmpfs          tmpfs     1.9G     0  1.9G   0% /sys/fs/cgroup
tmpfs          tmpfs     1.9G  516K  1.9G   1% /tmp
tmpfs          tmpfs     375M   56K  375M   1% /run/user/999
/dev/sdb4      ext4       21G  2.6G   17G  14% /media/ubuntu/lubuntu-14.04
/dev/sdb3      ext4       21G  4.2G   16G  22% /media/ubuntu/xubuntu-efi
/dev/sdb5      vfat       17G   15G  1.1G  94% /media/ubuntu/test-multi
/dev/sda2      ext4       84G   28G   52G  35% /media/ubuntu/fusion-14._dell
/dev/sda1      fuseblk    27G   25G  2.8G  90% /mnt/boot-sav/sda1
/dev/sdb1      vfat      400M  4.7M  395M   2% /mnt/boot-sav/sdb1

=================== fdisk -l:
Disk /dev/loop0: 1.3 GiB, 1425731584 bytes, 2784632 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 /dev/sda: 111.8 GiB, 120034123776 bytes, 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
Disklabel type: dos
Disk identifier: 0x00040603

Device     Boot    Start       End   Sectors  Size Id Type
/dev/sda1  *        2048  56383487  56381440 26.9G  7 HPFS/NTFS/exFAT
/dev/sda2       56383488 234440703 178057216 84.9G 83 Linux




Disk /dev/sdb: 58.9 GiB, 63216549888 bytes, 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
Disklabel type: gpt
Disk identifier: ECB2E9FC-2892-4570-89E6-CBFC2C80BF0F

Device        Start       End  Sectors  Size Type
/dev/sdb1  33583104  34402303   819200  400M EFI System
/dev/sdb2  34402304  35426303  1024000  500M BIOS boot
/dev/sdb3  35426304  79447788 44021485   21G Linux filesystem
/dev/sdb4  79448064 123467595 44019532   21G Linux filesystem
/dev/sdb5      2048  33583103 33581056   16G Microsoft basic data

Partition table entries are not in disk order.


Gtk-Message: GtkDialog mapped without a transient parent. This is discouraged.
User choice: Est-ce que sda (ATA LDLC) est un disque amovible ? no




=================== Suggested repair
The default repair of the Boot-Repair utility would reinstall the grub2 of sda2 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


=================== 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 sda (ATA LDLC) !

Les fichiers de démarrage de [Ubuntu 14.04.5 LTS] sont loin du début du disque. Votre BIOS pourrait ne pas les détecter. Vous voudrez peut-être re-essayer après avoir créé une partition /boot (EXT4, >200MB, en début de disque). Cela peut être réalisé via des outils tels que gParted. Puis sélectionnez cette partition via l'option [Partition /boot séparée :] de [Boot-Repair]. (http://doc.ubuntu-fr.org/tutoriel/partition_boot)


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

Download as text

Le menuentry dans le grub.cfg de la Xubuntu-efi (40_custom) installée en /sdb3, pour lancer la session live.

lignes1143 à 1163 .

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
}

Le Xubuntu-efi démarre dans les deux modes;  UEFI avec la partition boot-efi /sdb1, et en Bios_Legacy avec la partition bios_grub /sdb2 .

@+.   Babdu89   .

Dernière modification par Babdu89 (Le 25/03/2018, à 19:04)


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 17/04/2018, à 13:03

Crap0

Re : grub-imageboot - tout va bien mais démarre pas sur l'iso depuis grub2

re-Bonjour.
ça fait un petit temps.
(...)
Mais voici ... peut-on mettre une partition MultiSystem au début de mon disque de mon ordinateur ?
Suivit de mon/de mes os principaux:
En sachant qu'éventuellement j'aurais un osx et d'office un Lubuntu comme os principaux...


Artwork : https://artgstructure.wordpress.com/ (encre de chine et autres)
Musique : https://www.mixcloud.com/ex_s/ (dj set)

Hors ligne

#13 Le 17/04/2018, à 23:30

Babdu89

Re : grub-imageboot - tout va bien mais démarre pas sur l'iso depuis grub2

Bonsoir.

Mais voici ... peut-on mettre une partition MultiSystem au début de mon disque de mon ordinateur ?

Sachant que le multisystem s'installe sur périphérique USB, la réponse est non, on ne peut pas l'installer sur un disque dur interne.

Mais on peut très bien faire ce que tu demandes sur un disque dur USB.

J'en ai un qui fonctionne comme çà.
_Obligatoirement. La première partition de 108 Go en FAT 32, qui reçoit un MultiSystem, avec beaucoup d'iso chargées dedans, toutes celles que télécharge et teste en live.
_Des installations d'Os Linux derrière cette partition.
_Une partition format NTFS de stockage de données à échanger entre Windows/Linux.

On peut modifier le fichier de configuration du MultiSystem (grub.cfg), pour lancer les Os installés sur le disque USB depuis le menu Grub du MultiSystem.

Mon disque dur USB "MultiSystem" fonctionne sur toutes mes machines. Il a une table de partition de type MSDos. La MultiSystem fonctionne (démarre) en mode UEFI et Bios_Legacy.
Mais le disque ne fonctionne qu'en mode Bios_Legacy, pour les systèmes Linux installés dedans, derrière le MultiSystem.

@+.   Babdu89   .

Dernière modification par Babdu89 (Le 17/04/2018, à 23:33)


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

Hors ligne

#14 Le 27/04/2018, à 22:08

Crap0

Re : grub-imageboot - tout va bien mais démarre pas sur l'iso depuis grub2

Me revoilà

J'essaye de mettre une iso de slitaz à la racine de mon Lubuntu ...
(slitaz-4.0.iso)

je bloque
au niveau de linux (loop): j'ai trouvé un fichier : /vmlinuz-2.6.37-slitaz (??)
au niveau du initrd: pas de casper ou autres fichier "initrd"

J'ai vu dans la doc que Slitaz utilise syslinux et extlinux
Grub ou refind, permettent-il de démarer sur ces trucs là ?

en faite j'ai créer d'abord un live-cd de slitaz et depuis celui-ci fait un Live-usb
mais qui n'est pas reconnu ... alors, me suis dit qu'ici dans ces post, il y avait peut-être une solution
(mon iso, au passage est une iso 9660 - de mémoir, je pense pas avoir vu cela pour d'autres - ou je débloque ?)

merci !! a+

Dernière modification par Crap0 (Le 27/04/2018, à 22:25)


Artwork : https://artgstructure.wordpress.com/ (encre de chine et autres)
Musique : https://www.mixcloud.com/ex_s/ (dj set)

Hors ligne

#15 Le 28/04/2018, à 08:23

Babdu89

Re : grub-imageboot - tout va bien mais démarre pas sur l'iso depuis grub2

Bonjour.

Si çà peut t'aider.

Depuis le menu grub d'un Ubuntu 12,04 (grub v 1,98/99), je lance des sessions live d'une iso Slitaz, stockée dans la partition racine (  /  ) du Ubuntu 12,04, comme ceci;

Contenu du menuentry dans le /etc/grub.d/40_custom, qui après maj de grub, génère cette entrée dans le grub.cfg de la 12,04


menuentry "Slitaz-5.0-rc3" {
insmod loopback
insmod iso9660
set isofile="/slitaz-5.0-rc3.iso"
search --set -f $isofile
loopback loop $isofile
linux (loop)/boot/vmlinuz-3.2.53-slitaz kmap=fr-latin1
initrd (loop)/boot/rootfs.gz
}

@+.   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

#16 Le 28/04/2018, à 09:06

moko138

Re : grub-imageboot - tout va bien mais démarre pas sur l'iso depuis grub2

Il y a des années, je lançais Slitaz3 depuis grub et j'avais noté ceci :

  Pour lancer des iso à partir de grub, les réglages se font dans dans
/etc/grub.d/40_custom, où on rajoute des lignes, sur ce modèle issu de la doc
https://doc.ubuntu-fr.org/tutoriel/grub … images_iso

menuentry "Slitaz-3.0" {
insmod loopback
insmod iso9660
set isofile="/slitaz-3.0.iso"
search --set -f $isofile
loopback loop $isofile
linux (loop)/boot/vmlinuz-2.6.30.6-slitaz kmap=fr-latin1
initrd (loop)/boot/rootfs.gz
}

Mais, en appliquant la même méthode, j'échouais à lancer Slitaz4.


%NOINDEX%
Un utilitaire précieux : ncdu
Photo, mini-tutoriel :  À la découverte de dcraw

Hors ligne

#17 Le 28/04/2018, à 09:11

moko138

Re : grub-imageboot - tout va bien mais démarre pas sur l'iso depuis grub2

Crap0 a écrit :

(mon iso, au passage est une iso 9660 - de mémoir, je pense pas avoir vu cela pour d'autres - ou je débloque ?)

iso9660 est un système de fichiers.
Conçu à l'origine pour cédéroms, on le retrouve aussi sur des DVD et sur les clefs usb où le fichier iso a été gravé.


%NOINDEX%
Un utilitaire précieux : ncdu
Photo, mini-tutoriel :  À la découverte de dcraw

Hors ligne

#18 Le 30/04/2018, à 20:09

Crap0

Re : grub-imageboot - tout va bien mais démarre pas sur l'iso depuis grub2

Merci...
Autre petit détaille:
Après ces démarche mon ordinateur au démarage affiche du texte qui défile ... après le choix réaliser dans Grub2.
De plus, toujours au démarage, il est plus lent qu'avant ...

Y a t-il moyen d'éviter ce mode texte (que je pense qu'on appelle "verbose"). Et de retrouvé sa vite d'avant ?
Et/Ou d'éviter de passer d'office par Grub2 -- Que le choix de mon os de "base" soit et reste directement chargé / devoir appuyer sur "esc" au démarage pour avoir accés au choix des iso que quand j'ai l'intention d'en choisir une ....?

--??--
Bon: ok, moi j'ai essayer avec SliTaz-4.0 :
J'ai pas encore essayer pour SliTaz ... Mais, ne manque t-il pas un "1" à "initrd (loop)/boot/rootfs.gz", ce qui donnerait:

menuentry "Slitaz-5.0-rc3" {
insmod loopback
insmod iso9660
set isofile="/slitaz-5.0-rc3.iso"
search --set -f $isofile
loopback loop $isofile
linux (loop)/boot/vmlinuz-3.2.53-slitaz kmap=fr-latin1
initrd (loop)/boot/rootfs1.gz
}

--??--
Car dans l'iso que j'ai, il y a 4 fichiers: rootfsX.gz
Y en a t-il qu'une seul dans ta version SliTaz 5 ?
--
Un autre détail: les iso misent à la racine pour démarer avec Grub2, donc, doivent-elles être en "isolinux" -- Car, ici, sur la page de téléchargement de SliTaz, il existe une version "isolinux" ... (isohybrid)
http://mirror1.slitaz.org/iso/4.0/
--
merci a+
--
ps: je rajoute un petit mot bien après avoir écris ce post ci : pour SliTaz: je savais pas mais nous sommes à SliTaz-5, à cette date, pour la dernière ... et je viens d'apprendre aussi que SliTaz à la base, se lance par le BIOS.
Macintosh étant en EFI, il faut faire quelques modification : " ... Si tu installes sur un PC 64bit, utilise le paquet de GRUB 2 qu'Alanyih a compilé : https://goo.gl/rG324b (réf : http://forum.slitaz.org/topic/slitaz-uefi#post-46186 ) ..." // --> depuis ce lien: http://forum.slitaz.org/topic/fr-proble … as-reconnu //

voilà merci : a+

Dernière modification par Crap0 (Le 30/04/2018, à 21:27)


Artwork : https://artgstructure.wordpress.com/ (encre de chine et autres)
Musique : https://www.mixcloud.com/ex_s/ (dj set)

Hors ligne