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.

#626 Le 09/06/2014, à 13:07

logut

Re : MultiSystem, Créez votre LiveUSB MultiBoot simplement! [2]

Bonjour,
en effet il n'y a pas de bios sur raspberry pi je souhaite seulement pouvoir configurer ma clé usb à partir du raspberry pi wink
logut

Hors ligne

#627 Le 09/06/2014, à 13:29

Babdu89

Re : MultiSystem, Créez votre LiveUSB MultiBoot simplement! [2]

Bonjour.
@Qid.

Chez moi sur un hdd usb  Multisystem.
Multisystem installé sur la première partition du disque en FAT32. En multi boot avec d'autres OS Linux installés. Dont un qui contient Multisystem pour remplir d'iso , la partition MultiSystem .

Les deux versions 32 et 64 bits de Boot-Repair-Disk BRD font partie du lot, et sont affichés dans le menu du Multisystem.

1402316368.png

Les OS Linux de ce multi boot, sont tous ceux présents en dessous du MultiSystem, dans le volet de gauche du gestionnaire de fichiers.

En lançant mes machines sur ce hdd, c'est le menu Grub du MultiSystem qui s'affiche.
Je peux lancer les sessions live des iso qui sont dans la partition MultiSystem.
J'ai créé une entrée dans le menu Grub du MultiSystem, qui me permet de chaîner sur le menu Grub de l'Os     raring-syst-fc    , installé sur la partition N° 13 .
Cet OS contient le MultiSystem. Et depuis le menu Grub de cet Os je lance les autres Os Linux installés en multi boot sur ce hdd.

Édit.
Qid a supprimé son post...

@+.   Babdu89

Dernière modification par Babdu89 (Le 09/06/2014, à 13:30)


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

Hors ligne

#628 Le 09/06/2014, à 16:05

Alkorak

Re : MultiSystem, Créez votre LiveUSB MultiBoot simplement! [2]

Bonjour Frafa,

  J'ai un soucis que je n'arrive pas à résoudre.


- J'ai un GRUB2 installé dans le MBR de mon disque dur IDE, qui fonctionne parfaitement bien, et démarre un Win XP, et plusieurs Linux.
  (quand on aime, on ne compte pas !  ;-)  )
- Ainsi qu'une clé USB 2.0 contenant Multi System et 12 distributions Linux, qui boote très bien aussi, mais à condition de le préciser auparavant dans le BIOS, pour la placer avant le disque dur.

Passer par le BIOS étant contraignant, j'ai installé Plop Boot Manager dans la partition "/boot" du Linux qui a installé le GRUB2 sur le MBR du disque dur.
=> Ainsi, plus besoin de passer par ce satané BIOS pour passer d'un boot sur HDD à un boot sur clé USB, et inversement...

Cela donne donc un boot en permanence sur le HDD, et :
1) soit je choisi une partition du HDD,
2) soit je choisis "Plop Boot Manager", PUIS je tombe sur le GRUB2 de la clé contenant Multi System, et tout roule...


=> Mon but serait de simplifier encore cette procédure, en supprimant le passage obligé par Plop Boot Manager.
Le choix du menu Plop Boot Manager serait remplacé par exemple par un menu "Démarrer la clé USB Multi System".

Je me suis renseigné, et il semble qu'il faille faire un truc genre :

root=(hdb,0)
(hda étant le HDD, et hdb étant la clé USB)

ainsi qu'un :
chainloader+1

avec éventuellement :
une utilisation du UUID de la clé USB.
(bien que je n'aime pas l'utilisation du UUID qui a l'inconvéniant d'être UNIQUE à chaque clé USB, et obligerait donc à refaire le GRUB2 du HDD à chaque changement de clé USB...)

Il parait aussi que GRUB2 permet ce boot direct sur une clé USB, contrairement aux versions antérieures...


=> Une idée pour le code à implémenter afin de créer ce menu spécifique "Démarrer la clé USB Multi System" ?

D'avance, Merci !

Dernière modification par Alkorak (Le 09/06/2014, à 16:21)

Hors ligne

#629 Le 09/06/2014, à 22:22

Babdu89

Re : MultiSystem, Créez votre LiveUSB MultiBoot simplement! [2]

Bonsoir.
@ Alkorak .

Je lance  des sessions live, depuis le menu Grub  de mon Os principal , à partir de clé live , en passant par l'UUID de chacune, sans changer l'ordre de boot dans le Bios ...
L'idée de lancer les clé en passant par leur label, je n'avais pas encore testé ...

J'ai deux clés MultiSystem  avec chacune un label comme ceci ...

multisystem

MULTISYSTEM

Le système fait la différence entre les noms avec majuscules et minuscules ...

J'ai donc testée une entrée en passant par les label . Un "search" avec label en majuscules et un autre avec label en majuscules.

Çà se passe avec les fichiers de configuration de Grub . En root.  Il faut modifié le fichier  /etc/grub.d/40_custom   comme ceci ...

Après;

#!/bin/sh
exec tail -n +3 $0
# 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.

Ajouter ceci avec les lignes suivantes  ;

menuentry "clé Usb-live ou CD-ROM"  {
	insmod part_msdos
	insmod vfat
	search --no-floppy --fs-uuid --set=root xxxx-xxxx
	chainloader +1
}
#ou bien:
#menuentry "clé Usb-live ou CD-ROM"  {
#	insmod part_msdos
#	insmod vfat
#	search --no-floppy --fs-uuid --set=root xxxx-xxxx
# ou : search --no-floppy --set=root -l <étiquette de la clé ou du CD>
#	chainloader +1
# ou, peut-être, de manière plus générale, mais là c'est à tester au cas par cas, chainloader +n
# cet ordre veut dire de chainer sur l'amorce contenue dans le 1er ou les n premiers secteurs de la partition cible ($root)
#}
menuentry "clé Usb-live MULTISYSTEM"  {
	insmod part_msdos
	insmod vfat
        search --no-floppy --set=root -l multisystem
        search --no-floppy --set=root -l MULTISYSTEM
        chainloader +1
}

Ne pas oublier les   {   et   }  . Surtout le dernier en bas...

Une foi la modif faite, faire une maj de Grub ;

sudo update-grub

Pour que la modif soit portée dans le fichier  /boot/grub/grub.cfg     . Fichier auto-généré à chaque maj de Grub...

Pour lancer les sessions live depuis les clés live , en passant par leur UUID , remplacer  xxx-xxx par ce qui convient ...

Pour lancer les sessions live avec les label ou UUID , en bas du menu Grub, il y a une entrée ;


clé Usb-live ou CD-ROM 

Pour lancer les clés live avec les UUID des partition FAT32 des clés .


clé Usb-live MULTISYSTEM 

Pour lancer les clés MultiSystem ...


Chez moi ,il y a un un message qui indique que le système ne trouve pas le périphérique et demande d'appuyer sur une touche  ...
Je ne fais rien , je laisse le système chercher un court instant, il trouve aussi bien la clé avec label en minuscules qu'en majuscules ...

La session live MultiSystem se lance (sans passer par le Bios pour changer l'ordre de boot) .
J'ai pendant 5 secondes , un menu MultiSystem donnant à choisir entre;
Plop Boot Manager
Grub2
Grub4Dos
et outils....

Rapidement , je sélectionne  Grub2 , et les iso à tester s'affichent ...

Voila si çà peut aider ...

Merci à Arbiel de m'avoir indiqué il y a quelques temps ces manips de lancement de sessions live à tester depuis le menu Grub de mon Os principal ...

@+.  Babdu89  .

Dernière modification par Babdu89 (Le 09/06/2014, à 22:29)


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

Hors ligne

#630 Le 10/06/2014, à 19:20

Alkorak

Re : MultiSystem, Créez votre LiveUSB MultiBoot simplement! [2]

Merci pour ta contribution Baddu89.   ;-)

J'ai essayé diverses méthodes :
- avec l'étiquette de la partition (l'idée est bonne)
- l'UUID,
- multisystem écrit en majuscules ou minuscules,

mais aucun de ces cas ne fonctionne...


-> J'ai cependant remarqué que dans le GRUB2 de Multi System, il y avait cette ligne en plus :
    set root=${root}

Je l'ai ajouté, mais cela n'a rien donné...


Si un expert des gestionnaires d'amorçage traine par ici, ou si Frafa connait la solution, cette aide serait la bienvenue !

Dernière modification par Alkorak (Le 10/06/2014, à 19:22)

Hors ligne

#631 Le 10/06/2014, à 20:26

Babdu89

Re : MultiSystem, Créez votre LiveUSB MultiBoot simplement! [2]

Bonsoir.

Alkorak à dit;
J'ai essayé diverses méthodes :
- avec l'étiquette de la partition (l'idée est bonne)
- l'UUID,
- multisystem écrit en majuscules ou minuscules,

mais aucun de ces cas ne fonctionne...

-> J'ai cependant remarqué que dans le GRUB2 de Multi System, il y avait cette ligne en plus :
    set root=${root}

Je l'ai ajouté, mais cela n'a rien donné...

Ha bon?...

Stp, veux tu bien poster le contenu des fichiers suivants .Merci .

Dans l'Os qui sert à booter ta machine.
Le contenu du fichier ;  /etc/grub.d/40_custom
Et le contenu du fichier ; /boot/grub/grub.cfg

Car c'est bien sur eux que les modifs sont à faire ...

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

#632 Le 19/06/2014, à 17:51

chadw

Re : MultiSystem, Créez votre LiveUSB MultiBoot simplement! [2]

Bonjour,

Il y a eu un problème avec gparted-0.19.0-1-i486.iso installé avec Multisystem 1.0294:

Le démarrage (sur une machine 32-bit) ne va pas jusqu'au bout, avec un plantage de X je crois.

Pourtant, avec le même ISO installé à la main sur une autre clé et syslinux,
la même machine démarre gparted live 0.19.0-1.

Hors ligne

#633 Le 20/06/2014, à 02:28

frafa

Re : MultiSystem, Créez votre LiveUSB MultiBoot simplement! [2]

@chadw
Bonjour,
Teste en modifiant les options de boot...

options de boot actuelles:

boot=live config noswap nomodeset ip=frommedia nosplash lang=fr_FR

essaie genre:

boot=live username=user config quiet noswap noeject vga=791 ip=  nosplash

ou:

boot=live username=user config quiet noswap noeject ip= nomodeset vga=normal nosplash

Hors ligne

#634 Le 20/06/2014, à 10:53

chadw

Re : MultiSystem, Créez votre LiveUSB MultiBoot simplement! [2]

@frafa
Merci, j'ai pu démarrer.

Dernière modification par chadw (Le 20/06/2014, à 10:54)

Hors ligne

#635 Le 22/06/2014, à 21:50

frafa

Re : MultiSystem, Créez votre LiveUSB MultiBoot simplement! [2]

@A Tous
Bonjour,

Mise à jour de MultiSystem avec un debut de support de l'UEFI,
si vous testez, merci de faire un retour.

Hors ligne

#636 Le 23/06/2014, à 14:19

malbo

Re : MultiSystem, Créez votre LiveUSB MultiBoot simplement! [2]

frafa,
C'est la première fois que j'utilise MultiSystem donc il est possible que je m'y prenne comme un manche pour faire la liveUSB. J'ai fait mes manips en virtualisation avec VMware Player. Cela commence mal : je voulais faire la liveUSB depuis une session de Ubuntu 14.04 installé en mode EFI mais ce n'est pas possible avec la procédure 2.2 Seconde méthode : En ligne de commande parce qu'arrivé à la commande "sudo apt-get install multisystem ", apt-get me propose de désinstaller grub-efi et si j'avais accepté je pense que je n'aurais pas pu redémarrer mon Ubuntu installé (en virtuel). Donc j'ai dû abandonner l'idée de faire ma liveUSB Multisystem depuis une session installée de Ubuntu et je l'ai faite depuis une session live de Ubuntu 14.04 démarrée en mode EFI (c'est bien chiant à faire en virtualisation) mais ça fonctionne. J'ai mis dessus l'ISO de Ubuntu 14.04 64 bits et l'ISO de Lubuntu 14.04 64 bits et on arrive bien à démarrer en mode EFI sur Ubuntu 14.04 et en mode EFI sur Lubuntu 14.04.

Menu proposé par Multisystem quand je boote en mode EFI :
mini_622599Capturedu20140623144236.png

1) Choix Ubuntu 14.04 dans le menu proposé par Multisystem au démarrage :
Depuis la session live, je fais ce Boot-Info (*) : http://paste.ubuntu.com/7690246/
que je colle ici :

 Boot Info Script e7fc706 + Boot-Repair extra info      [Boot-Info 23Dec2013]


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

 => Grub2 (v1.99) 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 
    in partition 112 for .

sda1: __________________________________________________________________________

    File system:       vfat
    Boot sector type:  SYSLINUX 4.05 20140113
    Boot sector info:  Syslinux looks at sector 34720 of /dev/sda1 for its 
                       second stage. SYSLINUX is installed in the 
                       /boot/syslinux directory. No errors found in the Boot 
                       Parameter Block.
    Operating System:  
    Boot files:        /boot/grub/menu.lst /boot/grub/grub.cfg 
                       /boot/syslinux/syslinux.cfg /EFI/BOOT/grubx64.efi 
                       /boot/grub/i386-pc/core.img /boot/syslinux/ldlinux.sys

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

Drive: sda _____________________________________________________________________

Disk /dev/sda: 2055 MB, 2055208960 bytes
255 heads, 63 sectors/track, 249 cylinders, total 4014080 sectors
Units = sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes

Partition  Boot  Start Sector    End Sector  # of Sectors  Id System

/dev/sda1    *            128     4,014,079     4,013,952   b W95 FAT32


"blkid" output: ________________________________________________________________

Device           UUID                                   TYPE       LABEL

/dev/loop0                                              iso9660    Ubuntu 14.04 LTS amd64
/dev/loop1                                              squashfs   
/dev/sda1        BC29-6FC0                              vfat       MULTISYSTEM

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

Device           Mount_Point              Type       Options

/dev/loop0       /cdrom                   iso9660    (ro,noatime)
/dev/loop1       /rofs                    squashfs   (ro,noatime)
/dev/sda1        /isodevice               vfat       (rw,relatime,fmask=0022,dmask=0022,codepage=437,iocharset=iso8859-1,shortname=mixed,errors=remount-ro)


=========================== sda1/boot/grub/menu.lst: ===========================

--------------------------------------------------------------------------------
# This is a sample menu.lst file. You should make some changes to it.
# The old install method of booting via the stage-files has been removed.
# Please install GRLDR boot strap code to MBR with the bootlace.com
# utility under DOS/Win9x or Linux.

timeout 30
default /default
#convert -resize 640x480 -colors 14 /media/multisystem/boot/splash/splash.png /media/multisystem/boot/splash/splash.xpm.gz
splashimage=/boot/splash/splash.xpm.gz
#color blue/green yellow/red white/magenta white/magenta
foreground=0033FF
background=FF3300

#http://diddy.boot-land.net/grub4dos/Grub4dos.htm
#http://www.boot-land.net/forums/index.php?showforum=66
#http://diddy.boot-land.net/grub4dos/files/syntax.htm
#Ne supprimez pas ce marqueur! / Do not remove this marker!
#MULTISYSTEM_START
#MULTISYSTEM_STOP
#Ne supprimez pas ce marqueur! / Do not remove this marker!
#http://diddy.boot-land.net/grub4dos/files/syntax.htm

title Chainloader into GRUB 2
find --set-root /boot/grub/boot.img
chainloader /boot/grub/boot.img
boot

#title Chainloader into Syslinux
#map (hd0) (hd0)
#map (hd0) (hd0)
#chainloader (hd0,0)+1
#rootnoverify (hd0,0)

##Autre solution pour chainer Syslinux
##faire une copie du mbr de la clé USB
##dd if=/dev/sd?1 of=/media/multisystem/syslinux.mbr bs=512 count=1
#title Chainloader into Syslinux
#find --set-root --ignore-floppies --ignore-cd /syslinux.mbr
#map (hd0) (hd0)
#map (hd0) (hd0)
#map --rehook
#find --set-root --ignore-floppies --ignore-cd /syslinux.mbr
#chainloader /syslinux.mbr

##Autre solution pour chainer Syslinux
#title Chainloader into Syslinux
#find --set-root /boot/syslinux/ldlinux.sys
#chainloader /boot/syslinux/ldlinux.sys

##Autre solution pour chainer Syslinux
#title Chainloader into Syslinux
#find --set-root --ignore-floppies --ignore-cd /boot/syslinux/redir.img
#kernel /boot/syslinux/memdisk
#initrd /boot/syslinux/redir.img

#http://www.ibiblio.org/pub/micro/pc-stuff/freedos/files/distributions/
title FreeDos
kernel /boot/syslinux/memdisk
initrd /boot/img/fdboot.img

title find and load NTLDR of Windows NT/2K/XP
fallback 1
find --set-root --ignore-floppies --ignore-cd /ntldr
map () (hd0)
map (hd0) ()
map --rehook
find --set-root --ignore-floppies --ignore-cd /ntldr
chainloader /ntldr
savedefault --wait=2

title find and load BOOTMGR of Windows VISTA/SEVEN
fallback 2
find --set-root --ignore-floppies --ignore-cd /bootmgr
map () (hd0)
map (hd0) ()
map --rehook
find --set-root --ignore-floppies --ignore-cd /bootmgr
chainloader /bootmgr
savedefault --wait=2

title find and load CMLDR, the Recovery Console of Windows NT/2K/XP
fallback 3
find --set-root --ignore-floppies --ignore-cd /cmldr
map () (hd0)
map (hd0) ()
map --rehook
find --set-root --ignore-floppies --ignore-cd /cmldr
chainloader /cmldr
#####################################################################
# write string "cmdcons" to memory 0000:7C03 in 2 steps:
#####################################################################
# step 1. Write 4 chars "cmdc" at 0000:7C03
write 0x7C03 0x63646D63
# step 2. Write 3 chars "ons" and an ending null at 0000:7C07
write 0x7C07 0x00736E6F
savedefault --wait=2

title find and load IO.SYS of Windows 9x/Me
fallback 4
find --set-root /io.sys
chainloader /io.sys
savedefault --wait=2

title find and boot 0PE.ISO
fallback 5
find --set-root /0PE/0PE.ISO
map /0PE/0PE.ISO (0xff) || map --mem /0PE/0PE.ISO (0xff)
map --hook
chainloader (0xff)
savedefault --wait=2

title find and boot MicroPE.ISO
fallback 6
find --set-root /boot/MicroPE.ISO
map /boot/MicroPE.ISO (0xff) || map --mem /boot/MicroPE.ISO (0xff)
map --hook
chainloader (0xff)
savedefault --wait=2

title find and boot ubcd.iso
fallback 8
find --set-root /ubcd.iso
map /ubcd.iso (0xff) || map --mem /ubcd.iso (0xff)
map --hook
chainloader (0xff)
savedefault --wait=2

title commandline
commandline

title reboot
reboot

title halt
halt
--------------------------------------------------------------------------------

=========================== sda1/boot/grub/grub.cfg: ===========================

--------------------------------------------------------------------------------
#insmod gpt
#insmod pc
#insmod gfxmenu
#
#insmod videotest
insmod tga
insmod png
insmod gfxterm
insmod lspci
#insmod vbeinfo
insmod vbe
insmod ntfs
insmod chain
insmod biosdisk
insmod font
#http://grub.enbug.org/ThemeFormat
#http://grub.gibibit.com/Theme_format#colors
#http://code.google.com/p/burg/wiki/InstallUbuntu
#http://code.google.com/p/burg/downloads/list
#http://ubuntuforums.org/showthread.php?t=1195275
#pour acces a grub2 du bootloader principal modifier dans fichier: /etc/default/grub
#GRUB_HIDDEN_TIMEOUT=10 #0 par defaut
#GRUB_HIDDEN_TIMEOUT_QUIET=false #true d'origine
#sudo update-grub
#echo -n "Press ESC to see the menu... "
#if sleep --verbose --interruptible 5 ; then
#set timeout=0
#fi
set default=0
set timeout=30
set fallback=1
search --no-floppy --fs-uuid --set=root BC29-6FC0
set root=${root}
#http://grub.enbug.org/gfxterm
if loadfont /boot/polices/unicode.pf2 ; then
set gfxmode=640x480
if terminal_output gfxterm ; then true ; else
# For backward compatibility with versions of terminal.mod that don't
# understand terminal_output
terminal gfxterm
#set gfxmode=auto
#set gfxpayload=keep
fi
fi
#set locale_dir=/boot/grub/locale
#set lang=en
#insmod gettext
if background_image /boot/splash/splash.png ; then
#text no sel/fond ecran
set color_normal=white/black #1
#text sel/fond ecran sel
set color_highlight=green/white #1
else
set menu_color_normal=white/black #2
set menu_color_highlight=green/white #2
set color_normal=white/magenta #2
set color_highlight=green/white #2
fi
#set gfxpayload="1280x1024,1024x768,800x600,640x480"
#set gfxpayload=keep
#Ne supprimez pas ce marqueur! / Do not remove this marker!
#MULTISYSTEM_START
#MULTISYSTEM_MENU_DEBUT|23-06-2014-10:33:11-785669617|ubuntu-14.04-desktop-amd64.iso|multisystem-ubuntu|964Mio|
menuentry "ubuntu-14.04-desktop-amd64.iso" {
search --set -f "/ubuntu-14.04-desktop-amd64.iso"
loopback loop "/ubuntu-14.04-desktop-amd64.iso"
linux (loop)/casper/vmlinuz.efi root=UUID=BC29-6FC0 debian-installer/language=en keyboard-configuration/layoutcode=us  iso-scan/filename=/ubuntu-14.04-desktop-amd64.iso boot=casper file=/cdrom/preseed/ubuntu.seed noprompt quiet splash --
initrd (loop)/casper/initrd.lz
}
#MULTISYSTEM_MENU_FIN|23-06-2014-10:33:11-785669617|ubuntu-14.04-desktop-amd64.iso|multisystem-ubuntu|964Mio|
#MULTISYSTEM_MENU_DEBUT|23-06-2014-11:27:54-689967139|lubuntu-14.04-desktop-amd64.iso|multisystem-lubuntu|694Mio|
menuentry "lubuntu-14.04-desktop-amd64.iso" {
search --set -f "/lubuntu-14.04-desktop-amd64.iso"
loopback loop "/lubuntu-14.04-desktop-amd64.iso"
linux (loop)/casper/vmlinuz.efi root=UUID=BC29-6FC0 debian-installer/language=en keyboard-configuration/layoutcode=us  iso-scan/filename=/lubuntu-14.04-desktop-amd64.iso boot=casper file=/cdrom/preseed/ubuntu.seed noprompt quiet splash --
initrd (loop)/casper/initrd.lz
}
#MULTISYSTEM_MENU_FIN|23-06-2014-11:27:54-689967139|lubuntu-14.04-desktop-amd64.iso|multisystem-lubuntu|694Mio|
#MULTISYSTEM_STOP
#Ne supprimez pas ce marqueur! / Do not remove this marker!
menuentry "______________Grub4Dos______________" {
echo
}
#http://grub4dos.sourceforge.net/
#http://grub4dos.sourceforge.net/wiki/index.php/Grub4dos_tutorial
menuentry "Grub4Dos" {
	linux /boot/grub.exe --config-file=/boot/grub/menu.lst
}
menuentry "______________Syslinux______________" {
echo
}
#solution tordue, mais qui passe partout ...
#menuentry "Syslinux" {
#search --set -f /boot/syslinux/redir.img
#	linux16 /boot/syslinux/memdisk
#	initrd16 /boot/syslinux/redir.img
#}
#http://syslinux.zytor.com
menuentry "Syslinux" {
search --set -f "/boot/syslinux/ldlinux.sys"
drivemap -s (hd0) $root
chainloader +1
}
#Autre solution pour chainer Syslinux via une copie du mbr
#dd if=/dev/sd?1 of=/media/multisystem/boot/img/syslinux.mbr bs=512 count=1
#menuentry "Syslinux" {
#search --set -f "/boot/img/syslinux.mbr"
#drivemap -s (hd0) $root
#chainloader /boot/img/syslinux.mbr
#}
menuentry "______________UTIL______________" {
echo
}
## for debugging set debug=efi
#menuentry "0-testfakebios" {
#	hexdump -s 0xc0000 (mem)
#	fakebios
#	hexdump -s 0xc0000 (mem)
## deliberate error to get wait for key
#	xxx
#}
#How to test GRUB 2 on Macbook
#http://grub.enbug.org/TestingOnMacbook
#
#http://wiki.gentoo.org/wiki/GRUB2
#
#menuentry "Windows 7 BIOS/MBR" {
#     insmod part_msdos
#     insmod ntldr
#     insmod ntfs
#     ntldr (hd0,msdos1)/bootmgr
#}
#menuentry "Windows XP BIOS/MBR" {
#     insmod part_msdos
#     insmod ntldr
#     insmod ntfs
#     ntldr (hd0,msdos1)/ntldr
#}
#
#chainer un autre grub
#menuentry "grub.cfg auf /dev/sdb1" {
#	configfile (hd1,1)/boot/grub/grub.cfg
#}
#menuentry "Chain other configfile" {
#configfile /boot/grub/grub-xxx.cfg
#}
#
#menuentry "Return default menu" {
#chainloader /boot/grub/boot.img
#}
#chainer win ou autre OS
#menuentry "Chainer UUID de la partition" {
#insmod=ntfs
#set root=(hd0,1)
#search --no-floppy --fs-uuid --set=root xxx-xxx
#	drivemap -s (hd0) $root
#	chainloader +1
#}
#http://www.plop.at/en/bootmanagerdl.html
menuentry "PLoP Boot Manager" {
	linux16 /boot/img/plpbt
}
#http://www.supergrubdisk.org/
#http://developer.berlios.de/project/showfiles.php?group_id=10921
#SG2D (Floppy, CD & USB in one)
#super_grub_disk_hybrid-1.98s1.iso
menuentry "Super Grub2 Disk" {
search --set -f /boot/img/sgdh.iso
	linux16 /boot/syslinux/memdisk
	initrd16 /boot/img/sgdh.iso
}
menuentry "Super Grub Disk" {
search --set -f /boot/img/sgdfr.img
	linux16 /boot/syslinux/memdisk
	initrd16 /boot/img/sgdfr.img
}
menuentry "Smart Boot Manager" {
search --set -f /boot/img/sbootmgr.dsk
	linux16 /boot/syslinux/memdisk
	initrd16 /boot/img/sbootmgr.dsk
}
#Site: http://boot.kernel.org/index.html
#Téléchargement: http://boot.kernel.org/gpxe_images/gpxe.lkrn
menuentry "BKO (boot.kernel.org)" {
	search --set -f /boot/img/gpxe.lkrn
	linux16 /boot/img/gpxe.lkrn
}
#http://www.memtest.org/#downiso
menuentry "memtest86+" {
	linux16 /boot/img/memtest86+.bin
}
menuentry "vbeinfo" {
	vbeinfo
read
}
menuentry "lspci" {
	lspci
read
}
menuentry "gfxpayload 640x480" {
set gfxpayload=640x480
echo gfxpayload=${gfxpayload} press enter
read
}
menuentry "gfxpayload 800x600" {
set gfxpayload=800x600
echo gfxpayload=${gfxpayload} press enter
read
}
menuentry "gfxpayload 1024x768" {
set gfxpayload=1024x768
echo gfxpayload=${gfxpayload} press enter
read
}
menuentry "gfxpayload 1280x1024" {
set gfxpayload=1280x1024
echo gfxpayload=${gfxpayload} press enter
read
}
menuentry "Reboot" {
insmod reboot
reboot
}
--------------------------------------------------------------------------------

======================= sda1/boot/syslinux/syslinux.cfg: =======================

--------------------------------------------------------------------------------
default /boot/syslinux/vesamenu.c32
prompt 0
timeout 40
ontimeout 0

MENU TITLE MultiSystem LiveUSB
MENU DEFAULT 0

MENU BACKGROUND /boot/splash/splash.png

#Ne supprimez pas ce marqueur! / Do not remove this marker!
#MULTISYSTEM_START
#MULTISYSTEM_STOP
#Ne supprimez pas ce marqueur! / Do not remove this marker!

label 0
MENU LABEL PLoP Boot Manager
KERNEL /boot/img/plpbt

label 1
MENU LABEL Grub2
kernel /boot/syslinux/chain.c32 file=/boot/grub/boot.img

label 2
MENU LABEL Grub4Dos
kernel /boot/grub.exe

LABEL 3
MENU LABEL Hardware Detection Tool
KERNEL /boot/syslinux/hdt.c32

#Exemple pour booter un iso avec version recente de memdisk
#label 4
#MENU LABEL boot iso
#KERNEL /boot/syslinux/memdisk
#APPEND iso raw initrd=/g4u.iso

#LABEL 5
#KERNEL /boot/syslinux/memdisk
#APPEND initrd=freebsd.img floppy

#LABEL 6
#MENU LABEL Chainer win
#KERNEL /boot/syslinux/chain.c32 ntldr=/ntldr

#LABEL 7
#MENU LABEL Chainer partition 2
#kernel /boot/syslinux/chain.c32
#append hd0 2

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

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

           GiB - GB             File                                 Fragment(s)


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

           GiB - GB             File                                 Fragment(s)


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

 boot/syslinux/chain.c32            :  COM32R module (v4.xx)
 boot/syslinux/hdt.c32              :  COM32R module (v4.xx)
 boot/syslinux/ifplop.c32           :  COM32R module (v4.xx)
 boot/syslinux/menu.c32             :  COM32R module (v4.xx)
 boot/syslinux/reboot.c32           :  COM32R module (v4.xx)
 boot/syslinux/vesamenu.c32         :  COM32R module (v4.xx)

========= Devices which don't seem to have a corresponding hard drive: =========

no block devices found 

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

cat: /tmp/BootInfo-KYPOlUBA/Tmp_Log: No such file or directory
cat: /tmp/BootInfo-KYPOlUBA/Tmp_Log: No such file or directory
File descriptor 9 (/proc/4584/mounts) leaked on lvscan invocation. Parent PID 9560: bash
File descriptor 63 (pipe:[43794]) leaked on lvscan invocation. Parent PID 9560: bash
  No volume groups found

ADDITIONAL INFORMATION :
=================== log of boot-repair 2014-06-23__12h46 ===================
boot-repair version : 3.199~ppa40~saucy
boot-sav version : 3.199~ppa40~saucy
glade2script version : 3.2.2~ppa47~saucy
boot-sav-extra version : 3.199~ppa40~saucy
boot-repair is executed in live-session (Ubuntu 14.04 LTS, trusty, Ubuntu, x86_64)
ls: cannot access /home/usr/.config: No such file or directory
CPU op-mode(s):        32-bit, 64-bit
BOOT_IMAGE=(loop)/casper/vmlinuz.efi root=UUID=BC29-6FC0 debian-installer/language=en keyboard-configuration/layoutcode=us iso-scan/filename=/ubuntu-14.04-desktop-amd64.iso boot=casper file=/cdrom/preseed/ubuntu.seed noprompt quiet splash --

=================== os-prober:


=================== blkid:
/dev/loop0: LABEL="Ubuntu 14.04 LTS amd64" TYPE="iso9660"
/dev/loop1: TYPE="squashfs"
/dev/sda1: LABEL="MULTISYSTEM" UUID="BC29-6FC0" TYPE="vfat"

=================== No kernel in /isodevice/boot:
grub
grub.exe
img
kexec-loader.lst
multisystem.bs.save
polices
splash
syslinux


/isodevice/boot/grub/menu.lst detected
ls /sys/firmware/efi/vars : Timeout-8be4df61-93ca-11d2-aa0d-00e098032b8c,RTC-378d7b65-8da9-4773-b6e4-a47826a833e1,PlatformLangCodes-8be4df61-93ca-11d2-aa0d-00e098032b8c,PlatformLang-8be4df61-93ca-11d2-aa0d-00e098032b8c,new_var,MTC-eb704011-1402-11d3-8e77-00a0c969723b,MemoryTypeInformation-4c19049f-4137-4dd3-9c10-8b97a83ffdfa,LangCodes-8be4df61-93ca-11d2-aa0d-00e098032b8c,Lang-8be4df61-93ca-11d2-aa0d-00e098032b8c,HDDP-fab7e9e1-39dd-4f2b-8408-e20e906cb6de,del_var,ConsoleOutMode-793d9786-44dc-4709-b57f-85b8e8fdbfd2,ConOutDev-8be4df61-93ca-11d2-aa0d-00e098032b8c,ConOut-8be4df61-93ca-11d2-aa0d-00e098032b8c,ConInDev-8be4df61-93ca-11d2-aa0d-00e098032b8c,ConIn-8be4df61-93ca-11d2-aa0d-00e098032b8c,BootOrder-8be4df61-93ca-11d2-aa0d-00e098032b8c,BootOptionSupport-8be4df61-93ca-11d2-aa0d-00e098032b8c,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,Boot0001-8be4df61-93ca-11d2-aa0d-00e098032b8c,Boot0000-8be4df61-93ca-11d2-aa0d-00e098032b8c,
Please report this message to boot.repair@gmail.com
=================== UEFI/Legacy mode:
Unusual EFI: Please report this message to boot.repair@gmail.com
BIOS is EFI-compatible, and is setup in EFI-mode for this live-session.
SecureBoot maybe enabled. (maybe sec-boot, Please report this message to boot.repair@gmail.com)


=================== PARTITIONS & DISKS:
sda1	: sda,	not-sepboot,	no-grubenv	nogrub,	no-docgrub,	no-update-grub,	32,	no-kernel,	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,	/isodevice.

sda	: not-GPT,	BIOSboot-not-needed,	has-no-EFIpart, 	liveusb,	no-os,	128 sectors * 512 bytes


=================== parted -l:

Model: Kingston DataTraveler 2.0 (scsi)
Disk /dev/sda: 2055MB
Sector size (logical/physical): 512B/512B
Partition Table: msdos

Number  Start   End     Size    Type     File system  Flags
1      65.5kB  2055MB  2055MB  primary  fat32        boot

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

BYT;
/dev/sda:2055MB:scsi:512:512:msdos:Kingston DataTraveler 2.0;
1:65.5kB:2055MB:2055MB:fat32::boot;


=================== mount:
/cow on / type overlayfs (rw)
proc on /proc type proc (rw,noexec,nosuid,nodev)
sysfs on /sys type sysfs (rw,noexec,nosuid,nodev)
udev on /dev type devtmpfs (rw,mode=0755)
devpts on /dev/pts type devpts (rw,noexec,nosuid,gid=5,mode=0620)
tmpfs on /run type tmpfs (rw,noexec,nosuid,size=10%,mode=0755)
/dev/sda1 on /isodevice type vfat (rw,relatime,fmask=0022,dmask=0022,codepage=437,iocharset=iso8859-1,shortname=mixed,errors=remount-ro)
/dev/loop0 on /cdrom type iso9660 (ro,noatime)
/dev/loop1 on /rofs type squashfs (ro,noatime)
none on /sys/fs/cgroup type tmpfs (rw)
none on /sys/fs/fuse/connections type fusectl (rw)
none on /sys/kernel/debug type debugfs (rw)
none on /sys/kernel/security type securityfs (rw)
none on /sys/firmware/efi/efivars type efivarfs (rw)
tmpfs on /tmp type tmpfs (rw,nosuid,nodev)
none on /run/lock type tmpfs (rw,noexec,nosuid,nodev,size=5242880)
none on /run/shm type tmpfs (rw,nosuid,nodev)
none on /run/user type tmpfs (rw,noexec,nosuid,nodev,size=104857600,mode=0755)
none on /sys/fs/pstore type pstore (rw)
systemd on /sys/fs/cgroup/systemd type cgroup (rw,noexec,nosuid,nodev,none,name=systemd)
gvfsd-fuse on /run/user/999/gvfs type fuse.gvfsd-fuse (rw,nosuid,nodev,user=ubuntu)


=================== ls:
/sys/block/fd0 (filtered):  alignment_offset bdi capability dev device discard_alignment events events_async events_poll_msecs ext_range holders inflight power queue range removable ro size slaves stat subsystem trace uevent
/sys/block/sda (filtered):  alignment_offset bdi capability dev device discard_alignment events events_async events_poll_msecs ext_range holders inflight power queue range removable ro sda1 size slaves stat subsystem trace uevent
/sys/block/sr0 (filtered):  alignment_offset bdi capability dev device discard_alignment events events_async events_poll_msecs ext_range holders inflight power queue range removable ro size slaves stat subsystem trace uevent
/dev (filtered):  agpgart autofs block bsg btrfs-control bus cdrom char console core cpu cpu_dma_latency cuse disk dri ecryptfs fb0 fd fd0 full fuse hidraw0 hidraw1 hidraw2 hpet input kmsg log lp0 mapper mcelog mem net network_latency network_throughput null parport0 port ppp psaux ptmx ptp0 pts random rfkill rtc rtc0 sda sda1 sg0 sg1 shm snapshot snd sr0 stderr stdin stdout uhid uinput urandom vga_arbiter vhost-net vmci zero
ls /dev/mapper:  control

=================== hexdump -n512 -C /dev/sda1
00000000  eb 58 90 53 59 53 4c 49  4e 55 58 00 02 08 70 01  |.X.SYSLINUX...p.|
00000010  02 00 00 00 00 f8 00 00  3f 00 ff 00 80 00 00 00  |........?.......|
00000020  80 3f 3d 00 48 0f 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 c0 6f 29 bc 6d  75 6c 74 69 73 79 73 74  |..).o).multisyst|
00000050  65 6d 46 41 54 33 32 20  20 20 fa fc 31 c9 8e d1  |emFAT32   ..1...|
00000060  bc 76 7b 52 06 57 1e 56  8e c1 b1 26 bf 78 7b f3  |.v{R.W.V...&.x{.|
00000070  a5 8e d9 bb 78 00 0f b4  37 0f a0 56 20 d2 78 1b  |....x...7..V .x.|
00000080  31 c0 b1 06 89 3f 89 47  02 f3 64 a5 8a 0e 18 7c  |1....?.G..d....||
00000090  88 4d f8 50 50 50 50 cd  13 eb 62 8b 55 aa 8b 75  |.M.PPPP...b.U..u|
000000a0  a8 c1 ee 04 01 f2 83 fa  4f 76 31 81 fa b2 07 73  |........Ov1....s|
000000b0  2b f6 45 b4 7f 75 25 38  4d b8 74 20 66 3d 21 47  |+.E..u%8M.t f=!G|
000000c0  50 54 75 10 80 7d b8 ed  75 0a 66 ff 75 ec 66 ff  |PTu..}..u.f.u.f.|
000000d0  75 e8 eb 0f 51 51 66 ff  75 bc eb 07 51 51 66 ff  |u...QQf.u...QQf.|
000000e0  36 1c 7c b4 08 e8 e9 00  72 13 20 e4 75 0f c1 ea  |6.|.....r. .u...|
000000f0  08 42 89 16 1a 7c 83 e1  3f 89 0e 18 7c fb bb aa  |.B...|..?...|...|
00000100  55 b4 41 e8 cb 00 72 10  81 fb 55 aa 75 0a f6 c1  |U.A...r...U.u...|
00000110  01 74 05 c6 06 46 7d 00  66 b8 a0 87 00 00 66 ba  |.t...F}.f.....f.|
00000120  00 00 00 00 bb 00 80 e8  0e 00 66 81 3e 1c 80 8a  |..........f.>...|
00000130  99 61 6c 75 74 e9 f8 02  66 03 06 60 7b 66 13 16  |.alut...f..`{f..|
00000140  64 7b b9 10 00 eb 2b 66  52 66 50 06 53 6a 01 6a  |d{....+fRfP.Sj.j|
00000150  10 89 e6 66 60 b4 42 e8  77 00 66 61 8d 64 10 72  |...f`.B.w.fa.d.r|
00000160  01 c3 66 60 31 c0 e8 68  00 66 61 e2 da c6 06 46  |..f`1..h.fa....F|
00000170  7d 2b 66 60 66 0f b7 36  18 7c 66 0f b7 3e 1a 7c  |}+f`f..6.|f..>.||
00000180  66 f7 f6 31 c9 87 ca 66  f7 f7 66 3d ff 03 00 00  |f..1...f..f=....|
00000190  77 17 c0 e4 06 41 08 e1  88 c5 88 d6 b8 01 02 e8  |w....A..........|
000001a0  2f 00 66 61 72 01 c3 e2  c9 31 f6 8e d6 bc 68 7b  |/.far....1....h{|
000001b0  8e de 66 8f 06 78 00 be  da 7d ac 20 c0 74 09 b4  |..f..x...}. .t..|
000001c0  0e bb 07 00 cd 10 eb f2  31 c0 cd 16 cd 19 f4 eb  |........1.......|
000001d0  fd 8a 16 74 7b 06 cd 13  07 c3 42 6f 6f 74 20 65  |...t{.....Boot e|
000001e0  72 72 6f 72 0d 0a 00 00  00 00 00 00 00 00 00 00  |rror............|
000001f0  00 00 00 00 00 00 00 00  fe 02 b2 3e 18 37 55 aa  |...........>.7U.|
00000200

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

Filesystem     Type       Size  Used Avail Use% Mounted on
/cow           overlayfs  497M  100M  397M  21% /
udev           devtmpfs   486M   12K  486M   1% /dev
tmpfs          tmpfs      100M  1.4M   98M   2% /run
/dev/sda1      vfat       2.0G  1.7G  277M  86% /isodevice
/dev/loop0     iso9660    964M  964M     0 100% /cdrom
/dev/loop1     squashfs   923M  923M     0 100% /rofs
none           tmpfs      4.0K     0  4.0K   0% /sys/fs/cgroup
tmpfs          tmpfs      497M   28K  497M   1% /tmp
none           tmpfs      5.0M     0  5.0M   0% /run/lock
none           tmpfs      497M   80K  497M   1% /run/shm
none           tmpfs      100M   68K  100M   1% /run/user

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

Disk /dev/sda: 2055 MB, 2055208960 bytes
255 heads, 63 sectors/track, 249 cylinders, total 4014080 sectors
Units = sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disk identifier: 0x00092879

Device Boot      Start         End      Blocks   Id  System
/dev/sda1   *         128     4014079     2006976    b  W95 FAT32


No OS or WinEFI system

=================== Default settings
Recommended-Repair
This setting would not act on the MBR.
Additional repair would be performed:  repair-filesystems

=================== Settings chosen by the user
Boot-Info
This setting will not act on the MBR.



No change has been performed on your computer.

La partie importante de ce Boot-Info est là (la dernière ligne indique bien que l'image de boot est ubuntu-14.04-desktop-amd64.iso):

ADDITIONAL INFORMATION :
=================== log of boot-repair 2014-06-23__12h46 ===================
boot-repair version : 3.199~ppa40~saucy
boot-sav version : 3.199~ppa40~saucy
glade2script version : 3.2.2~ppa47~saucy
boot-sav-extra version : 3.199~ppa40~saucy
boot-repair is executed in live-session (Ubuntu 14.04 LTS, trusty, Ubuntu, x86_64)
ls: cannot access /home/usr/.config: No such file or directory
CPU op-mode(s):        32-bit, 64-bit
BOOT_IMAGE=(loop)/casper/vmlinuz.efi root=UUID=BC29-6FC0 debian-installer/language=en keyboard-configuration/layoutcode=us iso-scan/filename=/ubuntu-14.04-desktop-amd64.iso boot=casper file=/cdrom/preseed/ubuntu.seed noprompt quiet splash --

L'autre partie importante est là (on y voit "setup in EFI-mode for this live-session") :

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

2) Choix Lubuntu 14.04 dans le menu proposé par Multisystem au démarrage :
Depuis la session live, je fais ce Boot-Info (*) : http://paste.ubuntu.com/7690290/
que je colle ici :

 Boot Info Script e7fc706 + Boot-Repair extra info      [Boot-Info 23Dec2013]


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

 => Grub2 (v1.99) 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 
    in partition 112 for .

sda1: __________________________________________________________________________

    File system:       vfat
    Boot sector type:  SYSLINUX 4.05 20140113
    Boot sector info:  Syslinux looks at sector 34720 of /dev/sda1 for its 
                       second stage. SYSLINUX is installed in the 
                       /boot/syslinux directory. No errors found in the Boot 
                       Parameter Block.
    Operating System:  
    Boot files:        /boot/grub/menu.lst /boot/grub/grub.cfg 
                       /boot/syslinux/syslinux.cfg /EFI/BOOT/grubx64.efi 
                       /boot/grub/i386-pc/core.img /boot/syslinux/ldlinux.sys

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

Drive: sda _____________________________________________________________________

Disk /dev/sda: 2055 MB, 2055208960 bytes
255 heads, 63 sectors/track, 249 cylinders, total 4014080 sectors
Units = sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes

Partition  Boot  Start Sector    End Sector  # of Sectors  Id System

/dev/sda1    *            128     4,014,079     4,013,952   b W95 FAT32


"blkid" output: ________________________________________________________________

Device           UUID                                   TYPE       LABEL

/dev/loop0                                              iso9660    Lubuntu 14.04 LTS amd64
/dev/loop1                                              squashfs   
/dev/sda1        BC29-6FC0                              vfat       MULTISYSTEM
/dev/zram0       5980a3d7-73f0-4365-a1e9-93ac6450c6e6   swap       
/dev/zram1       b651c143-fc27-4d54-b885-dcc20df8700b   swap       
/dev/zram2       18eade2f-b4ed-4d4f-a636-6b224b9d30df   swap       
/dev/zram3       04365c83-4f35-42c6-94f7-d94ebe9643aa   swap       

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

Device           Mount_Point              Type       Options

/dev/loop0       /cdrom                   iso9660    (ro,noatime)
/dev/loop1       /rofs                    squashfs   (ro,noatime)
/dev/sda1        /isodevice               vfat       (rw,relatime,fmask=0022,dmask=0022,codepage=437,iocharset=iso8859-1,shortname=mixed,errors=remount-ro)


=========================== sda1/boot/grub/menu.lst: ===========================

--------------------------------------------------------------------------------
# This is a sample menu.lst file. You should make some changes to it.
# The old install method of booting via the stage-files has been removed.
# Please install GRLDR boot strap code to MBR with the bootlace.com
# utility under DOS/Win9x or Linux.

timeout 30
default /default
#convert -resize 640x480 -colors 14 /media/multisystem/boot/splash/splash.png /media/multisystem/boot/splash/splash.xpm.gz
splashimage=/boot/splash/splash.xpm.gz
#color blue/green yellow/red white/magenta white/magenta
foreground=0033FF
background=FF3300

#http://diddy.boot-land.net/grub4dos/Grub4dos.htm
#http://www.boot-land.net/forums/index.php?showforum=66
#http://diddy.boot-land.net/grub4dos/files/syntax.htm
#Ne supprimez pas ce marqueur! / Do not remove this marker!
#MULTISYSTEM_START
#MULTISYSTEM_STOP
#Ne supprimez pas ce marqueur! / Do not remove this marker!
#http://diddy.boot-land.net/grub4dos/files/syntax.htm

title Chainloader into GRUB 2
find --set-root /boot/grub/boot.img
chainloader /boot/grub/boot.img
boot

#title Chainloader into Syslinux
#map (hd0) (hd0)
#map (hd0) (hd0)
#chainloader (hd0,0)+1
#rootnoverify (hd0,0)

##Autre solution pour chainer Syslinux
##faire une copie du mbr de la clé USB
##dd if=/dev/sd?1 of=/media/multisystem/syslinux.mbr bs=512 count=1
#title Chainloader into Syslinux
#find --set-root --ignore-floppies --ignore-cd /syslinux.mbr
#map (hd0) (hd0)
#map (hd0) (hd0)
#map --rehook
#find --set-root --ignore-floppies --ignore-cd /syslinux.mbr
#chainloader /syslinux.mbr

##Autre solution pour chainer Syslinux
#title Chainloader into Syslinux
#find --set-root /boot/syslinux/ldlinux.sys
#chainloader /boot/syslinux/ldlinux.sys

##Autre solution pour chainer Syslinux
#title Chainloader into Syslinux
#find --set-root --ignore-floppies --ignore-cd /boot/syslinux/redir.img
#kernel /boot/syslinux/memdisk
#initrd /boot/syslinux/redir.img

#http://www.ibiblio.org/pub/micro/pc-stuff/freedos/files/distributions/
title FreeDos
kernel /boot/syslinux/memdisk
initrd /boot/img/fdboot.img

title find and load NTLDR of Windows NT/2K/XP
fallback 1
find --set-root --ignore-floppies --ignore-cd /ntldr
map () (hd0)
map (hd0) ()
map --rehook
find --set-root --ignore-floppies --ignore-cd /ntldr
chainloader /ntldr
savedefault --wait=2

title find and load BOOTMGR of Windows VISTA/SEVEN
fallback 2
find --set-root --ignore-floppies --ignore-cd /bootmgr
map () (hd0)
map (hd0) ()
map --rehook
find --set-root --ignore-floppies --ignore-cd /bootmgr
chainloader /bootmgr
savedefault --wait=2

title find and load CMLDR, the Recovery Console of Windows NT/2K/XP
fallback 3
find --set-root --ignore-floppies --ignore-cd /cmldr
map () (hd0)
map (hd0) ()
map --rehook
find --set-root --ignore-floppies --ignore-cd /cmldr
chainloader /cmldr
#####################################################################
# write string "cmdcons" to memory 0000:7C03 in 2 steps:
#####################################################################
# step 1. Write 4 chars "cmdc" at 0000:7C03
write 0x7C03 0x63646D63
# step 2. Write 3 chars "ons" and an ending null at 0000:7C07
write 0x7C07 0x00736E6F
savedefault --wait=2

title find and load IO.SYS of Windows 9x/Me
fallback 4
find --set-root /io.sys
chainloader /io.sys
savedefault --wait=2

title find and boot 0PE.ISO
fallback 5
find --set-root /0PE/0PE.ISO
map /0PE/0PE.ISO (0xff) || map --mem /0PE/0PE.ISO (0xff)
map --hook
chainloader (0xff)
savedefault --wait=2

title find and boot MicroPE.ISO
fallback 6
find --set-root /boot/MicroPE.ISO
map /boot/MicroPE.ISO (0xff) || map --mem /boot/MicroPE.ISO (0xff)
map --hook
chainloader (0xff)
savedefault --wait=2

title find and boot ubcd.iso
fallback 8
find --set-root /ubcd.iso
map /ubcd.iso (0xff) || map --mem /ubcd.iso (0xff)
map --hook
chainloader (0xff)
savedefault --wait=2

title commandline
commandline

title reboot
reboot

title halt
halt
--------------------------------------------------------------------------------

=========================== sda1/boot/grub/grub.cfg: ===========================

--------------------------------------------------------------------------------
#insmod gpt
#insmod pc
#insmod gfxmenu
#
#insmod videotest
insmod tga
insmod png
insmod gfxterm
insmod lspci
#insmod vbeinfo
insmod vbe
insmod ntfs
insmod chain
insmod biosdisk
insmod font
#http://grub.enbug.org/ThemeFormat
#http://grub.gibibit.com/Theme_format#colors
#http://code.google.com/p/burg/wiki/InstallUbuntu
#http://code.google.com/p/burg/downloads/list
#http://ubuntuforums.org/showthread.php?t=1195275
#pour acces a grub2 du bootloader principal modifier dans fichier: /etc/default/grub
#GRUB_HIDDEN_TIMEOUT=10 #0 par defaut
#GRUB_HIDDEN_TIMEOUT_QUIET=false #true d'origine
#sudo update-grub
#echo -n "Press ESC to see the menu... "
#if sleep --verbose --interruptible 5 ; then
#set timeout=0
#fi
set default=0
set timeout=30
set fallback=1
search --no-floppy --fs-uuid --set=root BC29-6FC0
set root=${root}
#http://grub.enbug.org/gfxterm
if loadfont /boot/polices/unicode.pf2 ; then
set gfxmode=640x480
if terminal_output gfxterm ; then true ; else
# For backward compatibility with versions of terminal.mod that don't
# understand terminal_output
terminal gfxterm
#set gfxmode=auto
#set gfxpayload=keep
fi
fi
#set locale_dir=/boot/grub/locale
#set lang=en
#insmod gettext
if background_image /boot/splash/splash.png ; then
#text no sel/fond ecran
set color_normal=white/black #1
#text sel/fond ecran sel
set color_highlight=green/white #1
else
set menu_color_normal=white/black #2
set menu_color_highlight=green/white #2
set color_normal=white/magenta #2
set color_highlight=green/white #2
fi
#set gfxpayload="1280x1024,1024x768,800x600,640x480"
#set gfxpayload=keep
#Ne supprimez pas ce marqueur! / Do not remove this marker!
#MULTISYSTEM_START
#MULTISYSTEM_MENU_DEBUT|23-06-2014-10:33:11-785669617|ubuntu-14.04-desktop-amd64.iso|multisystem-ubuntu|964Mio|
menuentry "ubuntu-14.04-desktop-amd64.iso" {
search --set -f "/ubuntu-14.04-desktop-amd64.iso"
loopback loop "/ubuntu-14.04-desktop-amd64.iso"
linux (loop)/casper/vmlinuz.efi root=UUID=BC29-6FC0 debian-installer/language=en keyboard-configuration/layoutcode=us  iso-scan/filename=/ubuntu-14.04-desktop-amd64.iso boot=casper file=/cdrom/preseed/ubuntu.seed noprompt quiet splash --
initrd (loop)/casper/initrd.lz
}
#MULTISYSTEM_MENU_FIN|23-06-2014-10:33:11-785669617|ubuntu-14.04-desktop-amd64.iso|multisystem-ubuntu|964Mio|
#MULTISYSTEM_MENU_DEBUT|23-06-2014-11:27:54-689967139|lubuntu-14.04-desktop-amd64.iso|multisystem-lubuntu|694Mio|
menuentry "lubuntu-14.04-desktop-amd64.iso" {
search --set -f "/lubuntu-14.04-desktop-amd64.iso"
loopback loop "/lubuntu-14.04-desktop-amd64.iso"
linux (loop)/casper/vmlinuz.efi root=UUID=BC29-6FC0 debian-installer/language=en keyboard-configuration/layoutcode=us  iso-scan/filename=/lubuntu-14.04-desktop-amd64.iso boot=casper file=/cdrom/preseed/ubuntu.seed noprompt quiet splash --
initrd (loop)/casper/initrd.lz
}
#MULTISYSTEM_MENU_FIN|23-06-2014-11:27:54-689967139|lubuntu-14.04-desktop-amd64.iso|multisystem-lubuntu|694Mio|
#MULTISYSTEM_STOP
#Ne supprimez pas ce marqueur! / Do not remove this marker!
menuentry "______________Grub4Dos______________" {
echo
}
#http://grub4dos.sourceforge.net/
#http://grub4dos.sourceforge.net/wiki/index.php/Grub4dos_tutorial
menuentry "Grub4Dos" {
	linux /boot/grub.exe --config-file=/boot/grub/menu.lst
}
menuentry "______________Syslinux______________" {
echo
}
#solution tordue, mais qui passe partout ...
#menuentry "Syslinux" {
#search --set -f /boot/syslinux/redir.img
#	linux16 /boot/syslinux/memdisk
#	initrd16 /boot/syslinux/redir.img
#}
#http://syslinux.zytor.com
menuentry "Syslinux" {
search --set -f "/boot/syslinux/ldlinux.sys"
drivemap -s (hd0) $root
chainloader +1
}
#Autre solution pour chainer Syslinux via une copie du mbr
#dd if=/dev/sd?1 of=/media/multisystem/boot/img/syslinux.mbr bs=512 count=1
#menuentry "Syslinux" {
#search --set -f "/boot/img/syslinux.mbr"
#drivemap -s (hd0) $root
#chainloader /boot/img/syslinux.mbr
#}
menuentry "______________UTIL______________" {
echo
}
## for debugging set debug=efi
#menuentry "0-testfakebios" {
#	hexdump -s 0xc0000 (mem)
#	fakebios
#	hexdump -s 0xc0000 (mem)
## deliberate error to get wait for key
#	xxx
#}
#How to test GRUB 2 on Macbook
#http://grub.enbug.org/TestingOnMacbook
#
#http://wiki.gentoo.org/wiki/GRUB2
#
#menuentry "Windows 7 BIOS/MBR" {
#     insmod part_msdos
#     insmod ntldr
#     insmod ntfs
#     ntldr (hd0,msdos1)/bootmgr
#}
#menuentry "Windows XP BIOS/MBR" {
#     insmod part_msdos
#     insmod ntldr
#     insmod ntfs
#     ntldr (hd0,msdos1)/ntldr
#}
#
#chainer un autre grub
#menuentry "grub.cfg auf /dev/sdb1" {
#	configfile (hd1,1)/boot/grub/grub.cfg
#}
#menuentry "Chain other configfile" {
#configfile /boot/grub/grub-xxx.cfg
#}
#
#menuentry "Return default menu" {
#chainloader /boot/grub/boot.img
#}
#chainer win ou autre OS
#menuentry "Chainer UUID de la partition" {
#insmod=ntfs
#set root=(hd0,1)
#search --no-floppy --fs-uuid --set=root xxx-xxx
#	drivemap -s (hd0) $root
#	chainloader +1
#}
#http://www.plop.at/en/bootmanagerdl.html
menuentry "PLoP Boot Manager" {
	linux16 /boot/img/plpbt
}
#http://www.supergrubdisk.org/
#http://developer.berlios.de/project/showfiles.php?group_id=10921
#SG2D (Floppy, CD & USB in one)
#super_grub_disk_hybrid-1.98s1.iso
menuentry "Super Grub2 Disk" {
search --set -f /boot/img/sgdh.iso
	linux16 /boot/syslinux/memdisk
	initrd16 /boot/img/sgdh.iso
}
menuentry "Super Grub Disk" {
search --set -f /boot/img/sgdfr.img
	linux16 /boot/syslinux/memdisk
	initrd16 /boot/img/sgdfr.img
}
menuentry "Smart Boot Manager" {
search --set -f /boot/img/sbootmgr.dsk
	linux16 /boot/syslinux/memdisk
	initrd16 /boot/img/sbootmgr.dsk
}
#Site: http://boot.kernel.org/index.html
#Téléchargement: http://boot.kernel.org/gpxe_images/gpxe.lkrn
menuentry "BKO (boot.kernel.org)" {
	search --set -f /boot/img/gpxe.lkrn
	linux16 /boot/img/gpxe.lkrn
}
#http://www.memtest.org/#downiso
menuentry "memtest86+" {
	linux16 /boot/img/memtest86+.bin
}
menuentry "vbeinfo" {
	vbeinfo
read
}
menuentry "lspci" {
	lspci
read
}
menuentry "gfxpayload 640x480" {
set gfxpayload=640x480
echo gfxpayload=${gfxpayload} press enter
read
}
menuentry "gfxpayload 800x600" {
set gfxpayload=800x600
echo gfxpayload=${gfxpayload} press enter
read
}
menuentry "gfxpayload 1024x768" {
set gfxpayload=1024x768
echo gfxpayload=${gfxpayload} press enter
read
}
menuentry "gfxpayload 1280x1024" {
set gfxpayload=1280x1024
echo gfxpayload=${gfxpayload} press enter
read
}
menuentry "Reboot" {
insmod reboot
reboot
}
--------------------------------------------------------------------------------

======================= sda1/boot/syslinux/syslinux.cfg: =======================

--------------------------------------------------------------------------------
default /boot/syslinux/vesamenu.c32
prompt 0
timeout 40
ontimeout 0

MENU TITLE MultiSystem LiveUSB
MENU DEFAULT 0

MENU BACKGROUND /boot/splash/splash.png

#Ne supprimez pas ce marqueur! / Do not remove this marker!
#MULTISYSTEM_START
#MULTISYSTEM_STOP
#Ne supprimez pas ce marqueur! / Do not remove this marker!

label 0
MENU LABEL PLoP Boot Manager
KERNEL /boot/img/plpbt

label 1
MENU LABEL Grub2
kernel /boot/syslinux/chain.c32 file=/boot/grub/boot.img

label 2
MENU LABEL Grub4Dos
kernel /boot/grub.exe

LABEL 3
MENU LABEL Hardware Detection Tool
KERNEL /boot/syslinux/hdt.c32

#Exemple pour booter un iso avec version recente de memdisk
#label 4
#MENU LABEL boot iso
#KERNEL /boot/syslinux/memdisk
#APPEND iso raw initrd=/g4u.iso

#LABEL 5
#KERNEL /boot/syslinux/memdisk
#APPEND initrd=freebsd.img floppy

#LABEL 6
#MENU LABEL Chainer win
#KERNEL /boot/syslinux/chain.c32 ntldr=/ntldr

#LABEL 7
#MENU LABEL Chainer partition 2
#kernel /boot/syslinux/chain.c32
#append hd0 2

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

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

           GiB - GB             File                                 Fragment(s)


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

           GiB - GB             File                                 Fragment(s)


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

 boot/syslinux/chain.c32            :  COM32R module (v4.xx)
 boot/syslinux/hdt.c32              :  COM32R module (v4.xx)
 boot/syslinux/ifplop.c32           :  COM32R module (v4.xx)
 boot/syslinux/menu.c32             :  COM32R module (v4.xx)
 boot/syslinux/reboot.c32           :  COM32R module (v4.xx)
 boot/syslinux/vesamenu.c32         :  COM32R module (v4.xx)

========= Devices which don't seem to have a corresponding hard drive: =========

no block devices found 

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

cat: /tmp/BootInfo-s7zXAEVj/Tmp_Log: No such file or directory
cat: /tmp/BootInfo-s7zXAEVj/Tmp_Log: No such file or directory
File descriptor 9 (/proc/3957/mounts) leaked on lvscan invocation. Parent PID 9011: bash
File descriptor 63 (pipe:[35946]) leaked on lvscan invocation. Parent PID 9011: bash
  No volume groups found

ADDITIONAL INFORMATION :
=================== log of boot-repair 2014-06-23__12h55 ===================
boot-repair version : 3.199~ppa40~saucy
boot-sav version : 3.199~ppa40~saucy
glade2script version : 3.2.2~ppa47~saucy
boot-sav-extra version : 3.199~ppa40~saucy
boot-repair is executed in live-session (Ubuntu 14.04 LTS, trusty, Ubuntu, x86_64)
ls: cannot access /home/usr/.config: No such file or directory
CPU op-mode(s):        32-bit, 64-bit
BOOT_IMAGE=(loop)/casper/vmlinuz.efi root=UUID=BC29-6FC0 debian-installer/language=en keyboard-configuration/layoutcode=us iso-scan/filename=/lubuntu-14.04-desktop-amd64.iso boot=casper file=/cdrom/preseed/ubuntu.seed noprompt quiet splash --

=================== os-prober:


=================== blkid:
/dev/loop0: LABEL="Lubuntu 14.04 LTS amd64" TYPE="iso9660"
/dev/loop1: TYPE="squashfs"
/dev/sda1: LABEL="MULTISYSTEM" UUID="BC29-6FC0" TYPE="vfat"
/dev/zram0: UUID="5980a3d7-73f0-4365-a1e9-93ac6450c6e6" TYPE="swap"
/dev/zram1: UUID="b651c143-fc27-4d54-b885-dcc20df8700b" TYPE="swap"
/dev/zram2: UUID="18eade2f-b4ed-4d4f-a636-6b224b9d30df" TYPE="swap"
/dev/zram3: UUID="04365c83-4f35-42c6-94f7-d94ebe9643aa" TYPE="swap"

=================== No kernel in /isodevice/boot:
grub
grub.exe
img
kexec-loader.lst
multisystem.bs.save
polices
splash
syslinux


/isodevice/boot/grub/menu.lst detected
ls /sys/firmware/efi/vars : Timeout-8be4df61-93ca-11d2-aa0d-00e098032b8c,RTC-378d7b65-8da9-4773-b6e4-a47826a833e1,PlatformLangCodes-8be4df61-93ca-11d2-aa0d-00e098032b8c,PlatformLang-8be4df61-93ca-11d2-aa0d-00e098032b8c,new_var,MTC-eb704011-1402-11d3-8e77-00a0c969723b,MemoryTypeInformation-4c19049f-4137-4dd3-9c10-8b97a83ffdfa,LangCodes-8be4df61-93ca-11d2-aa0d-00e098032b8c,Lang-8be4df61-93ca-11d2-aa0d-00e098032b8c,HDDP-fab7e9e1-39dd-4f2b-8408-e20e906cb6de,del_var,ConsoleOutMode-793d9786-44dc-4709-b57f-85b8e8fdbfd2,ConOutDev-8be4df61-93ca-11d2-aa0d-00e098032b8c,ConOut-8be4df61-93ca-11d2-aa0d-00e098032b8c,ConInDev-8be4df61-93ca-11d2-aa0d-00e098032b8c,ConIn-8be4df61-93ca-11d2-aa0d-00e098032b8c,BootOrder-8be4df61-93ca-11d2-aa0d-00e098032b8c,BootOptionSupport-8be4df61-93ca-11d2-aa0d-00e098032b8c,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,Boot0001-8be4df61-93ca-11d2-aa0d-00e098032b8c,Boot0000-8be4df61-93ca-11d2-aa0d-00e098032b8c,
Please report this message to boot.repair@gmail.com
=================== UEFI/Legacy mode:
Unusual EFI: Please report this message to boot.repair@gmail.com
BIOS is EFI-compatible, and is setup in EFI-mode for this live-session.
SecureBoot maybe enabled. (maybe sec-boot, Please report this message to boot.repair@gmail.com)


=================== PARTITIONS & DISKS:
sda1	: sda,	not-sepboot,	no-grubenv	nogrub,	no-docgrub,	no-update-grub,	32,	no-kernel,	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,	/isodevice.

sda	: not-GPT,	BIOSboot-not-needed,	has-no-EFIpart, 	liveusb,	no-os,	128 sectors * 512 bytes


=================== parted -l:

Model: Kingston DataTraveler 2.0 (scsi)
Disk /dev/sda: 2055MB
Sector size (logical/physical): 512B/512B
Partition Table: msdos

Number  Start   End     Size    Type     File system  Flags
1      65.5kB  2055MB  2055MB  primary  fat32        boot



                                                                          
Error: /dev/zram0: unrecognised disk label


                                                                          
Error: /dev/zram1: unrecognised disk label


                                                                          
Error: /dev/zram2: unrecognised disk label


                                                                          
Error: /dev/zram3: unrecognised disk label

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

BYT;
/dev/sda:2055MB:scsi:512:512:msdos:Kingston DataTraveler 2.0;
1:65.5kB:2055MB:2055MB:fat32::boot;


                                                                          
Error: /dev/zram0: unrecognised disk label


                                                                          
Error: /dev/zram1: unrecognised disk label


                                                                          
Error: /dev/zram2: unrecognised disk label


                                                                          
Error: /dev/zram3: unrecognised disk label


=================== mount:
/cow on / type overlayfs (rw)
proc on /proc type proc (rw,noexec,nosuid,nodev)
sysfs on /sys type sysfs (rw,noexec,nosuid,nodev)
udev on /dev type devtmpfs (rw,mode=0755)
devpts on /dev/pts type devpts (rw,noexec,nosuid,gid=5,mode=0620)
tmpfs on /run type tmpfs (rw,noexec,nosuid,size=10%,mode=0755)
/dev/sda1 on /isodevice type vfat (rw,relatime,fmask=0022,dmask=0022,codepage=437,iocharset=iso8859-1,shortname=mixed,errors=remount-ro)
/dev/loop0 on /cdrom type iso9660 (ro,noatime)
/dev/loop1 on /rofs type squashfs (ro,noatime)
none on /sys/fs/cgroup type tmpfs (rw)
none on /sys/fs/fuse/connections type fusectl (rw)
none on /sys/kernel/debug type debugfs (rw)
none on /sys/kernel/security type securityfs (rw)
none on /sys/firmware/efi/efivars type efivarfs (rw)
tmpfs on /tmp type tmpfs (rw,nosuid,nodev)
none on /run/lock type tmpfs (rw,noexec,nosuid,nodev,size=5242880)
none on /run/shm type tmpfs (rw,nosuid,nodev)
none on /run/user type tmpfs (rw,noexec,nosuid,nodev,size=104857600,mode=0755)
none on /sys/fs/pstore type pstore (rw)
systemd on /sys/fs/cgroup/systemd type cgroup (rw,noexec,nosuid,nodev,none,name=systemd)
gvfsd-fuse on /run/user/999/gvfs type fuse.gvfsd-fuse (rw,nosuid,nodev,user=lubuntu)


=================== ls:
/sys/block/fd0 (filtered):  alignment_offset bdi capability dev device discard_alignment events events_async events_poll_msecs ext_range holders inflight power queue range removable ro size slaves stat subsystem trace uevent
/sys/block/sda (filtered):  alignment_offset bdi capability dev device discard_alignment events events_async events_poll_msecs ext_range holders inflight power queue range removable ro sda1 size slaves stat subsystem trace uevent
/sys/block/sr0 (filtered):  alignment_offset bdi capability dev device discard_alignment events events_async events_poll_msecs ext_range holders inflight power queue range removable ro size slaves stat subsystem trace uevent
/dev (filtered):  agpgart autofs block bsg btrfs-control bus cdrom char console core cpu cpu_dma_latency cuse disk dri ecryptfs fb0 fd fd0 full fuse hidraw0 hidraw1 hidraw2 hpet input kmsg log lp0 mapper mcelog mem net network_latency network_throughput null parport0 port ppp psaux ptmx ptp0 pts random rfkill rtc rtc0 sda sda1 sg0 sg1 shm snapshot snd sr0 stderr stdin stdout uhid uinput urandom vga_arbiter vhost-net vmci zero
ls /dev/mapper:  control

=================== hexdump -n512 -C /dev/sda1
00000000  eb 58 90 53 59 53 4c 49  4e 55 58 00 02 08 70 01  |.X.SYSLINUX...p.|
00000010  02 00 00 00 00 f8 00 00  3f 00 ff 00 80 00 00 00  |........?.......|
00000020  80 3f 3d 00 48 0f 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 c0 6f 29 bc 6d  75 6c 74 69 73 79 73 74  |..).o).multisyst|
00000050  65 6d 46 41 54 33 32 20  20 20 fa fc 31 c9 8e d1  |emFAT32   ..1...|
00000060  bc 76 7b 52 06 57 1e 56  8e c1 b1 26 bf 78 7b f3  |.v{R.W.V...&.x{.|
00000070  a5 8e d9 bb 78 00 0f b4  37 0f a0 56 20 d2 78 1b  |....x...7..V .x.|
00000080  31 c0 b1 06 89 3f 89 47  02 f3 64 a5 8a 0e 18 7c  |1....?.G..d....||
00000090  88 4d f8 50 50 50 50 cd  13 eb 62 8b 55 aa 8b 75  |.M.PPPP...b.U..u|
000000a0  a8 c1 ee 04 01 f2 83 fa  4f 76 31 81 fa b2 07 73  |........Ov1....s|
000000b0  2b f6 45 b4 7f 75 25 38  4d b8 74 20 66 3d 21 47  |+.E..u%8M.t f=!G|
000000c0  50 54 75 10 80 7d b8 ed  75 0a 66 ff 75 ec 66 ff  |PTu..}..u.f.u.f.|
000000d0  75 e8 eb 0f 51 51 66 ff  75 bc eb 07 51 51 66 ff  |u...QQf.u...QQf.|
000000e0  36 1c 7c b4 08 e8 e9 00  72 13 20 e4 75 0f c1 ea  |6.|.....r. .u...|
000000f0  08 42 89 16 1a 7c 83 e1  3f 89 0e 18 7c fb bb aa  |.B...|..?...|...|
00000100  55 b4 41 e8 cb 00 72 10  81 fb 55 aa 75 0a f6 c1  |U.A...r...U.u...|
00000110  01 74 05 c6 06 46 7d 00  66 b8 a0 87 00 00 66 ba  |.t...F}.f.....f.|
00000120  00 00 00 00 bb 00 80 e8  0e 00 66 81 3e 1c 80 8a  |..........f.>...|
00000130  99 61 6c 75 74 e9 f8 02  66 03 06 60 7b 66 13 16  |.alut...f..`{f..|
00000140  64 7b b9 10 00 eb 2b 66  52 66 50 06 53 6a 01 6a  |d{....+fRfP.Sj.j|
00000150  10 89 e6 66 60 b4 42 e8  77 00 66 61 8d 64 10 72  |...f`.B.w.fa.d.r|
00000160  01 c3 66 60 31 c0 e8 68  00 66 61 e2 da c6 06 46  |..f`1..h.fa....F|
00000170  7d 2b 66 60 66 0f b7 36  18 7c 66 0f b7 3e 1a 7c  |}+f`f..6.|f..>.||
00000180  66 f7 f6 31 c9 87 ca 66  f7 f7 66 3d ff 03 00 00  |f..1...f..f=....|
00000190  77 17 c0 e4 06 41 08 e1  88 c5 88 d6 b8 01 02 e8  |w....A..........|
000001a0  2f 00 66 61 72 01 c3 e2  c9 31 f6 8e d6 bc 68 7b  |/.far....1....h{|
000001b0  8e de 66 8f 06 78 00 be  da 7d ac 20 c0 74 09 b4  |..f..x...}. .t..|
000001c0  0e bb 07 00 cd 10 eb f2  31 c0 cd 16 cd 19 f4 eb  |........1.......|
000001d0  fd 8a 16 74 7b 06 cd 13  07 c3 42 6f 6f 74 20 65  |...t{.....Boot e|
000001e0  72 72 6f 72 0d 0a 00 00  00 00 00 00 00 00 00 00  |rror............|
000001f0  00 00 00 00 00 00 00 00  fe 02 b2 3e 18 37 55 aa  |...........>.7U.|
00000200

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

Filesystem     Type       Size  Used Avail Use% Mounted on
/cow           overlayfs  497M  177M  320M  36% /
udev           devtmpfs   486M   12K  486M   1% /dev
tmpfs          tmpfs      100M  1.4M   98M   2% /run
/dev/sda1      vfat       2.0G  1.7G  277M  86% /isodevice
/dev/loop0     iso9660    694M  694M     0 100% /cdrom
/dev/loop1     squashfs   635M  635M     0 100% /rofs
none           tmpfs      4.0K     0  4.0K   0% /sys/fs/cgroup
tmpfs          tmpfs      497M  8.0K  497M   1% /tmp
none           tmpfs      5.0M     0  5.0M   0% /run/lock
none           tmpfs      497M     0  497M   0% /run/shm
none           tmpfs      100M   24K  100M   1% /run/user

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

Disk /dev/sda: 2055 MB, 2055208960 bytes
255 heads, 63 sectors/track, 249 cylinders, total 4014080 sectors
Units = sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disk identifier: 0x00092879

Device Boot      Start         End      Blocks   Id  System
/dev/sda1   *         128     4014079     2006976    b  W95 FAT32


No OS or WinEFI system

=================== Default settings
Recommended-Repair
This setting would not act on the MBR.
Additional repair would be performed:  repair-filesystems

=================== Settings chosen by the user
Boot-Info
This setting will not act on the MBR.



No change has been performed on your computer.

La partie importante est là (on lit à la dernière ligne que la session a démarré sur lubuntu-14.04-desktop-amd64.iso) :

ADDITIONAL INFORMATION :
=================== log of boot-repair 2014-06-23__12h55 ===================
boot-repair version : 3.199~ppa40~saucy
boot-sav version : 3.199~ppa40~saucy
glade2script version : 3.2.2~ppa47~saucy
boot-sav-extra version : 3.199~ppa40~saucy
boot-repair is executed in live-session (Ubuntu 14.04 LTS, trusty, Ubuntu, x86_64)
ls: cannot access /home/usr/.config: No such file or directory
CPU op-mode(s):        32-bit, 64-bit
BOOT_IMAGE=(loop)/casper/vmlinuz.efi root=UUID=BC29-6FC0 debian-installer/language=en keyboard-configuration/layoutcode=us iso-scan/filename=/lubuntu-14.04-desktop-amd64.iso boot=casper file=/cdrom/preseed/ubuntu.seed noprompt quiet splash --

et un peu plus bas, on a bien "setup in EFI-mode for this live-session" :

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

(*) Le Boot-Info est réalisé en utilisant la procédure simplifiée : http://forum.ubuntu-fr.org/viewtopic.ph … #p16690381

Dernière modification par malbo (Le 23/06/2014, à 14:45)

Hors ligne

#637 Le 23/06/2014, à 14:52

frafa

Re : MultiSystem, Créez votre LiveUSB MultiBoot simplement! [2]

Salut malbo smile
Tu ne t'y prend pas comme un manche, si manche il y a c'est moi ...

Jusque à présent je n'avait rien en UEFI pour tester/implémenter,
une asso: http://facil.qc.ca/
viens de m'offrir un Dell en UEFI pour que j'ajoute support UEFI dans MultiSystem, MERKI !

Il faut que je trouve le moyen (pas vraiment regardé encore)
d'ajouter en dependances dans le ".../DEBIAN/control" du .deb
grub-pc "|| ou" grub-efi, actuellement la dependance est grub-pc,
je n'ai jamais eut ce cas ou j'ai besoin de mettre un "ou" dans un fichier ".../DEBIAN/control"
donc actuellement il faut créer le LiveUSB UEFI sur un PC NON UEFI ...

J'essaie de regarder ce soir ...

EDIT1:
Le fichier control actuel ...

Package: multisystem
Version: 1.0296
Architecture: all
Maintainer: Mr Fabre François <liveusb@gmail.com>
Installed-Size: 18068
Pre-Depends: gtkdialog (>= 2:0.8.3-1)
Depends: gtkdialog (>= 2:0.8.3-1), vim-common, xz-utils, mtools, aptitude, gvfs-bin, squashfs-tools, lzma, dosfstools, cabextract, rsync, bash, genisoimage, fatresize, unzip, hdparm, gettext, parted, xterm, gksu, zenity, xdotool, wmctrl, qemu, qemu-kvm, imagemagick, syslinux, grub-pc, cryptsetup
Section: admin
Priority: optional
Homepage: http://liveusb.info/dotclear/
Description: Avec MultiSystem Créez votre LiveUSB MultiBoot simplement,
 .
 Vous avez juste a Glisser/Déposer
 vos fichiers .iso sur une fenêtre et c'est tout.
 .

EDIT2:
apparement ou est implémenté voir "5.2.1.1. Dependencies: the Depends Field"
http://debian-handbook.info/browse/stab … ation.html
c'est |
je teste ce soir ...

Dernière modification par frafa (Le 23/06/2014, à 15:23)

Hors ligne

#638 Le 23/06/2014, à 16:25

Babdu89

Re : MultiSystem, Créez votre LiveUSB MultiBoot simplement! [2]

Bonjour.
@ malbo  ...  Chapeau bas comme d'habitude Monsieur .  wink  Çà c'est du test!!!.

Faire un live usb MultiSystem, a partir d'une session live d'un Ubuntu, où on installe le MultiSystem. Le tout sur une machine réelle, c'est déjà pas de la tarte.
Mais arriver a faire "gober" deux ports usb occupés simultanément sur une VM , pour réussir ...Chapeau .

@ frafa ...  smile

Tu dis;

donc actuellement il faut créer le LiveUSB UEFI sur un PC NON UEFI ...

Si je comprends bien,  çà veut dire qu'une foi ta correction faite. On pourra créer un  live usb MultiSystem UEFI et non UEFI depuis des machine UEFI et non UEFI ?...

Si c'est le cas il y a de "l'universalité" dans l'air . Sur un MultiSystem, on pourra panacher ; iso en 32/64 bits en mode  Bios Legacy  et UEFI ? ...

Si c'est bien le cas, çà a le mérite d'être souligné. Mais il faudra quand même rappeler qu'ont ne pourra démarrer les sessions live en UEFI, que sur les machines bootant en UEFI  (précision à apporter pour le secure boot) ...

@+.   Babdu89   .  smile


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

Hors ligne

#639 Le 23/06/2014, à 19:46

malbo

Re : MultiSystem, Créez votre LiveUSB MultiBoot simplement! [2]

frafa a écrit :

donc actuellement il faut créer le LiveUSB UEFI sur un PC NON UEFI ...

J'ai essayé mais ça donne une liveUSB qui n'a pas de dossier EFI donc elle ne boote pas en mode EFI et je n'arrive pas non plus à la faire booter en non-EFI. C'est pas trop intéressant comme liveUSB...

Hors ligne

#640 Le 23/06/2014, à 19:55

PPdM

Re : MultiSystem, Créez votre LiveUSB MultiBoot simplement! [2]

Essayes en récupérant un dossier UFI  de windows, je n'ai pas de PC EFI sous la main pour tester, mais j'avais un disque , hs malheureusement, qui fonctionnait plus ou moins bien avec cette astuce. mais j'avais eu des soucis pour booter après installation, mais comme je ne  l'ais fait qu'une fois , je ne me souvient plus de tout, mais Bootreapir m'avais bien aidé.


La critique est facile, mais l'art est difficile !
L'humanité étant ce qu'elle est, la liberté ne sera jamais un acquit, mais toujours un droit à défendre !
Pour résoudre un problème commence par poser les bonnes questions, la bonne solution en découlera

Hors ligne

#641 Le 23/06/2014, à 20:07

Babdu89

Re : MultiSystem, Créez votre LiveUSB MultiBoot simplement! [2]

Bonsoir.
Comme je trimbale mes disques de machines en machines . Qu'elles sont en 32 bits  et  32/64 bits, je n'utilise que les OS en 32 bits.
Je télécharge Ubuntu 14.04 en 64 bits sur le site officiel. Et essaye un MultiSystem sur une machine 32/64 bits non UEFI.
On va bien voir , si çà boot en mode Bios , puisque malbo dit que çà ne boot pas chez lui.

Édit.
En attendant la fin du téléchargement de l'iso (encore 19 mn). J'ai préparé une clé Multisystem.
Les maj du Multisystem me sont proposées. Je les fais . Je regarde dans les dossier de la clé, j'ai bien un dossier EFI/BOOT/  avec les fichiers BOOTx64.EFI  et grubx64.efi  dedans.

Alors iso en place. (MD5 bon; dccff28314d9ae4ed262cfc6f35e5153  ubuntu-14.04-desktop-amd64.iso ) .
Chargement de l'iso sur la clé nouvellement faite ...
J'ai droit à çà .

1403554859.png

@ frafa...

Il y des log à récupérer quelque part et à poster? ou autre manip qui pourrait t'aider à comprendre le souci?.
Le fichier  /boot/grub/grub.cfg de la clé est vide ...

Contenu du fichier /boot/grub/grub.save.cfg

#insmod gpt
#insmod pc
#insmod gfxmenu
#
#insmod videotest
insmod tga
insmod png
insmod gfxterm
insmod lspci
#insmod vbeinfo
insmod vbe
insmod ntfs
insmod chain
insmod biosdisk
insmod font

#http://grub.enbug.org/ThemeFormat
#http://grub.gibibit.com/Theme_format#colors
#http://code.google.com/p/burg/wiki/InstallUbuntu
#http://code.google.com/p/burg/downloads/list
#http://ubuntuforums.org/showthread.php?t=1195275

#pour acces a grub2 du bootloader principal modifier dans fichier: /etc/default/grub
#GRUB_HIDDEN_TIMEOUT=10 #0 par defaut
#GRUB_HIDDEN_TIMEOUT_QUIET=false #true d'origine
#sudo update-grub

#echo -n "Press ESC to see the menu... "
#if sleep --verbose --interruptible 5 ; then
#set timeout=0
#fi

set default=0
set timeout=30
set fallback=1

search --no-floppy --fs-uuid --set uuid-uuid-uuid
set root=${root}

#http://grub.enbug.org/gfxterm
if loadfont /boot/polices/unicode.pf2 ; then
set gfxmode=640x480
if terminal_output gfxterm ; then true ; else
# For backward compatibility with versions of terminal.mod that don't
# understand terminal_output
terminal gfxterm
#set gfxmode=auto
#set gfxpayload=keep
fi
fi

#set locale_dir=/boot/grub/locale
#set lang=en
#insmod gettext

if background_image /boot/splash/splash.png ; then
#text no sel/fond ecran
set color_normal=white/black #1
#text sel/fond ecran sel
set color_highlight=green/white #1
else
set menu_color_normal=white/black #2
set menu_color_highlight=green/white #2
set color_normal=white/magenta #2
set color_highlight=green/white #2
fi

#set gfxpayload="1280x1024,1024x768,800x600,640x480"
#set gfxpayload=keep

#Ne supprimez pas ce marqueur! / Do not remove this marker!
#MULTISYSTEM_START
#MULTISYSTEM_MENU_DEBUT|23-06-2014-22:09:11-730594266|ubuntu-14.04-desktop-amd64.iso|multisystem-ubuntu|964Mio|
menuentry "ubuntu-14.04-desktop-amd64.iso" {
search --set -f "/ubuntu-14.04-desktop-amd64.iso"
loopback loop "/ubuntu-14.04-desktop-amd64.iso"
linux (loop)/casper/vmlinuz.efi root=UUID=FCFD-347D debian-installer/language=fr keyboard-configuration/layoutcode=fr keyboard-configuration/variantcode=latin9 iso-scan/filename=/ubuntu-14.04-desktop-amd64.iso boot=casper file=/cdrom/preseed/ubuntu.seed noprompt quiet splash --
initrd (loop)/casper/initrd.lz
}
#MULTISYSTEM_MENU_FIN|23-06-2014-22:09:11-730594266|ubuntu-14.04-desktop-amd64.iso|multisystem-ubuntu|964Mio|
#MULTISYSTEM_STOP
#Ne supprimez pas ce marqueur! / Do not remove this marker!

menuentry "______________Grub4Dos______________" {
echo
}

#http://grub4dos.sourceforge.net/
#http://grub4dos.sourceforge.net/wiki/index.php/Grub4dos_tutorial
menuentry "Grub4Dos" {
	linux /boot/grub.exe --config-file=/boot/grub/menu.lst
}

menuentry "______________Syslinux______________" {
echo
}
#solution tordue, mais qui passe partout ...
#menuentry "Syslinux" {
#search --set -f /boot/syslinux/redir.img
#	linux16 /boot/syslinux/memdisk
#	initrd16 /boot/syslinux/redir.img
#}
#http://syslinux.zytor.com
menuentry "Syslinux" {
search --set -f "/boot/syslinux/ldlinux.sys"
drivemap -s (hd0) $root
chainloader +1
}
#Autre solution pour chainer Syslinux via une copie du mbr
#dd if=/dev/sd?1 of=/media/multisystem/boot/img/syslinux.mbr bs=512 count=1
#menuentry "Syslinux" {
#search --set -f "/boot/img/syslinux.mbr"
#drivemap -s (hd0) $root
#chainloader /boot/img/syslinux.mbr
#}
menuentry "______________UTIL______________" {
echo
}

## for debugging set debug=efi
#menuentry "0-testfakebios" {
#	hexdump -s 0xc0000 (mem)
#	fakebios
#	hexdump -s 0xc0000 (mem)
## deliberate error to get wait for key
#	xxx
#}

#How to test GRUB 2 on Macbook
#http://grub.enbug.org/TestingOnMacbook

#
#http://wiki.gentoo.org/wiki/GRUB2
#
#menuentry "Windows 7 BIOS/MBR" {
#     insmod part_msdos
#     insmod ntldr
#     insmod ntfs
#     ntldr (hd0,msdos1)/bootmgr
#}
#menuentry "Windows XP BIOS/MBR" {
#     insmod part_msdos
#     insmod ntldr
#     insmod ntfs
#     ntldr (hd0,msdos1)/ntldr
#}
#

#chainer un autre grub
#menuentry "grub.cfg auf /dev/sdb1" {
#	configfile (hd1,1)/boot/grub/grub.cfg
#}
#menuentry "Chain other configfile" {
#configfile /boot/grub/grub-xxx.cfg
#}

#
#menuentry "Return default menu" {
#chainloader /boot/grub/boot.img
#}

#chainer win ou autre OS
#menuentry "Chainer UUID de la partition" {
#insmod=ntfs
#set root=(hd0,1)
#search --no-floppy --fs-uuid --set xxx-xxx
#	drivemap -s (hd0) $root
#	chainloader +1
#}

#http://www.plop.at/en/bootmanagerdl.html
menuentry "PLoP Boot Manager" {
	linux16 /boot/img/plpbt
}

#http://www.supergrubdisk.org/
#http://developer.berlios.de/project/showfiles.php?group_id=10921
#SG2D (Floppy, CD & USB in one)
#super_grub_disk_hybrid-1.98s1.iso
menuentry "Super Grub2 Disk" {
search --set -f /boot/img/sgdh.iso
	linux16 /boot/syslinux/memdisk
	initrd16 /boot/img/sgdh.iso
}

menuentry "Super Grub Disk" {
search --set -f /boot/img/sgdfr.img
	linux16 /boot/syslinux/memdisk
	initrd16 /boot/img/sgdfr.img
}

menuentry "Smart Boot Manager" {
search --set -f /boot/img/sbootmgr.dsk
	linux16 /boot/syslinux/memdisk
	initrd16 /boot/img/sbootmgr.dsk
}

#Site: http://boot.kernel.org/index.html
#Téléchargement: http://boot.kernel.org/gpxe_images/gpxe.lkrn
menuentry "BKO (boot.kernel.org)" {
	search --set -f /boot/img/gpxe.lkrn
	linux16 /boot/img/gpxe.lkrn
}

#http://www.memtest.org/#downiso
menuentry "memtest86+" {
	linux16 /boot/img/memtest86+.bin
}

menuentry "vbeinfo" {
	vbeinfo
read
}

menuentry "lspci" {
	lspci
read
}

menuentry "gfxpayload 640x480" {
set gfxpayload=640x480
echo gfxpayload=${gfxpayload} press enter
read
}
menuentry "gfxpayload 800x600" {
set gfxpayload=800x600
echo gfxpayload=${gfxpayload} press enter
read
}
menuentry "gfxpayload 1024x768" {
set gfxpayload=1024x768
echo gfxpayload=${gfxpayload} press enter
read
}
menuentry "gfxpayload 1280x1024" {
set gfxpayload=1280x1024
echo gfxpayload=${gfxpayload} press enter
read
}

menuentry "Reboot" {
insmod reboot
reboot
}

@+.   Babdu89  .

Dernière modification par Babdu89 (Le 23/06/2014, à 21:28)


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

Hors ligne

#642 Le 23/06/2014, à 21:34

frafa

Re : MultiSystem, Créez votre LiveUSB MultiBoot simplement! [2]

Bonjour,
Je viens de ripper un correctif,
normalement la version actuelle (1.0297) devrait permettre de créer un LiveUSB UEFI,
depuis un PC 64 bits UEFI et non UEFI 32/64 bits

Perso testé que création depuis un PC en 32 Bits non UEFI,
Testé boot en UEFI de Ubuntu Kubuntu mint-cinnamon en 64 Bits

Fo que je teste install d'un linux, mais je n'ai pas sous la main de quoi sauver de disque de mon nouveu Dell inspiron 15,
dès que je trouve un disque pour sauver celui du dell, je teste...

Hors ligne

#643 Le 23/06/2014, à 22:13

Babdu89

Re : MultiSystem, Créez votre LiveUSB MultiBoot simplement! [2]

@ frafa.

Suite à ton post, je refais ma clé . Je n'ai plus le dossier EFI . Comme indiqué post#641 .

Le fichier /boot/grub/grub.cfg  est encore vide.
J'ai remarqué qu'à la première mise à jour de Grub il n'y a pas écriture de Grub première partie dans le MBR de la clé (chose que j'avais remaqué sur mes autres clés) .
Çà démarre l'installation de Grub, puis des messages d'erreurs qui passent vite dans le terminal, et je me retrouve avec çà ;

1403557894.png

Y a des log à récupérer quelque part? .

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

#644 Le 23/06/2014, à 22:24

frafa

Re : MultiSystem, Créez votre LiveUSB MultiBoot simplement! [2]

@Babdu89
Bonsoir,

Strange ...
Pas de log, enfin pas sur la partie execution,
Quelle version de MultiSystem tu utilise, tu est bien en version 1.0297 ?

Démarre mulyisystem dans un terminal et dit moi si tu voit des erreurs ...

multisytem

Hors ligne

#645 Le 23/06/2014, à 22:35

Babdu89

Re : MultiSystem, Créez votre LiveUSB MultiBoot simplement! [2]

@ frafa.

Retour terminal



bernard@bernard-System-Product-Name:~$ multisystem
Gtkdialog version: 0.8.3
LANG:fr_FR.UTF-8
LANGUAGE:fr_FR.UTF-8
LANGSEL:French|fr|fr_FR.UTF-8|Fabre François|liveusb@gmail.com

(gtkdialog:11850): GLib-CRITICAL **: g_hash_table_insert_internal: assertion 'hash_table != NULL' failed







device:
EXIT="abort"
device:/dev/sde1
MESSAGES="Veuillez sélectionner le volume USB
à utiliser dans la liste ci-dessous.
ATTENTION!,
Grub2 sera installé dans son mbr.
"
btmaj2=""
btuninstall2=""
checkupdate2="true"
device="/dev/sde1"
lister_lang="French"
statusbar="Device:/dev/sde1
"
theme_pixmap=""
EXIT="detection"

(gtkdialog:12200): GLib-CRITICAL **: g_hash_table_insert_internal: assertion 'hash_table != NULL' failed
--2014-06-23 23:55:33--  http://liveusb.info/multisystem/version-multisystem.txt
Résolution de liveusb.info (liveusb.info)… 92.243.9.215
Connexion à liveusb.info (liveusb.info)|92.243.9.215|:80… connecté.
requête HTTP transmise, en attente de la réponse… 200 OK
Taille : 33 [text/plain]
Enregistre : «/tmp/multisystem/version-multisystem.txt»

100%[======================================>] 33          --.-K/s   ds 0s      

2014-06-23 23:55:33 (6,02 MB/s) - «/tmp/multisystem/version-multisystem.txt» enregistré [33/33]

ok

(gtkdialog:12229): GLib-CRITICAL **: g_hash_table_insert_internal: assertion 'hash_table != NULL' failed
ok plpbt.bin
nohup: la sortie est ajoutée à «/home/bernard/nohup.out»
grub-install : information : executing modprobe efivars 2>/dev/null.
grub-install : information : Looking for /sys/firmware/efi ...
grub-install : information : ... not found. Looking for /proc/device-tree ...
grub-install : information : ... not found.
Installing for i386-pc platform.
grub-install : erreur : le périphérique d'installation n'est pas indiqué.
/usr/local/share/multisystem/gui_multisystem.sh: ligne 310: /tmp/multisystem/multisystem-about: Aucun fichier ou dossier de ce type
EXIT="abort"
/usr/local/share/multisystem/gui_multisystem.sh: ligne 310: /tmp/multisystem/multisystem-about: Aucun fichier ou dossier de ce type
Terminated
bernard@bernard-System-Product-Name:~$ 

J'ai ceci sur le bureau...

1403559239.png

@+.   Babdu89  .

Dernière modification par Babdu89 (Le 23/06/2014, à 22:57)


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

Hors ligne

#646 Le 23/06/2014, à 22:54

frafa

Re : MultiSystem, Créez votre LiveUSB MultiBoot simplement! [2]

Quelle version de Gtkdialog est installée ?
tu prend bien la version de mon depôt ?
fait voir le retour de:

dpkg -l gtkdialog

Hors ligne

#647 Le 23/06/2014, à 23:00

Babdu89

Re : MultiSystem, Créez votre LiveUSB MultiBoot simplement! [2]

J'ai édité le post précédent, je me suis aperçu que j'avais fais une fausse manip.


bernard@bernard-System-Product-Name:~$ dpkg -l gtkdialog
Souhait=inconnU/Installé/suppRimé/Purgé/H=à garder
| État=Non/Installé/fichier-Config/dépaqUeté/échec-conFig/H=semi-installé/W=attend-traitement-déclenchements
|/ Err?=(aucune)/besoin Réinstallation (État,Err: majuscule=mauvais)
||/ Nom            Version      Architecture Description
+++-==============-============-============-=================================
ii  gtkdialog      2:0.8.3-1    i386         GUI-creation command-line utility
bernard@bernard-System-Product-Name:~$

1403561133.png

1403561159.png

Dernière modification par Babdu89 (Le 23/06/2014, à 23:06)


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

Hors ligne

#648 Le 23/06/2014, à 23:21

Babdu89

Re : MultiSystem, Créez votre LiveUSB MultiBoot simplement! [2]

/usr/local/share/multisystem/gui_multisystem.sh: ligne 310: /tmp/multisystem/multisystem-about: Aucun fichier ou dossier de ce type

1403561930.png

Avant de fermer le terminal...
Dans la fenêtre du navigateur de fichier ,dans /tmp , il y a quelque chose à récupérer? .  multisystem-about ?


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

Hors ligne

#649 Le 23/06/2014, à 23:30

frafa

Re : MultiSystem, Créez votre LiveUSB MultiBoot simplement! [2]

hum dans ton log je trouve cette ligne bizarre,
/usr/local/share/multisystem/gui_multisystem.sh: ligne 310: /tmp/multisystem/multisystem-about: Aucun fichier ou dossier de ce type

verifie que tu as bien en user normal le droit d'ecrire dans le dossier /tmp/multisystem/multisystem-about

colle ca dans un terminal voir si te fait une erreur:

>/tmp/multisystem/multisystem-about

Dernière modification par frafa (Le 23/06/2014, à 23:30)

Hors ligne

#650 Le 23/06/2014, à 23:33

Babdu89

Re : MultiSystem, Créez votre LiveUSB MultiBoot simplement! [2]

bernard@bernard-System-Product-Name:~$ >/tmp/multisystem/multisystem-about
bash: /tmp/multisystem/multisystem-about: Aucun fichier ou dossier de ce type
bernard@bernard-System-Product-Name:~$ 

verifie que tu as bien en user normal le droit d'ecrire dans le dossier /tmp/multisystem/multisystem-about

1403563073.png

1403563140.png

1403563189.png

1403563235.png

Il n'y a pas de dossier ou fichier  multisystem-about  dans /tmp/multisystem   , comme tu peux le voir.

@+.   Babdu89   .

Dernière modification par Babdu89 (Le 23/06/2014, à 23:43)


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

Hors ligne