Contenu | Rechercher | Menus

Annonce

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

À propos de l'équipe du forum.

#26 Le 17/05/2017, à 14:39

Babdu89

Re : DD de pc déplacé en USB

On peut tester ceci aussi avant de réinstaller Grub avec  Boot-Repair

Depuis un Ubuntu qui fonctionne.

Ouvrir la partition /dev/sdb4 dans le navigateur de fichiers pour la monter.
Fermer la navigateur.

L'ouvrir en mode admin.

sudo nautilus

Dans la partition /dev/sdb4 naviguer dans /boot/grub 
Faire une copie de sauvegarde dans le répertoire courant du fichier  grub.cfg . (copier/coller)  Çà permet de revenir en arrière si la manip de test ne marche pas.
Remplacer le contenu de grub.cfg original par ce qui suit ci-dessous.

#
# 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="3"
fi

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

export menuentry_id_option

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

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

if [ x$feature_default_font_path = xy ] ; then
   font=unicode
else
insmod part_msdos
insmod ext2
set root='hd1,msdos4'
if [ x$feature_platform_search_hint = xy ]; then
  search --no-floppy --fs-uuid --set=root --hint-bios=hd1,msdos4 --hint-efi=hd1,msdos4 --hint-baremetal=ahci1,msdos4  05105719-2200-4440-8c85-0ee0fed385ca
else
  search --no-floppy --fs-uuid --set=root 05105719-2200-4440-8c85-0ee0fed385ca
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=en_AG
  insmod gettext
fi
terminal_output gfxterm
if [ "${recordfail}" = 1 ] ; then
  set timeout=30
else
  if [ x$feature_timeout_style = xy ] ; then
    set timeout_style=hidden
    set timeout=0
  # Fallback hidden-timeout code in case the timeout_style feature is
  # unavailable.
  elif sleep --interruptible 0 ; then
    set timeout=0
  fi
fi
### END /etc/grub.d/00_header ###

### BEGIN /etc/grub.d/05_debian_theme ###
set menu_color_normal=white/black
set menu_color_highlight=black/light-gray
### END /etc/grub.d/05_debian_theme ###

### BEGIN /etc/grub.d/10_linux ###
function gfxmode {
	set gfxpayload="${1}"
	if [ "${1}" = "keep" ]; then
		set vt_handoff=vt.handoff=7
	else
		set vt_handoff=
	fi
}
if [ "${recordfail}" != 1 ]; then
  if [ -e ${prefix}/gfxblacklist.txt ]; then
    if hwmatch ${prefix}/gfxblacklist.txt 3; then
      if [ ${match} = 0 ]; then
        set linux_gfx_mode=keep
      else
        set linux_gfx_mode=text
      fi
    else
      set linux_gfx_mode=text
    fi
  else
    set linux_gfx_mode=keep
  fi
else
  set linux_gfx_mode=text
fi
export linux_gfx_mode
menuentry 'Ubuntu' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-simple-05105719-2200-4440-8c85-0ee0fed385ca' {
	recordfail
	load_video
	gfxmode $linux_gfx_mode
	insmod gzio
	if [ x$grub_platform = xxen ]; then insmod xzio; insmod lzopio; fi
	insmod part_msdos
	insmod ext2
	set root='hd1,msdos4'
	if [ x$feature_platform_search_hint = xy ]; then
	  search --no-floppy --fs-uuid --set=root --hint-bios=hd1,msdos4 --hint-efi=hd1,msdos4 --hint-baremetal=ahci1,msdos4  05105719-2200-4440-8c85-0ee0fed385ca
	else
	  search --no-floppy --fs-uuid --set=root 05105719-2200-4440-8c85-0ee0fed385ca
	fi
	linux	/boot/vmlinuz-4.8.0-49-generic root=UUID=05105719-2200-4440-8c85-0ee0fed385ca ro  quiet splash $vt_handoff
	initrd	/boot/initrd.img-4.8.0-49-generic
}
submenu 'Advanced options for Ubuntu' $menuentry_id_option 'gnulinux-advanced-05105719-2200-4440-8c85-0ee0fed385ca' {
	menuentry 'Ubuntu, with Linux 4.8.0-49-generic' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-4.8.0-49-generic-advanced-05105719-2200-4440-8c85-0ee0fed385ca' {
		recordfail
		load_video
		gfxmode $linux_gfx_mode
		insmod gzio
		if [ x$grub_platform = xxen ]; then insmod xzio; insmod lzopio; fi
		insmod part_msdos
		insmod ext2
		set root='hd1,msdos4'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd1,msdos4 --hint-efi=hd1,msdos4 --hint-baremetal=ahci1,msdos4  05105719-2200-4440-8c85-0ee0fed385ca
		else
		  search --no-floppy --fs-uuid --set=root 05105719-2200-4440-8c85-0ee0fed385ca
		fi
		echo	'Loading Linux 4.8.0-49-generic ...'
		linux	/boot/vmlinuz-4.8.0-49-generic root=UUID=05105719-2200-4440-8c85-0ee0fed385ca ro  quiet splash $vt_handoff
		echo	'Loading initial ramdisk ...'
		initrd	/boot/initrd.img-4.8.0-49-generic
	}
	menuentry 'Ubuntu, with Linux 4.8.0-49-generic (recovery mode)' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-4.8.0-49-generic-recovery-05105719-2200-4440-8c85-0ee0fed385ca' {
		recordfail
		load_video
		insmod gzio
		if [ x$grub_platform = xxen ]; then insmod xzio; insmod lzopio; fi
		insmod part_msdos
		insmod ext2
		set root='hd1,msdos4'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd1,msdos4 --hint-efi=hd,msdos4 --hint-baremetal=ahci1,msdos4  05105719-2200-4440-8c85-0ee0fed385ca
		else
		  search --no-floppy --fs-uuid --set=root 05105719-2200-4440-8c85-0ee0fed385ca
		fi
		echo	'Loading Linux 4.8.0-49-generic ...'
		linux	/boot/vmlinuz-4.8.0-49-generic root=UUID=05105719-2200-4440-8c85-0ee0fed385ca ro recovery nomodeset 
		echo	'Loading initial ramdisk ...'
		initrd	/boot/initrd.img-4.8.0-49-generic
	}
	menuentry 'Ubuntu, with Linux 4.8.0-46-generic' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-4.8.0-46-generic-advanced-05105719-2200-4440-8c85-0ee0fed385ca' {
		recordfail
		load_video
		gfxmode $linux_gfx_mode
		insmod gzio
		if [ x$grub_platform = xxen ]; then insmod xzio; insmod lzopio; fi
		insmod part_msdos
		insmod ext2
		set root='hd,msdos4'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd1,msdos4 --hint-efi=hd1,msdos4 --hint-baremetal=ahci1,msdos4  05105719-2200-4440-8c85-0ee0fed385ca
		else
		  search --no-floppy --fs-uuid --set=root 05105719-2200-4440-8c85-0ee0fed385ca
		fi
		echo	'Loading Linux 4.8.0-46-generic ...'
		linux	/boot/vmlinuz-4.8.0-46-generic root=UUID=05105719-2200-4440-8c85-0ee0fed385ca ro  quiet splash $vt_handoff
		echo	'Loading initial ramdisk ...'
		initrd	/boot/initrd.img-4.8.0-46-generic
	}
	menuentry 'Ubuntu, with Linux 4.8.0-46-generic (recovery mode)' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-4.8.0-46-generic-recovery-05105719-2200-4440-8c85-0ee0fed385ca' {
		recordfail
		load_video
		insmod gzio
		if [ x$grub_platform = xxen ]; then insmod xzio; insmod lzopio; fi
		insmod part_msdos
		insmod ext2
		set root='hd1,msdos4'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd1,msdos4 --hint-efi=hd1,msdos4 --hint-baremetal=ahci1,msdos4  05105719-2200-4440-8c85-0ee0fed385ca
		else
		  search --no-floppy --fs-uuid --set=root 05105719-2200-4440-8c85-0ee0fed385ca
		fi
		echo	'Loading Linux 4.8.0-46-generic ...'
		linux	/boot/vmlinuz-4.8.0-46-generic root=UUID=05105719-2200-4440-8c85-0ee0fed385ca ro recovery nomodeset 
		echo	'Loading initial ramdisk ...'
		initrd	/boot/initrd.img-4.8.0-46-generic
	}
	menuentry 'Ubuntu, with Linux 4.8.0-45-generic' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-4.8.0-45-generic-advanced-05105719-2200-4440-8c85-0ee0fed385ca' {
		recordfail
		load_video
		gfxmode $linux_gfx_mode
		insmod gzio
		if [ x$grub_platform = xxen ]; then insmod xzio; insmod lzopio; fi
		insmod part_msdos
		insmod ext2
		set root='hd1,msdos4'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd1,msdos4 --hint-efi=hd1,msdos4 --hint-baremetal=ahci1,msdos4  05105719-2200-4440-8c85-0ee0fed385ca
		else
		  search --no-floppy --fs-uuid --set=root 05105719-2200-4440-8c85-0ee0fed385ca
		fi
		echo	'Loading Linux 4.8.0-45-generic ...'
		linux	/boot/vmlinuz-4.8.0-45-generic root=UUID=05105719-2200-4440-8c85-0ee0fed385ca ro  quiet splash $vt_handoff
		echo	'Loading initial ramdisk ...'
		initrd	/boot/initrd.img-4.8.0-45-generic
	}
	menuentry 'Ubuntu, with Linux 4.8.0-45-generic (recovery mode)' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-4.8.0-45-generic-recovery-05105719-2200-4440-8c85-0ee0fed385ca' {
		recordfail
		load_video
		insmod gzio
		if [ x$grub_platform = xxen ]; then insmod xzio; insmod lzopio; fi
		insmod part_msdos
		insmod ext2
		set root='hd1,msdos4'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd1,msdos4 --hint-efi=hd1,msdos4 --hint-baremetal=ahci1,msdos4  05105719-2200-4440-8c85-0ee0fed385ca
		else
		  search --no-floppy --fs-uuid --set=root 05105719-2200-4440-8c85-0ee0fed385ca
		fi
		echo	'Loading Linux 4.8.0-45-generic ...'
		linux	/boot/vmlinuz-4.8.0-45-generic root=UUID=05105719-2200-4440-8c85-0ee0fed385ca ro recovery nomodeset 
		echo	'Loading initial ramdisk ...'
		initrd	/boot/initrd.img-4.8.0-45-generic
	}
	menuentry 'Ubuntu, with Linux 4.8.0-22-generic' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-4.8.0-22-generic-advanced-05105719-2200-4440-8c85-0ee0fed385ca' {
		recordfail
		load_video
		gfxmode $linux_gfx_mode
		insmod gzio
		if [ x$grub_platform = xxen ]; then insmod xzio; insmod lzopio; fi
		insmod part_msdos
		insmod ext2
		set root='hd1,msdos4'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd1,msdos4 --hint-efi=hd1,msdos4 --hint-baremetal=ahci1,msdos4  05105719-2200-4440-8c85-0ee0fed385ca
		else
		  search --no-floppy --fs-uuid --set=root 05105719-2200-4440-8c85-0ee0fed385ca
		fi
		echo	'Loading Linux 4.8.0-22-generic ...'
		linux	/boot/vmlinuz-4.8.0-22-generic root=UUID=05105719-2200-4440-8c85-0ee0fed385ca ro  quiet splash $vt_handoff
		echo	'Loading initial ramdisk ...'
		initrd	/boot/initrd.img-4.8.0-22-generic
	}
	menuentry 'Ubuntu, with Linux 4.8.0-22-generic (recovery mode)' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-4.8.0-22-generic-recovery-05105719-2200-4440-8c85-0ee0fed385ca' {
		recordfail
		load_video
		insmod gzio
		if [ x$grub_platform = xxen ]; then insmod xzio; insmod lzopio; fi
		insmod part_msdos
		insmod ext2
		set root='hd1,msdos4'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd1,msdos4 --hint-efi=hd1,msdos4 --hint-baremetal=ahci1,msdos4  05105719-2200-4440-8c85-0ee0fed385ca
		else
		  search --no-floppy --fs-uuid --set=root 05105719-2200-4440-8c85-0ee0fed385ca
		fi
		echo	'Loading Linux 4.8.0-22-generic ...'
		linux	/boot/vmlinuz-4.8.0-22-generic root=UUID=05105719-2200-4440-8c85-0ee0fed385ca ro recovery nomodeset 
		echo	'Loading initial ramdisk ...'
		initrd	/boot/initrd.img-4.8.0-22-generic
	}
}

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

J'ai changé tous les hd0  en hd1...   çà aussi ;  hint-baremetal=ahci0,msdos4    en   hint-baremetal=ahci1,msdos4

Démarrer la machine sur le disque externe, depuis le menu grub tenter de lancer l'os en /dev/sdb4 .

Dire ce qu'il se passe.

Si çà démarre , la réinstallation de Grub avec Boot-Repair en live fonctionnera, si çà ne démarre pas, il faudra chercher une autre piste.

@+.   Babdu89  .

Dernière modification par Babdu89 (Le 17/05/2017, à 14:39)


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

Hors ligne

#27 Le 18/05/2017, à 10:12

pliadule

Re : DD de pc déplacé en USB

Salut,
@babdu89

Merci de tes propositions,
#26 et #25 testé sans résultat pour sdb4 qui reste sur la même erreur.

Remarque en passant:
au moment du post #1 au démarrage et à la fermeture  sur sdb1 ou sda2 je recevais le message d'erreur:

fsck exit .. metadata_csum... automount point unsupported

sur les conseils du forum j'ai modifié les fichiers fstab ..
le message d'erreur fsck a alors disparu au démarrage de sdb1 et sda2 neutral
Pour réapparaitre maintenant au démarrage de sdb1après la séquence boot-repair sur sdb

Hors ligne

#28 Le 18/05/2017, à 17:16

Babdu89

Re : DD de pc déplacé en USB

Bonjour.

#26 et #25 testé sans résultat pour sdb4 qui reste sur la même erreur.

Pour réapparaitre maintenant au démarrage de sdb1après la séquence boot-repair sur sdb

Tu a utilisé Boot-Repair, comme indiqué post#25?
Il n'a pas généré d'URL du boot-info de la réparation?
Çà permettrait de voir ce qu'il a fait.

Une copie du boot info existe.
On peut trouver çà dans les log de Boot-Repair. Dans tous les Os Linux de la config, on trouve les log dans /var/log/boot-sav .
En déroulant le contenu de boot-sav. au dernier dossier  "/date-heure-boot-repairxx" il y a un fichier "RESULTS.txt" . c'est le contenu du boot info de la réparation faite avec Boot-Repair.

Stp, veux tu bien en poster le contenu?  Que l'on voit ce qu'il a fait?

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

#29 Le 18/05/2017, à 19:19

pliadule

Re : DD de pc déplacé en USB

enjoy smile

RESULT.txt

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


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

 => Grub2 (v2.00) is installed in the MBR of /dev/sda and looks at sector 1 of 
    the same hard drive for core.img. core.img is at this location and looks 
    for (,msdos2)/boot/grub. It also embeds following components:
    
    modules
    ---------------------------------------------------------------------------
    fshelp ext2 part_msdos biosdisk
    ---------------------------------------------------------------------------
 => Grub2 (v2.00) is installed in the MBR of /dev/sdb and looks at sector 1 of 
    the same hard drive for core.img. core.img is at this location and looks 
    for /boot/grub. It also embeds following components:
    
    modules
    ---------------------------------------------------------------------------
    fshelp ext2 part_msdos scsi ata pci pata search_fs_uuid
    ---------------------------------------------------------------------------
    
    config script
    ---------------------------------------------------------------------------
    search.fs_uuid 8b663c7f-fd77-4e3a-96c3-40bbb35457c0 root ahci1,msdos1 
    set prefix=($root)'/boot/grub'
    
    ---------------------------------------------------------------------------

sda1: __________________________________________________________________________

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

sda2: __________________________________________________________________________

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

sda3: __________________________________________________________________________

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

sda4: __________________________________________________________________________

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

sdb1: __________________________________________________________________________

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

sdb2: __________________________________________________________________________

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

sdb3: __________________________________________________________________________

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

sdb4: __________________________________________________________________________

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

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

Drive: sda _____________________________________________________________________
Disk /dev/sda: 149.1 GiB, 160041885696 bytes, 312581808 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   171,235,327   171,233,280  83 Linux
/dev/sda2    *    171,235,328   243,857,407    72,622,080  83 Linux
/dev/sda3         243,857,408   247,953,407     4,096,000  82 Linux swap / Solaris
/dev/sda4         247,953,408   312,580,095    64,626,688  83 Linux


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

Partition  Boot  Start Sector    End Sector  # of Sectors  Id System

/dev/sdb1               2,048   169,871,359   169,869,312  83 Linux
/dev/sdb2         169,871,360   174,065,663     4,194,304  82 Linux swap / Solaris
/dev/sdb3         174,065,664   422,387,711   248,322,048  83 Linux
/dev/sdb4    *    422,387,712   488,396,799    66,009,088  83 Linux


"blkid" output: ________________________________________________________________

Device           UUID                                   TYPE       LABEL

/dev/loop0       2017-04-12-03-29-44-00                 iso9660    Lubuntu 17.04 i386
/dev/loop1                                              squashfs   
/dev/sda1        51cf1251-dcd8-458f-839a-77a38dcc06d0   ext4       
/dev/sda2        6d2085bf-20ba-4296-866c-87c9a9e64da3   ext4       
/dev/sda3        fcb583b3-2011-4aba-8923-a435046220cc   swap       
/dev/sda4        c1e912a2-487e-42ab-8b1d-68d4b80c7748   ext4       
/dev/sdb1        8b663c7f-fd77-4e3a-96c3-40bbb35457c0   ext4       
/dev/sdb2        0d113278-d43f-44b4-84cf-6757a4f8ba99   swap       
/dev/sdb3        8db709c6-9cbc-4161-8d6f-3882e89dd322   ext4       161
/dev/sdb4        05105719-2200-4440-8c85-0ee0fed385ca   ext4       
/dev/zram0       35959309-f84a-44b8-81a6-512b0e96a4c8   swap       
/dev/zram1       215ecfc9-e3ab-44d2-bfcd-6b28412829b2   swap       

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

total 0
lrwxrwxrwx 1 root root  9 May 18 08:33 ata-ST9160310AS_5SV69DNM -> ../../sda
lrwxrwxrwx 1 root root 10 May 18 08:33 ata-ST9160310AS_5SV69DNM-part1 -> ../../sda1
lrwxrwxrwx 1 root root 10 May 18 08:33 ata-ST9160310AS_5SV69DNM-part2 -> ../../sda2
lrwxrwxrwx 1 root root 10 May 18 08:33 ata-ST9160310AS_5SV69DNM-part3 -> ../../sda3
lrwxrwxrwx 1 root root 10 May 18 08:33 ata-ST9160310AS_5SV69DNM-part4 -> ../../sda4
lrwxrwxrwx 1 root root  9 May 18 08:48 usb-ATA_WDC_WD2500BEVT-2_0123456789ABCDE-0:0 -> ../../sdb
lrwxrwxrwx 1 root root 10 May 18 08:48 usb-ATA_WDC_WD2500BEVT-2_0123456789ABCDE-0:0-part1 -> ../../sdb1
lrwxrwxrwx 1 root root 10 May 18 08:48 usb-ATA_WDC_WD2500BEVT-2_0123456789ABCDE-0:0-part2 -> ../../sdb2
lrwxrwxrwx 1 root root 10 May 18 08:48 usb-ATA_WDC_WD2500BEVT-2_0123456789ABCDE-0:0-part3 -> ../../sdb3
lrwxrwxrwx 1 root root 10 May 18 08:48 usb-ATA_WDC_WD2500BEVT-2_0123456789ABCDE-0:0-part4 -> ../../sdb4
lrwxrwxrwx 1 root root  9 May 18 08:49 usb-Generic-_Multi-Card_20071114173400000-0:0 -> ../../sdc
lrwxrwxrwx 1 root root  9 May 18 08:33 wwn-0x5000c500160383e7 -> ../../sda
lrwxrwxrwx 1 root root 10 May 18 08:33 wwn-0x5000c500160383e7-part1 -> ../../sda1
lrwxrwxrwx 1 root root 10 May 18 08:33 wwn-0x5000c500160383e7-part2 -> ../../sda2
lrwxrwxrwx 1 root root 10 May 18 08:33 wwn-0x5000c500160383e7-part3 -> ../../sda3
lrwxrwxrwx 1 root root 10 May 18 08:33 wwn-0x5000c500160383e7-part4 -> ../../sda4

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

Device           Mount_Point              Type       Options

/dev/loop0       /cdrom                   iso9660    (ro,noatime)
/dev/loop1       /rofs                    squashfs   (ro,noatime)
/dev/sda2        /isodevice               ext4       (rw,relatime,data=ordered)
/dev/sdb1        /media/lubuntu/8b663c7f-fd77-4e3a-96c3-40bbb35457c0 ext4       (rw,nosuid,nodev,relatime,data=ordered,uhelper=udisks2)
/dev/sdb3        /media/lubuntu/161       ext4       (rw,nosuid,nodev,relatime,data=ordered,uhelper=udisks2)


=========================== 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="0"
fi

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

export menuentry_id_option

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

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

if [ x$feature_default_font_path = xy ] ; then
   font=unicode
else
insmod part_msdos
insmod ext2
set root='hd0,msdos2'
if [ x$feature_platform_search_hint = xy ]; then
  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos2 --hint-efi=hd0,msdos2 --hint-baremetal=ahci0,msdos2  6d2085bf-20ba-4296-866c-87c9a9e64da3
else
  search --no-floppy --fs-uuid --set=root 6d2085bf-20ba-4296-866c-87c9a9e64da3
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=en_US
  insmod gettext
fi
terminal_output gfxterm
if [ "${recordfail}" = 1 ] ; then
  set timeout=10
else
  if [ x$feature_timeout_style = xy ] ; then
    set timeout_style=menu
    set timeout=10
  # Fallback normal timeout code in case the timeout_style feature is
  # unavailable.
  else
    set timeout=10
  fi
fi
### END /etc/grub.d/00_header ###

### BEGIN /etc/grub.d/05_debian_theme ###
set menu_color_normal=white/black
set menu_color_highlight=black/light-gray
### END /etc/grub.d/05_debian_theme ###

### BEGIN /etc/grub.d/10_linux ###
function gfxmode {
	set gfxpayload="${1}"
	if [ "${1}" = "keep" ]; then
		set vt_handoff=vt.handoff=7
	else
		set vt_handoff=
	fi
}
if [ "${recordfail}" != 1 ]; then
  if [ -e ${prefix}/gfxblacklist.txt ]; then
    if hwmatch ${prefix}/gfxblacklist.txt 3; then
      if [ ${match} = 0 ]; then
        set linux_gfx_mode=keep
      else
        set linux_gfx_mode=text
      fi
    else
      set linux_gfx_mode=text
    fi
  else
    set linux_gfx_mode=keep
  fi
else
  set linux_gfx_mode=text
fi
export linux_gfx_mode
menuentry 'Ubuntu' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-simple-6d2085bf-20ba-4296-866c-87c9a9e64da3' {
	recordfail
	load_video
	gfxmode $linux_gfx_mode
	insmod gzio
	if [ x$grub_platform = xxen ]; then insmod xzio; insmod lzopio; fi
	insmod part_msdos
	insmod ext2
	set root='hd0,msdos2'
	if [ x$feature_platform_search_hint = xy ]; then
	  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos2 --hint-efi=hd0,msdos2 --hint-baremetal=ahci0,msdos2  6d2085bf-20ba-4296-866c-87c9a9e64da3
	else
	  search --no-floppy --fs-uuid --set=root 6d2085bf-20ba-4296-866c-87c9a9e64da3
	fi
        linux	/boot/vmlinuz-4.8.0-52-generic root=UUID=6d2085bf-20ba-4296-866c-87c9a9e64da3 ro  quiet splash $vt_handoff
	initrd	/boot/initrd.img-4.8.0-52-generic
}
submenu 'Advanced options for Ubuntu' $menuentry_id_option 'gnulinux-advanced-6d2085bf-20ba-4296-866c-87c9a9e64da3' {
	menuentry 'Ubuntu, with Linux 4.8.0-52-generic' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-4.8.0-52-generic-advanced-6d2085bf-20ba-4296-866c-87c9a9e64da3' {
		recordfail
		load_video
		gfxmode $linux_gfx_mode
		insmod gzio
		if [ x$grub_platform = xxen ]; then insmod xzio; insmod lzopio; fi
		insmod part_msdos
		insmod ext2
		set root='hd0,msdos2'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos2 --hint-efi=hd0,msdos2 --hint-baremetal=ahci0,msdos2  6d2085bf-20ba-4296-866c-87c9a9e64da3
		else
		  search --no-floppy --fs-uuid --set=root 6d2085bf-20ba-4296-866c-87c9a9e64da3
		fi
		echo	'Loading Linux 4.8.0-52-generic ...'
	        linux	/boot/vmlinuz-4.8.0-52-generic root=UUID=6d2085bf-20ba-4296-866c-87c9a9e64da3 ro  quiet splash $vt_handoff
		echo	'Loading initial ramdisk ...'
		initrd	/boot/initrd.img-4.8.0-52-generic
	}
	menuentry 'Ubuntu, with Linux 4.8.0-52-generic (upstart)' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-4.8.0-52-generic-init-upstart-6d2085bf-20ba-4296-866c-87c9a9e64da3' {
		recordfail
		load_video
		gfxmode $linux_gfx_mode
		insmod gzio
		if [ x$grub_platform = xxen ]; then insmod xzio; insmod lzopio; fi
		insmod part_msdos
		insmod ext2
		set root='hd0,msdos2'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos2 --hint-efi=hd0,msdos2 --hint-baremetal=ahci0,msdos2  6d2085bf-20ba-4296-866c-87c9a9e64da3
		else
		  search --no-floppy --fs-uuid --set=root 6d2085bf-20ba-4296-866c-87c9a9e64da3
		fi
		echo	'Loading Linux 4.8.0-52-generic ...'
	        linux	/boot/vmlinuz-4.8.0-52-generic root=UUID=6d2085bf-20ba-4296-866c-87c9a9e64da3 ro  quiet splash $vt_handoff init=/sbin/upstart
		echo	'Loading initial ramdisk ...'
		initrd	/boot/initrd.img-4.8.0-52-generic
	}
	menuentry 'Ubuntu, with Linux 4.8.0-52-generic (recovery mode)' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-4.8.0-52-generic-recovery-6d2085bf-20ba-4296-866c-87c9a9e64da3' {
		recordfail
		load_video
		insmod gzio
		if [ x$grub_platform = xxen ]; then insmod xzio; insmod lzopio; fi
		insmod part_msdos
		insmod ext2
		set root='hd0,msdos2'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos2 --hint-efi=hd0,msdos2 --hint-baremetal=ahci0,msdos2  6d2085bf-20ba-4296-866c-87c9a9e64da3
		else
		  search --no-floppy --fs-uuid --set=root 6d2085bf-20ba-4296-866c-87c9a9e64da3
		fi
		echo	'Loading Linux 4.8.0-52-generic ...'
	        linux	/boot/vmlinuz-4.8.0-52-generic root=UUID=6d2085bf-20ba-4296-866c-87c9a9e64da3 ro recovery nomodeset 
		echo	'Loading initial ramdisk ...'
		initrd	/boot/initrd.img-4.8.0-52-generic
	}
	menuentry 'Ubuntu, with Linux 4.8.0-51-generic' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-4.8.0-51-generic-advanced-6d2085bf-20ba-4296-866c-87c9a9e64da3' {
		recordfail
		load_video
		gfxmode $linux_gfx_mode
		insmod gzio
		if [ x$grub_platform = xxen ]; then insmod xzio; insmod lzopio; fi
		insmod part_msdos
		insmod ext2
		set root='hd0,msdos2'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos2 --hint-efi=hd0,msdos2 --hint-baremetal=ahci0,msdos2  6d2085bf-20ba-4296-866c-87c9a9e64da3
		else
		  search --no-floppy --fs-uuid --set=root 6d2085bf-20ba-4296-866c-87c9a9e64da3
		fi
		echo	'Loading Linux 4.8.0-51-generic ...'
	        linux	/boot/vmlinuz-4.8.0-51-generic root=UUID=6d2085bf-20ba-4296-866c-87c9a9e64da3 ro  quiet splash $vt_handoff
		echo	'Loading initial ramdisk ...'
		initrd	/boot/initrd.img-4.8.0-51-generic
	}
	menuentry 'Ubuntu, with Linux 4.8.0-51-generic (upstart)' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-4.8.0-51-generic-init-upstart-6d2085bf-20ba-4296-866c-87c9a9e64da3' {
		recordfail
		load_video
		gfxmode $linux_gfx_mode
		insmod gzio
		if [ x$grub_platform = xxen ]; then insmod xzio; insmod lzopio; fi
		insmod part_msdos
		insmod ext2
		set root='hd0,msdos2'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos2 --hint-efi=hd0,msdos2 --hint-baremetal=ahci0,msdos2  6d2085bf-20ba-4296-866c-87c9a9e64da3
		else
		  search --no-floppy --fs-uuid --set=root 6d2085bf-20ba-4296-866c-87c9a9e64da3
		fi
		echo	'Loading Linux 4.8.0-51-generic ...'
	        linux	/boot/vmlinuz-4.8.0-51-generic root=UUID=6d2085bf-20ba-4296-866c-87c9a9e64da3 ro  quiet splash $vt_handoff init=/sbin/upstart
		echo	'Loading initial ramdisk ...'
		initrd	/boot/initrd.img-4.8.0-51-generic
	}
	menuentry 'Ubuntu, with Linux 4.8.0-51-generic (recovery mode)' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-4.8.0-51-generic-recovery-6d2085bf-20ba-4296-866c-87c9a9e64da3' {
		recordfail
		load_video
		insmod gzio
		if [ x$grub_platform = xxen ]; then insmod xzio; insmod lzopio; fi
		insmod part_msdos
		insmod ext2
		set root='hd0,msdos2'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos2 --hint-efi=hd0,msdos2 --hint-baremetal=ahci0,msdos2  6d2085bf-20ba-4296-866c-87c9a9e64da3
		else
		  search --no-floppy --fs-uuid --set=root 6d2085bf-20ba-4296-866c-87c9a9e64da3
		fi
		echo	'Loading Linux 4.8.0-51-generic ...'
	        linux	/boot/vmlinuz-4.8.0-51-generic root=UUID=6d2085bf-20ba-4296-866c-87c9a9e64da3 ro recovery nomodeset 
		echo	'Loading initial ramdisk ...'
		initrd	/boot/initrd.img-4.8.0-51-generic
	}
	menuentry 'Ubuntu, with Linux 4.8.0-49-generic' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-4.8.0-49-generic-advanced-6d2085bf-20ba-4296-866c-87c9a9e64da3' {
		recordfail
		load_video
		gfxmode $linux_gfx_mode
		insmod gzio
		if [ x$grub_platform = xxen ]; then insmod xzio; insmod lzopio; fi
		insmod part_msdos
		insmod ext2
		set root='hd0,msdos2'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos2 --hint-efi=hd0,msdos2 --hint-baremetal=ahci0,msdos2  6d2085bf-20ba-4296-866c-87c9a9e64da3
		else
		  search --no-floppy --fs-uuid --set=root 6d2085bf-20ba-4296-866c-87c9a9e64da3
		fi
		echo	'Loading Linux 4.8.0-49-generic ...'
	        linux	/boot/vmlinuz-4.8.0-49-generic root=UUID=6d2085bf-20ba-4296-866c-87c9a9e64da3 ro  quiet splash $vt_handoff
		echo	'Loading initial ramdisk ...'
		initrd	/boot/initrd.img-4.8.0-49-generic
	}
	menuentry 'Ubuntu, with Linux 4.8.0-49-generic (upstart)' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-4.8.0-49-generic-init-upstart-6d2085bf-20ba-4296-866c-87c9a9e64da3' {
		recordfail
		load_video
		gfxmode $linux_gfx_mode
		insmod gzio
		if [ x$grub_platform = xxen ]; then insmod xzio; insmod lzopio; fi
		insmod part_msdos
		insmod ext2
		set root='hd0,msdos2'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos2 --hint-efi=hd0,msdos2 --hint-baremetal=ahci0,msdos2  6d2085bf-20ba-4296-866c-87c9a9e64da3
		else
		  search --no-floppy --fs-uuid --set=root 6d2085bf-20ba-4296-866c-87c9a9e64da3
		fi
		echo	'Loading Linux 4.8.0-49-generic ...'
	        linux	/boot/vmlinuz-4.8.0-49-generic root=UUID=6d2085bf-20ba-4296-866c-87c9a9e64da3 ro  quiet splash $vt_handoff init=/sbin/upstart
		echo	'Loading initial ramdisk ...'
		initrd	/boot/initrd.img-4.8.0-49-generic
	}
	menuentry 'Ubuntu, with Linux 4.8.0-49-generic (recovery mode)' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-4.8.0-49-generic-recovery-6d2085bf-20ba-4296-866c-87c9a9e64da3' {
		recordfail
		load_video
		insmod gzio
		if [ x$grub_platform = xxen ]; then insmod xzio; insmod lzopio; fi
		insmod part_msdos
		insmod ext2
		set root='hd0,msdos2'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos2 --hint-efi=hd0,msdos2 --hint-baremetal=ahci0,msdos2  6d2085bf-20ba-4296-866c-87c9a9e64da3
		else
		  search --no-floppy --fs-uuid --set=root 6d2085bf-20ba-4296-866c-87c9a9e64da3
		fi
		echo	'Loading Linux 4.8.0-49-generic ...'
	        linux	/boot/vmlinuz-4.8.0-49-generic root=UUID=6d2085bf-20ba-4296-866c-87c9a9e64da3 ro recovery nomodeset 
		echo	'Loading initial ramdisk ...'
		initrd	/boot/initrd.img-4.8.0-49-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  6d2085bf-20ba-4296-866c-87c9a9e64da3
	else
	  search --no-floppy --fs-uuid --set=root 6d2085bf-20ba-4296-866c-87c9a9e64da3
	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  6d2085bf-20ba-4296-866c-87c9a9e64da3
	else
	  search --no-floppy --fs-uuid --set=root 6d2085bf-20ba-4296-866c-87c9a9e64da3
	fi
	linux16	/boot/memtest86+.bin console=ttyS0,115200n8
}
### END /etc/grub.d/20_memtest86+ ###

### BEGIN /etc/grub.d/30_os-prober ###
menuentry 'Ubuntu 16.10 (16.10) (on /dev/sdb1)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-simple-8b663c7f-fd77-4e3a-96c3-40bbb35457c0' {
	insmod part_msdos
	insmod ext2
	set root='hd1,msdos1'
	if [ x$feature_platform_search_hint = xy ]; then
	  search --no-floppy --fs-uuid --set=root --hint-bios=hd1,msdos1 --hint-efi=hd1,msdos1 --hint-baremetal=ahci1,msdos1  8b663c7f-fd77-4e3a-96c3-40bbb35457c0
	else
	  search --no-floppy --fs-uuid --set=root 8b663c7f-fd77-4e3a-96c3-40bbb35457c0
	fi
	linux /boot/vmlinuz-4.4.0-59-generic root=UUID=8b663c7f-fd77-4e3a-96c3-40bbb35457c0 ro quiet splash $vt_handoff
	initrd /boot/initrd.img-4.4.0-59-generic
}
submenu 'Advanced options for Ubuntu 16.10 (16.10) (on /dev/sdb1)' $menuentry_id_option 'osprober-gnulinux-advanced-8b663c7f-fd77-4e3a-96c3-40bbb35457c0' {
	menuentry 'Ubuntu (on /dev/sdb1)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-4.4.0-59-generic--8b663c7f-fd77-4e3a-96c3-40bbb35457c0' {
		insmod part_msdos
		insmod ext2
		set root='hd1,msdos1'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd1,msdos1 --hint-efi=hd1,msdos1 --hint-baremetal=ahci1,msdos1  8b663c7f-fd77-4e3a-96c3-40bbb35457c0
		else
		  search --no-floppy --fs-uuid --set=root 8b663c7f-fd77-4e3a-96c3-40bbb35457c0
		fi
		linux /boot/vmlinuz-4.4.0-59-generic root=UUID=8b663c7f-fd77-4e3a-96c3-40bbb35457c0 ro quiet splash $vt_handoff
		initrd /boot/initrd.img-4.4.0-59-generic
	}
	menuentry 'Ubuntu, with Linux 4.4.0-59-generic (on /dev/sdb1)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-4.4.0-59-generic--8b663c7f-fd77-4e3a-96c3-40bbb35457c0' {
		insmod part_msdos
		insmod ext2
		set root='hd1,msdos1'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd1,msdos1 --hint-efi=hd1,msdos1 --hint-baremetal=ahci1,msdos1  8b663c7f-fd77-4e3a-96c3-40bbb35457c0
		else
		  search --no-floppy --fs-uuid --set=root 8b663c7f-fd77-4e3a-96c3-40bbb35457c0
		fi
		linux /boot/vmlinuz-4.4.0-59-generic root=UUID=8b663c7f-fd77-4e3a-96c3-40bbb35457c0 ro quiet splash $vt_handoff
		initrd /boot/initrd.img-4.4.0-59-generic
	}
	menuentry 'Ubuntu, with Linux 4.4.0-59-generic (recovery mode) (on /dev/sdb1)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-4.4.0-59-generic-root=UUID=8b663c7f-fd77-4e3a-96c3-40bbb35457c0 ro recovery nomodeset-8b663c7f-fd77-4e3a-96c3-40bbb35457c0' {
		insmod part_msdos
		insmod ext2
		set root='hd1,msdos1'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd1,msdos1 --hint-efi=hd1,msdos1 --hint-baremetal=ahci1,msdos1  8b663c7f-fd77-4e3a-96c3-40bbb35457c0
		else
		  search --no-floppy --fs-uuid --set=root 8b663c7f-fd77-4e3a-96c3-40bbb35457c0
		fi
		linux /boot/vmlinuz-4.4.0-59-generic root=UUID=8b663c7f-fd77-4e3a-96c3-40bbb35457c0 ro recovery nomodeset
		initrd /boot/initrd.img-4.4.0-59-generic
	}
	menuentry 'Ubuntu, with Linux 4.4.0-53-generic (on /dev/sdb1)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-4.4.0-53-generic--8b663c7f-fd77-4e3a-96c3-40bbb35457c0' {
		insmod part_msdos
		insmod ext2
		set root='hd1,msdos1'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd1,msdos1 --hint-efi=hd1,msdos1 --hint-baremetal=ahci1,msdos1  8b663c7f-fd77-4e3a-96c3-40bbb35457c0
		else
		  search --no-floppy --fs-uuid --set=root 8b663c7f-fd77-4e3a-96c3-40bbb35457c0
		fi
		linux /boot/vmlinuz-4.4.0-53-generic root=UUID=8b663c7f-fd77-4e3a-96c3-40bbb35457c0 ro quiet splash $vt_handoff
		initrd /boot/initrd.img-4.4.0-53-generic
	}
	menuentry 'Ubuntu, with Linux 4.4.0-53-generic (recovery mode) (on /dev/sdb1)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-4.4.0-53-generic-root=UUID=8b663c7f-fd77-4e3a-96c3-40bbb35457c0 ro recovery nomodeset-8b663c7f-fd77-4e3a-96c3-40bbb35457c0' {
		insmod part_msdos
		insmod ext2
		set root='hd1,msdos1'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd1,msdos1 --hint-efi=hd1,msdos1 --hint-baremetal=ahci1,msdos1  8b663c7f-fd77-4e3a-96c3-40bbb35457c0
		else
		  search --no-floppy --fs-uuid --set=root 8b663c7f-fd77-4e3a-96c3-40bbb35457c0
		fi
		linux /boot/vmlinuz-4.4.0-53-generic root=UUID=8b663c7f-fd77-4e3a-96c3-40bbb35457c0 ro recovery nomodeset
		initrd /boot/initrd.img-4.4.0-53-generic
	}
	menuentry 'Ubuntu, with Linux 4.4.0-52-generic (on /dev/sdb1)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-4.4.0-52-generic--8b663c7f-fd77-4e3a-96c3-40bbb35457c0' {
		insmod part_msdos
		insmod ext2
		set root='hd1,msdos1'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd1,msdos1 --hint-efi=hd1,msdos1 --hint-baremetal=ahci1,msdos1  8b663c7f-fd77-4e3a-96c3-40bbb35457c0
		else
		  search --no-floppy --fs-uuid --set=root 8b663c7f-fd77-4e3a-96c3-40bbb35457c0
		fi
		linux /boot/vmlinuz-4.4.0-52-generic root=UUID=8b663c7f-fd77-4e3a-96c3-40bbb35457c0 ro quiet splash $vt_handoff
		initrd /boot/initrd.img-4.4.0-52-generic
	}
	menuentry 'Ubuntu, with Linux 4.4.0-52-generic (recovery mode) (on /dev/sdb1)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-4.4.0-52-generic-root=UUID=8b663c7f-fd77-4e3a-96c3-40bbb35457c0 ro recovery nomodeset-8b663c7f-fd77-4e3a-96c3-40bbb35457c0' {
		insmod part_msdos
		insmod ext2
		set root='hd1,msdos1'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd1,msdos1 --hint-efi=hd1,msdos1 --hint-baremetal=ahci1,msdos1  8b663c7f-fd77-4e3a-96c3-40bbb35457c0
		else
		  search --no-floppy --fs-uuid --set=root 8b663c7f-fd77-4e3a-96c3-40bbb35457c0
		fi
		linux /boot/vmlinuz-4.4.0-52-generic root=UUID=8b663c7f-fd77-4e3a-96c3-40bbb35457c0 ro recovery nomodeset
		initrd /boot/initrd.img-4.4.0-52-generic
	}
	menuentry 'Ubuntu, with Linux 4.4.0-51-generic (on /dev/sdb1)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-4.4.0-51-generic--8b663c7f-fd77-4e3a-96c3-40bbb35457c0' {
		insmod part_msdos
		insmod ext2
		set root='hd1,msdos1'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd1,msdos1 --hint-efi=hd1,msdos1 --hint-baremetal=ahci1,msdos1  8b663c7f-fd77-4e3a-96c3-40bbb35457c0
		else
		  search --no-floppy --fs-uuid --set=root 8b663c7f-fd77-4e3a-96c3-40bbb35457c0
		fi
		linux /boot/vmlinuz-4.4.0-51-generic root=UUID=8b663c7f-fd77-4e3a-96c3-40bbb35457c0 ro quiet splash $vt_handoff
		initrd /boot/initrd.img-4.4.0-51-generic
	}
	menuentry 'Ubuntu, with Linux 4.4.0-51-generic (recovery mode) (on /dev/sdb1)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-4.4.0-51-generic-root=UUID=8b663c7f-fd77-4e3a-96c3-40bbb35457c0 ro recovery nomodeset-8b663c7f-fd77-4e3a-96c3-40bbb35457c0' {
		insmod part_msdos
		insmod ext2
		set root='hd1,msdos1'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd1,msdos1 --hint-efi=hd1,msdos1 --hint-baremetal=ahci1,msdos1  8b663c7f-fd77-4e3a-96c3-40bbb35457c0
		else
		  search --no-floppy --fs-uuid --set=root 8b663c7f-fd77-4e3a-96c3-40bbb35457c0
		fi
		linux /boot/vmlinuz-4.4.0-51-generic root=UUID=8b663c7f-fd77-4e3a-96c3-40bbb35457c0 ro recovery nomodeset
		initrd /boot/initrd.img-4.4.0-51-generic
	}
}

menuentry 'Ubuntu 16.10 (16.10) (on /dev/sdb4)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-simple-05105719-2200-4440-8c85-0ee0fed385ca' {
	insmod part_msdos
	insmod ext2
	set root='hd1,msdos4'
	if [ x$feature_platform_search_hint = xy ]; then
	  search --no-floppy --fs-uuid --set=root --hint-bios=hd1,msdos4 --hint-efi=hd1,msdos4 --hint-baremetal=ahci1,msdos4  05105719-2200-4440-8c85-0ee0fed385ca
	else
	  search --no-floppy --fs-uuid --set=root 05105719-2200-4440-8c85-0ee0fed385ca
	fi
	linux /boot/vmlinuz-4.8.0-49-generic root=UUID=05105719-2200-4440-8c85-0ee0fed385ca ro quiet splash $vt_handoff
	initrd /boot/initrd.img-4.8.0-49-generic
}
submenu 'Advanced options for Ubuntu 16.10 (16.10) (on /dev/sdb4)' $menuentry_id_option 'osprober-gnulinux-advanced-05105719-2200-4440-8c85-0ee0fed385ca' {
	menuentry 'Ubuntu (on /dev/sdb4)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-4.8.0-49-generic--05105719-2200-4440-8c85-0ee0fed385ca' {
		insmod part_msdos
		insmod ext2
		set root='hd1,msdos4'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd1,msdos4 --hint-efi=hd1,msdos4 --hint-baremetal=ahci1,msdos4  05105719-2200-4440-8c85-0ee0fed385ca
		else
		  search --no-floppy --fs-uuid --set=root 05105719-2200-4440-8c85-0ee0fed385ca
		fi
		linux /boot/vmlinuz-4.8.0-49-generic root=UUID=05105719-2200-4440-8c85-0ee0fed385ca ro quiet splash $vt_handoff
		initrd /boot/initrd.img-4.8.0-49-generic
	}
	menuentry 'Ubuntu, with Linux 4.8.0-49-generic (on /dev/sdb4)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-4.8.0-49-generic--05105719-2200-4440-8c85-0ee0fed385ca' {
		insmod part_msdos
		insmod ext2
		set root='hd1,msdos4'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd1,msdos4 --hint-efi=hd1,msdos4 --hint-baremetal=ahci1,msdos4  05105719-2200-4440-8c85-0ee0fed385ca
		else
		  search --no-floppy --fs-uuid --set=root 05105719-2200-4440-8c85-0ee0fed385ca
		fi
		linux /boot/vmlinuz-4.8.0-49-generic root=UUID=05105719-2200-4440-8c85-0ee0fed385ca ro quiet splash $vt_handoff
		initrd /boot/initrd.img-4.8.0-49-generic
	}
	menuentry 'Ubuntu, with Linux 4.8.0-49-generic (recovery mode) (on /dev/sdb4)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-4.8.0-49-generic-root=UUID=05105719-2200-4440-8c85-0ee0fed385ca ro recovery nomodeset-05105719-2200-4440-8c85-0ee0fed385ca' {
		insmod part_msdos
		insmod ext2
		set root='hd1,msdos4'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd1,msdos4 --hint-efi=hd1,msdos4 --hint-baremetal=ahci1,msdos4  05105719-2200-4440-8c85-0ee0fed385ca
		else
		  search --no-floppy --fs-uuid --set=root 05105719-2200-4440-8c85-0ee0fed385ca
		fi
		linux /boot/vmlinuz-4.8.0-49-generic root=UUID=05105719-2200-4440-8c85-0ee0fed385ca ro recovery nomodeset
		initrd /boot/initrd.img-4.8.0-49-generic
	}
	menuentry 'Ubuntu, with Linux 4.8.0-46-generic (on /dev/sdb4)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-4.8.0-46-generic--05105719-2200-4440-8c85-0ee0fed385ca' {
		insmod part_msdos
		insmod ext2
		set root='hd1,msdos4'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd1,msdos4 --hint-efi=hd1,msdos4 --hint-baremetal=ahci1,msdos4  05105719-2200-4440-8c85-0ee0fed385ca
		else
		  search --no-floppy --fs-uuid --set=root 05105719-2200-4440-8c85-0ee0fed385ca
		fi
		linux /boot/vmlinuz-4.8.0-46-generic root=UUID=05105719-2200-4440-8c85-0ee0fed385ca ro quiet splash $vt_handoff
		initrd /boot/initrd.img-4.8.0-46-generic
	}
	menuentry 'Ubuntu, with Linux 4.8.0-46-generic (recovery mode) (on /dev/sdb4)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-4.8.0-46-generic-root=UUID=05105719-2200-4440-8c85-0ee0fed385ca ro recovery nomodeset-05105719-2200-4440-8c85-0ee0fed385ca' {
		insmod part_msdos
		insmod ext2
		set root='hd1,msdos4'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd1,msdos4 --hint-efi=hd1,msdos4 --hint-baremetal=ahci1,msdos4  05105719-2200-4440-8c85-0ee0fed385ca
		else
		  search --no-floppy --fs-uuid --set=root 05105719-2200-4440-8c85-0ee0fed385ca
		fi
		linux /boot/vmlinuz-4.8.0-46-generic root=UUID=05105719-2200-4440-8c85-0ee0fed385ca ro recovery nomodeset
		initrd /boot/initrd.img-4.8.0-46-generic
	}
	menuentry 'Ubuntu, with Linux 4.8.0-45-generic (on /dev/sdb4)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-4.8.0-45-generic--05105719-2200-4440-8c85-0ee0fed385ca' {
		insmod part_msdos
		insmod ext2
		set root='hd1,msdos4'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd1,msdos4 --hint-efi=hd1,msdos4 --hint-baremetal=ahci1,msdos4  05105719-2200-4440-8c85-0ee0fed385ca
		else
		  search --no-floppy --fs-uuid --set=root 05105719-2200-4440-8c85-0ee0fed385ca
		fi
		linux /boot/vmlinuz-4.8.0-45-generic root=UUID=05105719-2200-4440-8c85-0ee0fed385ca ro quiet splash $vt_handoff
		initrd /boot/initrd.img-4.8.0-45-generic
	}
	menuentry 'Ubuntu, with Linux 4.8.0-45-generic (recovery mode) (on /dev/sdb4)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-4.8.0-45-generic-root=UUID=05105719-2200-4440-8c85-0ee0fed385ca ro recovery nomodeset-05105719-2200-4440-8c85-0ee0fed385ca' {
		insmod part_msdos
		insmod ext2
		set root='hd1,msdos4'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd1,msdos4 --hint-efi=hd1,msdos4 --hint-baremetal=ahci1,msdos4  05105719-2200-4440-8c85-0ee0fed385ca
		else
		  search --no-floppy --fs-uuid --set=root 05105719-2200-4440-8c85-0ee0fed385ca
		fi
		linux /boot/vmlinuz-4.8.0-45-generic root=UUID=05105719-2200-4440-8c85-0ee0fed385ca ro recovery nomodeset
		initrd /boot/initrd.img-4.8.0-45-generic
	}
	menuentry 'Ubuntu, with Linux 4.8.0-22-generic (on /dev/sdb4)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-4.8.0-22-generic--05105719-2200-4440-8c85-0ee0fed385ca' {
		insmod part_msdos
		insmod ext2
		set root='hd1,msdos4'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd1,msdos4 --hint-efi=hd1,msdos4 --hint-baremetal=ahci1,msdos4  05105719-2200-4440-8c85-0ee0fed385ca
		else
		  search --no-floppy --fs-uuid --set=root 05105719-2200-4440-8c85-0ee0fed385ca
		fi
		linux /boot/vmlinuz-4.8.0-22-generic root=UUID=05105719-2200-4440-8c85-0ee0fed385ca ro quiet splash $vt_handoff
		initrd /boot/initrd.img-4.8.0-22-generic
	}
	menuentry 'Ubuntu, with Linux 4.8.0-22-generic (recovery mode) (on /dev/sdb4)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-4.8.0-22-generic-root=UUID=05105719-2200-4440-8c85-0ee0fed385ca ro recovery nomodeset-05105719-2200-4440-8c85-0ee0fed385ca' {
		insmod part_msdos
		insmod ext2
		set root='hd1,msdos4'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd1,msdos4 --hint-efi=hd1,msdos4 --hint-baremetal=ahci1,msdos4  05105719-2200-4440-8c85-0ee0fed385ca
		else
		  search --no-floppy --fs-uuid --set=root 05105719-2200-4440-8c85-0ee0fed385ca
		fi
		linux /boot/vmlinuz-4.8.0-22-generic root=UUID=05105719-2200-4440-8c85-0ee0fed385ca ro recovery nomodeset
		initrd /boot/initrd.img-4.8.0-22-generic
	}
}

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

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

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

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

### BEGIN /etc/grub.d/42_grml ###
menuentry "Grml Rescue System (lubuntu-17.04-desktop-i386.iso)" {
        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  6d2085bf-20ba-4296-866c-87c9a9e64da3
        else
          search --no-floppy --fs-uuid --set=root 6d2085bf-20ba-4296-866c-87c9a9e64da3
        fi
        iso_path="/boot/grml/lubuntu-17.04-desktop-i386.iso"
        export iso_path
        kernelopts="   "
        export kernelopts
        loopback loop "/boot/grml/lubuntu-17.04-desktop-i386.iso"
        set root=(loop)
        configfile /boot/grub/loopback.cfg
}
menuentry "Grml Rescue System (xubuntu-17.04-desktop-i386.iso)" {
        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  6d2085bf-20ba-4296-866c-87c9a9e64da3
        else
          search --no-floppy --fs-uuid --set=root 6d2085bf-20ba-4296-866c-87c9a9e64da3
        fi
        iso_path="/boot/grml/xubuntu-17.04-desktop-i386.iso"
        export iso_path
        kernelopts="   "
        export kernelopts
        loopback loop "/boot/grml/xubuntu-17.04-desktop-i386.iso"
        set root=(loop)
        configfile /boot/grub/loopback.cfg
}
### END /etc/grub.d/42_grml ###
--------------------------------------------------------------------------------

=============================== 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=6d2085bf-20ba-4296-866c-87c9a9e64da3 /             ext4    errors=remount-ro 0       1
# /home
UUID=c1e912a2-487e-42ab-8b1d-68d4b80c7748 /home         ext4    defaults        0       2
# SWAP
UUID=fcb583b3-2011-4aba-8923-a435046220cc none          swap    sw        0       0
--------------------------------------------------------------------------------

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

           GiB - GB             File                                 Fragment(s)

  87.780330658 = 94.253412352   boot/grub/grub.cfg                             1
  88.443641663 = 94.965637120   boot/vmlinuz-4.8.0-49-generic                  1
 115.407894135 = 123.918282752  boot/vmlinuz-4.8.0-51-generic                  1
  83.723209381 = 89.897111552   boot/vmlinuz-4.8.0-52-generic                  1
  83.723209381 = 89.897111552   vmlinuz                                        1
 115.407894135 = 123.918282752  vmlinuz.old                                    1
 115.328670502 = 123.833217024  boot/initrd.img-4.8.0-49-generic               3
 115.555233002 = 124.076486656  boot/initrd.img-4.8.0-51-generic               2
  87.242462158 = 93.675880448   boot/initrd.img-4.8.0-52-generic               3
  87.242462158 = 93.675880448   initrd.img                                     3
 115.555233002 = 124.076486656  initrd.img.old                                 2

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

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

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

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

export menuentry_id_option

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

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

if [ x$feature_default_font_path = xy ] ; then
   font=unicode
else
insmod part_msdos
insmod ext2
set root='hd1,msdos1'
if [ x$feature_platform_search_hint = xy ]; then
  search --no-floppy --fs-uuid --set=root --hint-bios=hd1,msdos1 --hint-efi=hd1,msdos1 --hint-baremetal=ahci1,msdos1  8b663c7f-fd77-4e3a-96c3-40bbb35457c0
else
  search --no-floppy --fs-uuid --set=root 8b663c7f-fd77-4e3a-96c3-40bbb35457c0
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=en_US
  insmod gettext
fi
terminal_output gfxterm
if [ "${recordfail}" = 1 ] ; then
  set timeout=10
else
  if [ x$feature_timeout_style = xy ] ; then
    set timeout_style=menu
    set timeout=10
  # Fallback normal timeout code in case the timeout_style feature is
  # unavailable.
  else
    set timeout=10
  fi
fi
### END /etc/grub.d/00_header ###

### BEGIN /etc/grub.d/05_debian_theme ###
set menu_color_normal=white/black
set menu_color_highlight=black/light-gray
### END /etc/grub.d/05_debian_theme ###

### BEGIN /etc/grub.d/10_linux ###
function gfxmode {
	set gfxpayload="${1}"
	if [ "${1}" = "keep" ]; then
		set vt_handoff=vt.handoff=7
	else
		set vt_handoff=
	fi
}
if [ "${recordfail}" != 1 ]; then
  if [ -e ${prefix}/gfxblacklist.txt ]; then
    if hwmatch ${prefix}/gfxblacklist.txt 3; then
      if [ ${match} = 0 ]; then
        set linux_gfx_mode=keep
      else
        set linux_gfx_mode=text
      fi
    else
      set linux_gfx_mode=text
    fi
  else
    set linux_gfx_mode=keep
  fi
else
  set linux_gfx_mode=text
fi
export linux_gfx_mode
menuentry 'Ubuntu' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-simple-8b663c7f-fd77-4e3a-96c3-40bbb35457c0' {
	recordfail
	load_video
	gfxmode $linux_gfx_mode
	insmod gzio
	if [ x$grub_platform = xxen ]; then insmod xzio; insmod lzopio; fi
	insmod part_msdos
	insmod ext2
	set root='hd1,msdos1'
	if [ x$feature_platform_search_hint = xy ]; then
	  search --no-floppy --fs-uuid --set=root --hint-bios=hd1,msdos1 --hint-efi=hd1,msdos1 --hint-baremetal=ahci1,msdos1  8b663c7f-fd77-4e3a-96c3-40bbb35457c0
	else
	  search --no-floppy --fs-uuid --set=root 8b663c7f-fd77-4e3a-96c3-40bbb35457c0
	fi
	linux	/boot/vmlinuz-4.4.0-59-generic root=UUID=8b663c7f-fd77-4e3a-96c3-40bbb35457c0 ro  quiet splash $vt_handoff
	initrd	/boot/initrd.img-4.4.0-59-generic
}
submenu 'Advanced options for Ubuntu' $menuentry_id_option 'gnulinux-advanced-8b663c7f-fd77-4e3a-96c3-40bbb35457c0' {
	menuentry 'Ubuntu, with Linux 4.4.0-59-generic' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-4.4.0-59-generic-advanced-8b663c7f-fd77-4e3a-96c3-40bbb35457c0' {
		recordfail
		load_video
		gfxmode $linux_gfx_mode
		insmod gzio
		if [ x$grub_platform = xxen ]; then insmod xzio; insmod lzopio; fi
		insmod part_msdos
		insmod ext2
		set root='hd1,msdos1'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd1,msdos1 --hint-efi=hd1,msdos1 --hint-baremetal=ahci1,msdos1  8b663c7f-fd77-4e3a-96c3-40bbb35457c0
		else
		  search --no-floppy --fs-uuid --set=root 8b663c7f-fd77-4e3a-96c3-40bbb35457c0
		fi
		echo	'Loading Linux 4.4.0-59-generic ...'
		linux	/boot/vmlinuz-4.4.0-59-generic root=UUID=8b663c7f-fd77-4e3a-96c3-40bbb35457c0 ro  quiet splash $vt_handoff
		echo	'Loading initial ramdisk ...'
		initrd	/boot/initrd.img-4.4.0-59-generic
	}
	menuentry 'Ubuntu, with Linux 4.4.0-59-generic (recovery mode)' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-4.4.0-59-generic-recovery-8b663c7f-fd77-4e3a-96c3-40bbb35457c0' {
		recordfail
		load_video
		insmod gzio
		if [ x$grub_platform = xxen ]; then insmod xzio; insmod lzopio; fi
		insmod part_msdos
		insmod ext2
		set root='hd1,msdos1'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd1,msdos1 --hint-efi=hd1,msdos1 --hint-baremetal=ahci1,msdos1  8b663c7f-fd77-4e3a-96c3-40bbb35457c0
		else
		  search --no-floppy --fs-uuid --set=root 8b663c7f-fd77-4e3a-96c3-40bbb35457c0
		fi
		echo	'Loading Linux 4.4.0-59-generic ...'
		linux	/boot/vmlinuz-4.4.0-59-generic root=UUID=8b663c7f-fd77-4e3a-96c3-40bbb35457c0 ro recovery nomodeset 
		echo	'Loading initial ramdisk ...'
		initrd	/boot/initrd.img-4.4.0-59-generic
	}
	menuentry 'Ubuntu, with Linux 4.4.0-53-generic' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-4.4.0-53-generic-advanced-8b663c7f-fd77-4e3a-96c3-40bbb35457c0' {
		recordfail
		load_video
		gfxmode $linux_gfx_mode
		insmod gzio
		if [ x$grub_platform = xxen ]; then insmod xzio; insmod lzopio; fi
		insmod part_msdos
		insmod ext2
		set root='hd1,msdos1'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd1,msdos1 --hint-efi=hd1,msdos1 --hint-baremetal=ahci1,msdos1  8b663c7f-fd77-4e3a-96c3-40bbb35457c0
		else
		  search --no-floppy --fs-uuid --set=root 8b663c7f-fd77-4e3a-96c3-40bbb35457c0
		fi
		echo	'Loading Linux 4.4.0-53-generic ...'
		linux	/boot/vmlinuz-4.4.0-53-generic root=UUID=8b663c7f-fd77-4e3a-96c3-40bbb35457c0 ro  quiet splash $vt_handoff
		echo	'Loading initial ramdisk ...'
		initrd	/boot/initrd.img-4.4.0-53-generic
	}
	menuentry 'Ubuntu, with Linux 4.4.0-53-generic (recovery mode)' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-4.4.0-53-generic-recovery-8b663c7f-fd77-4e3a-96c3-40bbb35457c0' {
		recordfail
		load_video
		insmod gzio
		if [ x$grub_platform = xxen ]; then insmod xzio; insmod lzopio; fi
		insmod part_msdos
		insmod ext2
		set root='hd1,msdos1'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd1,msdos1 --hint-efi=hd1,msdos1 --hint-baremetal=ahci1,msdos1  8b663c7f-fd77-4e3a-96c3-40bbb35457c0
		else
		  search --no-floppy --fs-uuid --set=root 8b663c7f-fd77-4e3a-96c3-40bbb35457c0
		fi
		echo	'Loading Linux 4.4.0-53-generic ...'
		linux	/boot/vmlinuz-4.4.0-53-generic root=UUID=8b663c7f-fd77-4e3a-96c3-40bbb35457c0 ro recovery nomodeset 
		echo	'Loading initial ramdisk ...'
		initrd	/boot/initrd.img-4.4.0-53-generic
	}
	menuentry 'Ubuntu, with Linux 4.4.0-52-generic' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-4.4.0-52-generic-advanced-8b663c7f-fd77-4e3a-96c3-40bbb35457c0' {
		recordfail
		load_video
		gfxmode $linux_gfx_mode
		insmod gzio
		if [ x$grub_platform = xxen ]; then insmod xzio; insmod lzopio; fi
		insmod part_msdos
		insmod ext2
		set root='hd1,msdos1'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd1,msdos1 --hint-efi=hd1,msdos1 --hint-baremetal=ahci1,msdos1  8b663c7f-fd77-4e3a-96c3-40bbb35457c0
		else
		  search --no-floppy --fs-uuid --set=root 8b663c7f-fd77-4e3a-96c3-40bbb35457c0
		fi
		echo	'Loading Linux 4.4.0-52-generic ...'
		linux	/boot/vmlinuz-4.4.0-52-generic root=UUID=8b663c7f-fd77-4e3a-96c3-40bbb35457c0 ro  quiet splash $vt_handoff
		echo	'Loading initial ramdisk ...'
		initrd	/boot/initrd.img-4.4.0-52-generic
	}
	menuentry 'Ubuntu, with Linux 4.4.0-52-generic (recovery mode)' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-4.4.0-52-generic-recovery-8b663c7f-fd77-4e3a-96c3-40bbb35457c0' {
		recordfail
		load_video
		insmod gzio
		if [ x$grub_platform = xxen ]; then insmod xzio; insmod lzopio; fi
		insmod part_msdos
		insmod ext2
		set root='hd1,msdos1'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd1,msdos1 --hint-efi=hd1,msdos1 --hint-baremetal=ahci1,msdos1  8b663c7f-fd77-4e3a-96c3-40bbb35457c0
		else
		  search --no-floppy --fs-uuid --set=root 8b663c7f-fd77-4e3a-96c3-40bbb35457c0
		fi
		echo	'Loading Linux 4.4.0-52-generic ...'
		linux	/boot/vmlinuz-4.4.0-52-generic root=UUID=8b663c7f-fd77-4e3a-96c3-40bbb35457c0 ro recovery nomodeset 
		echo	'Loading initial ramdisk ...'
		initrd	/boot/initrd.img-4.4.0-52-generic
	}
	menuentry 'Ubuntu, with Linux 4.4.0-51-generic' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-4.4.0-51-generic-advanced-8b663c7f-fd77-4e3a-96c3-40bbb35457c0' {
		recordfail
		load_video
		gfxmode $linux_gfx_mode
		insmod gzio
		if [ x$grub_platform = xxen ]; then insmod xzio; insmod lzopio; fi
		insmod part_msdos
		insmod ext2
		set root='hd1,msdos1'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd1,msdos1 --hint-efi=hd1,msdos1 --hint-baremetal=ahci1,msdos1  8b663c7f-fd77-4e3a-96c3-40bbb35457c0
		else
		  search --no-floppy --fs-uuid --set=root 8b663c7f-fd77-4e3a-96c3-40bbb35457c0
		fi
		echo	'Loading Linux 4.4.0-51-generic ...'
		linux	/boot/vmlinuz-4.4.0-51-generic root=UUID=8b663c7f-fd77-4e3a-96c3-40bbb35457c0 ro  quiet splash $vt_handoff
		echo	'Loading initial ramdisk ...'
		initrd	/boot/initrd.img-4.4.0-51-generic
	}
	menuentry 'Ubuntu, with Linux 4.4.0-51-generic (recovery mode)' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-4.4.0-51-generic-recovery-8b663c7f-fd77-4e3a-96c3-40bbb35457c0' {
		recordfail
		load_video
		insmod gzio
		if [ x$grub_platform = xxen ]; then insmod xzio; insmod lzopio; fi
		insmod part_msdos
		insmod ext2
		set root='hd1,msdos1'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd1,msdos1 --hint-efi=hd1,msdos1 --hint-baremetal=ahci1,msdos1  8b663c7f-fd77-4e3a-96c3-40bbb35457c0
		else
		  search --no-floppy --fs-uuid --set=root 8b663c7f-fd77-4e3a-96c3-40bbb35457c0
		fi
		echo	'Loading Linux 4.4.0-51-generic ...'
		linux	/boot/vmlinuz-4.4.0-51-generic root=UUID=8b663c7f-fd77-4e3a-96c3-40bbb35457c0 ro recovery nomodeset 
		echo	'Loading initial ramdisk ...'
		initrd	/boot/initrd.img-4.4.0-51-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/30_os-prober ###
menuentry 'Ubuntu 16.04.2 LTS (16.04) (on /dev/sda2)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-simple-6d2085bf-20ba-4296-866c-87c9a9e64da3' {
	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  6d2085bf-20ba-4296-866c-87c9a9e64da3
	else
	  search --no-floppy --fs-uuid --set=root 6d2085bf-20ba-4296-866c-87c9a9e64da3
	fi
	linux /boot/vmlinuz-4.8.0-52-generic root=UUID=6d2085bf-20ba-4296-866c-87c9a9e64da3 ro quiet splash $vt_handoff
	initrd /boot/initrd.img-4.8.0-52-generic
}
submenu 'Advanced options for Ubuntu 16.04.2 LTS (16.04) (on /dev/sda2)' $menuentry_id_option 'osprober-gnulinux-advanced-6d2085bf-20ba-4296-866c-87c9a9e64da3' {
	menuentry 'Ubuntu (on /dev/sda2)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-4.8.0-52-generic--6d2085bf-20ba-4296-866c-87c9a9e64da3' {
		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  6d2085bf-20ba-4296-866c-87c9a9e64da3
		else
		  search --no-floppy --fs-uuid --set=root 6d2085bf-20ba-4296-866c-87c9a9e64da3
		fi
		linux /boot/vmlinuz-4.8.0-52-generic root=UUID=6d2085bf-20ba-4296-866c-87c9a9e64da3 ro quiet splash $vt_handoff
		initrd /boot/initrd.img-4.8.0-52-generic
	}
	menuentry 'Ubuntu, with Linux 4.8.0-52-generic (on /dev/sda2)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-4.8.0-52-generic--6d2085bf-20ba-4296-866c-87c9a9e64da3' {
		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  6d2085bf-20ba-4296-866c-87c9a9e64da3
		else
		  search --no-floppy --fs-uuid --set=root 6d2085bf-20ba-4296-866c-87c9a9e64da3
		fi
		linux /boot/vmlinuz-4.8.0-52-generic root=UUID=6d2085bf-20ba-4296-866c-87c9a9e64da3 ro quiet splash $vt_handoff
		initrd /boot/initrd.img-4.8.0-52-generic
	}
	menuentry 'Ubuntu, with Linux 4.8.0-52-generic (upstart) (on /dev/sda2)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-4.8.0-52-generic--6d2085bf-20ba-4296-866c-87c9a9e64da3' {
		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  6d2085bf-20ba-4296-866c-87c9a9e64da3
		else
		  search --no-floppy --fs-uuid --set=root 6d2085bf-20ba-4296-866c-87c9a9e64da3
		fi
		linux /boot/vmlinuz-4.8.0-52-generic root=UUID=6d2085bf-20ba-4296-866c-87c9a9e64da3 ro quiet splash $vt_handoff init=/sbin/upstart
		initrd /boot/initrd.img-4.8.0-52-generic
	}
	menuentry 'Ubuntu, with Linux 4.8.0-52-generic (recovery mode) (on /dev/sda2)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-4.8.0-52-generic-root=UUID=6d2085bf-20ba-4296-866c-87c9a9e64da3 ro recovery nomodeset-6d2085bf-20ba-4296-866c-87c9a9e64da3' {
		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  6d2085bf-20ba-4296-866c-87c9a9e64da3
		else
		  search --no-floppy --fs-uuid --set=root 6d2085bf-20ba-4296-866c-87c9a9e64da3
		fi
		linux /boot/vmlinuz-4.8.0-52-generic root=UUID=6d2085bf-20ba-4296-866c-87c9a9e64da3 ro recovery nomodeset
		initrd /boot/initrd.img-4.8.0-52-generic
	}
	menuentry 'Ubuntu, with Linux 4.8.0-51-generic (on /dev/sda2)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-4.8.0-51-generic--6d2085bf-20ba-4296-866c-87c9a9e64da3' {
		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  6d2085bf-20ba-4296-866c-87c9a9e64da3
		else
		  search --no-floppy --fs-uuid --set=root 6d2085bf-20ba-4296-866c-87c9a9e64da3
		fi
		linux /boot/vmlinuz-4.8.0-51-generic root=UUID=6d2085bf-20ba-4296-866c-87c9a9e64da3 ro quiet splash $vt_handoff
		initrd /boot/initrd.img-4.8.0-51-generic
	}
	menuentry 'Ubuntu, with Linux 4.8.0-51-generic (upstart) (on /dev/sda2)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-4.8.0-51-generic--6d2085bf-20ba-4296-866c-87c9a9e64da3' {
		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  6d2085bf-20ba-4296-866c-87c9a9e64da3
		else
		  search --no-floppy --fs-uuid --set=root 6d2085bf-20ba-4296-866c-87c9a9e64da3
		fi
		linux /boot/vmlinuz-4.8.0-51-generic root=UUID=6d2085bf-20ba-4296-866c-87c9a9e64da3 ro quiet splash $vt_handoff init=/sbin/upstart
		initrd /boot/initrd.img-4.8.0-51-generic
	}
	menuentry 'Ubuntu, with Linux 4.8.0-51-generic (recovery mode) (on /dev/sda2)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-4.8.0-51-generic-root=UUID=6d2085bf-20ba-4296-866c-87c9a9e64da3 ro recovery nomodeset-6d2085bf-20ba-4296-866c-87c9a9e64da3' {
		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  6d2085bf-20ba-4296-866c-87c9a9e64da3
		else
		  search --no-floppy --fs-uuid --set=root 6d2085bf-20ba-4296-866c-87c9a9e64da3
		fi
		linux /boot/vmlinuz-4.8.0-51-generic root=UUID=6d2085bf-20ba-4296-866c-87c9a9e64da3 ro recovery nomodeset
		initrd /boot/initrd.img-4.8.0-51-generic
	}
	menuentry 'Ubuntu, with Linux 4.8.0-49-generic (on /dev/sda2)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-4.8.0-49-generic--6d2085bf-20ba-4296-866c-87c9a9e64da3' {
		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  6d2085bf-20ba-4296-866c-87c9a9e64da3
		else
		  search --no-floppy --fs-uuid --set=root 6d2085bf-20ba-4296-866c-87c9a9e64da3
		fi
		linux /boot/vmlinuz-4.8.0-49-generic root=UUID=6d2085bf-20ba-4296-866c-87c9a9e64da3 ro quiet splash $vt_handoff
		initrd /boot/initrd.img-4.8.0-49-generic
	}
	menuentry 'Ubuntu, with Linux 4.8.0-49-generic (upstart) (on /dev/sda2)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-4.8.0-49-generic--6d2085bf-20ba-4296-866c-87c9a9e64da3' {
		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  6d2085bf-20ba-4296-866c-87c9a9e64da3
		else
		  search --no-floppy --fs-uuid --set=root 6d2085bf-20ba-4296-866c-87c9a9e64da3
		fi
		linux /boot/vmlinuz-4.8.0-49-generic root=UUID=6d2085bf-20ba-4296-866c-87c9a9e64da3 ro quiet splash $vt_handoff init=/sbin/upstart
		initrd /boot/initrd.img-4.8.0-49-generic
	}
	menuentry 'Ubuntu, with Linux 4.8.0-49-generic (recovery mode) (on /dev/sda2)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-4.8.0-49-generic-root=UUID=6d2085bf-20ba-4296-866c-87c9a9e64da3 ro recovery nomodeset-6d2085bf-20ba-4296-866c-87c9a9e64da3' {
		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  6d2085bf-20ba-4296-866c-87c9a9e64da3
		else
		  search --no-floppy --fs-uuid --set=root 6d2085bf-20ba-4296-866c-87c9a9e64da3
		fi
		linux /boot/vmlinuz-4.8.0-49-generic root=UUID=6d2085bf-20ba-4296-866c-87c9a9e64da3 ro recovery nomodeset
		initrd /boot/initrd.img-4.8.0-49-generic
	}
}

menuentry 'Ubuntu 16.10 (16.10) (on /dev/sdb4)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-simple-05105719-2200-4440-8c85-0ee0fed385ca' {
	insmod part_msdos
	insmod ext2
	set root='hd1,msdos4'
	if [ x$feature_platform_search_hint = xy ]; then
	  search --no-floppy --fs-uuid --set=root --hint-bios=hd1,msdos4 --hint-efi=hd1,msdos4 --hint-baremetal=ahci1,msdos4  05105719-2200-4440-8c85-0ee0fed385ca
	else
	  search --no-floppy --fs-uuid --set=root 05105719-2200-4440-8c85-0ee0fed385ca
	fi
	linux /boot/vmlinuz-4.8.0-49-generic root=UUID=05105719-2200-4440-8c85-0ee0fed385ca ro quiet splash $vt_handoff
	initrd /boot/initrd.img-4.8.0-49-generic
}
submenu 'Advanced options for Ubuntu 16.10 (16.10) (on /dev/sdb4)' $menuentry_id_option 'osprober-gnulinux-advanced-05105719-2200-4440-8c85-0ee0fed385ca' {
	menuentry 'Ubuntu (on /dev/sdb4)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-4.8.0-49-generic--05105719-2200-4440-8c85-0ee0fed385ca' {
		insmod part_msdos
		insmod ext2
		set root='hd1,msdos4'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd1,msdos4 --hint-efi=hd1,msdos4 --hint-baremetal=ahci1,msdos4  05105719-2200-4440-8c85-0ee0fed385ca
		else
		  search --no-floppy --fs-uuid --set=root 05105719-2200-4440-8c85-0ee0fed385ca
		fi
		linux /boot/vmlinuz-4.8.0-49-generic root=UUID=05105719-2200-4440-8c85-0ee0fed385ca ro quiet splash $vt_handoff
		initrd /boot/initrd.img-4.8.0-49-generic
	}
	menuentry 'Ubuntu, with Linux 4.8.0-49-generic (on /dev/sdb4)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-4.8.0-49-generic--05105719-2200-4440-8c85-0ee0fed385ca' {
		insmod part_msdos
		insmod ext2
		set root='hd1,msdos4'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd1,msdos4 --hint-efi=hd1,msdos4 --hint-baremetal=ahci1,msdos4  05105719-2200-4440-8c85-0ee0fed385ca
		else
		  search --no-floppy --fs-uuid --set=root 05105719-2200-4440-8c85-0ee0fed385ca
		fi
		linux /boot/vmlinuz-4.8.0-49-generic root=UUID=05105719-2200-4440-8c85-0ee0fed385ca ro quiet splash $vt_handoff
		initrd /boot/initrd.img-4.8.0-49-generic
	}
	menuentry 'Ubuntu, with Linux 4.8.0-49-generic (recovery mode) (on /dev/sdb4)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-4.8.0-49-generic-root=UUID=05105719-2200-4440-8c85-0ee0fed385ca ro recovery nomodeset-05105719-2200-4440-8c85-0ee0fed385ca' {
		insmod part_msdos
		insmod ext2
		set root='hd1,msdos4'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd1,msdos4 --hint-efi=hd1,msdos4 --hint-baremetal=ahci1,msdos4  05105719-2200-4440-8c85-0ee0fed385ca
		else
		  search --no-floppy --fs-uuid --set=root 05105719-2200-4440-8c85-0ee0fed385ca
		fi
		linux /boot/vmlinuz-4.8.0-49-generic root=UUID=05105719-2200-4440-8c85-0ee0fed385ca ro recovery nomodeset
		initrd /boot/initrd.img-4.8.0-49-generic
	}
	menuentry 'Ubuntu, with Linux 4.8.0-46-generic (on /dev/sdb4)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-4.8.0-46-generic--05105719-2200-4440-8c85-0ee0fed385ca' {
		insmod part_msdos
		insmod ext2
		set root='hd1,msdos4'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd1,msdos4 --hint-efi=hd1,msdos4 --hint-baremetal=ahci1,msdos4  05105719-2200-4440-8c85-0ee0fed385ca
		else
		  search --no-floppy --fs-uuid --set=root 05105719-2200-4440-8c85-0ee0fed385ca
		fi
		linux /boot/vmlinuz-4.8.0-46-generic root=UUID=05105719-2200-4440-8c85-0ee0fed385ca ro quiet splash $vt_handoff
		initrd /boot/initrd.img-4.8.0-46-generic
	}
	menuentry 'Ubuntu, with Linux 4.8.0-46-generic (recovery mode) (on /dev/sdb4)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-4.8.0-46-generic-root=UUID=05105719-2200-4440-8c85-0ee0fed385ca ro recovery nomodeset-05105719-2200-4440-8c85-0ee0fed385ca' {
		insmod part_msdos
		insmod ext2
		set root='hd1,msdos4'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd1,msdos4 --hint-efi=hd1,msdos4 --hint-baremetal=ahci1,msdos4  05105719-2200-4440-8c85-0ee0fed385ca
		else
		  search --no-floppy --fs-uuid --set=root 05105719-2200-4440-8c85-0ee0fed385ca
		fi
		linux /boot/vmlinuz-4.8.0-46-generic root=UUID=05105719-2200-4440-8c85-0ee0fed385ca ro recovery nomodeset
		initrd /boot/initrd.img-4.8.0-46-generic
	}
	menuentry 'Ubuntu, with Linux 4.8.0-45-generic (on /dev/sdb4)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-4.8.0-45-generic--05105719-2200-4440-8c85-0ee0fed385ca' {
		insmod part_msdos
		insmod ext2
		set root='hd1,msdos4'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd1,msdos4 --hint-efi=hd1,msdos4 --hint-baremetal=ahci1,msdos4  05105719-2200-4440-8c85-0ee0fed385ca
		else
		  search --no-floppy --fs-uuid --set=root 05105719-2200-4440-8c85-0ee0fed385ca
		fi
		linux /boot/vmlinuz-4.8.0-45-generic root=UUID=05105719-2200-4440-8c85-0ee0fed385ca ro quiet splash $vt_handoff
		initrd /boot/initrd.img-4.8.0-45-generic
	}
	menuentry 'Ubuntu, with Linux 4.8.0-45-generic (recovery mode) (on /dev/sdb4)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-4.8.0-45-generic-root=UUID=05105719-2200-4440-8c85-0ee0fed385ca ro recovery nomodeset-05105719-2200-4440-8c85-0ee0fed385ca' {
		insmod part_msdos
		insmod ext2
		set root='hd1,msdos4'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd1,msdos4 --hint-efi=hd1,msdos4 --hint-baremetal=ahci1,msdos4  05105719-2200-4440-8c85-0ee0fed385ca
		else
		  search --no-floppy --fs-uuid --set=root 05105719-2200-4440-8c85-0ee0fed385ca
		fi
		linux /boot/vmlinuz-4.8.0-45-generic root=UUID=05105719-2200-4440-8c85-0ee0fed385ca ro recovery nomodeset
		initrd /boot/initrd.img-4.8.0-45-generic
	}
	menuentry 'Ubuntu, with Linux 4.8.0-22-generic (on /dev/sdb4)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-4.8.0-22-generic--05105719-2200-4440-8c85-0ee0fed385ca' {
		insmod part_msdos
		insmod ext2
		set root='hd1,msdos4'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd1,msdos4 --hint-efi=hd1,msdos4 --hint-baremetal=ahci1,msdos4  05105719-2200-4440-8c85-0ee0fed385ca
		else
		  search --no-floppy --fs-uuid --set=root 05105719-2200-4440-8c85-0ee0fed385ca
		fi
		linux /boot/vmlinuz-4.8.0-22-generic root=UUID=05105719-2200-4440-8c85-0ee0fed385ca ro quiet splash $vt_handoff
		initrd /boot/initrd.img-4.8.0-22-generic
	}
	menuentry 'Ubuntu, with Linux 4.8.0-22-generic (recovery mode) (on /dev/sdb4)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-4.8.0-22-generic-root=UUID=05105719-2200-4440-8c85-0ee0fed385ca ro recovery nomodeset-05105719-2200-4440-8c85-0ee0fed385ca' {
		insmod part_msdos
		insmod ext2
		set root='hd1,msdos4'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd1,msdos4 --hint-efi=hd1,msdos4 --hint-baremetal=ahci1,msdos4  05105719-2200-4440-8c85-0ee0fed385ca
		else
		  search --no-floppy --fs-uuid --set=root 05105719-2200-4440-8c85-0ee0fed385ca
		fi
		linux /boot/vmlinuz-4.8.0-22-generic root=UUID=05105719-2200-4440-8c85-0ee0fed385ca ro recovery nomodeset
		initrd /boot/initrd.img-4.8.0-22-generic
	}
}

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

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

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

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

=============================== sdb1/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=8b663c7f-fd77-4e3a-96c3-40bbb35457c0 /               ext4    errors=remount-ro 0       1
# SWAP
UUID=fcb583b3-2011-4aba-8923-a435046220cc none               swap    sw  0   0



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

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

           GiB - GB             File                                 Fragment(s)

   0.000999451 = 0.001073152    boot/grub/grub.cfg                             1
  56.300521851 = 60.452225024   boot/grub/i386-pc/core.img                     1
  56.422824860 = 60.583546880   boot/vmlinuz-4.4.0-51-generic                  1
  56.492546082 = 60.658409472   boot/vmlinuz-4.4.0-52-generic                  1
  56.429782867 = 60.591017984   boot/vmlinuz-4.4.0-53-generic                  1
  56.476070404 = 60.640718848   boot/vmlinuz-4.4.0-59-generic                  1
   1.241695404 = 1.333260288    vmlinuz                                        1
   1.340396881 = 1.439240192    boot/initrd.img-4.4.0-51-generic               3
   1.582595825 = 1.699299328    boot/initrd.img-4.4.0-52-generic               3
   1.590408325 = 1.707687936    boot/initrd.img-4.4.0-53-generic               3
   1.750396729 = 1.879474176    boot/initrd.img-4.4.0-59-generic               4
   1.191967010 = 1.279864832    initrd.img                                     3

=========================== 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_msdos
insmod ext2
set root='hd1,msdos4'
if [ x$feature_platform_search_hint = xy ]; then
  search --no-floppy --fs-uuid --set=root --hint-bios=hd1,msdos4 --hint-efi=hd1,msdos4 --hint-baremetal=ahci1,msdos4  05105719-2200-4440-8c85-0ee0fed385ca
else
  search --no-floppy --fs-uuid --set=root 05105719-2200-4440-8c85-0ee0fed385ca
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=en_US
  insmod gettext
fi
terminal_output gfxterm
if [ "${recordfail}" = 1 ] ; then
  set timeout=10
else
  if [ x$feature_timeout_style = xy ] ; then
    set timeout_style=menu
    set timeout=10
  # Fallback normal timeout code in case the timeout_style feature is
  # unavailable.
  else
    set timeout=10
  fi
fi
### END /etc/grub.d/00_header ###

### BEGIN /etc/grub.d/05_debian_theme ###
set menu_color_normal=white/black
set menu_color_highlight=black/light-gray
### END /etc/grub.d/05_debian_theme ###

### BEGIN /etc/grub.d/10_linux ###
function gfxmode {
	set gfxpayload="${1}"
	if [ "${1}" = "keep" ]; then
		set vt_handoff=vt.handoff=7
	else
		set vt_handoff=
	fi
}
if [ "${recordfail}" != 1 ]; then
  if [ -e ${prefix}/gfxblacklist.txt ]; then
    if hwmatch ${prefix}/gfxblacklist.txt 3; then
      if [ ${match} = 0 ]; then
        set linux_gfx_mode=keep
      else
        set linux_gfx_mode=text
      fi
    else
      set linux_gfx_mode=text
    fi
  else
    set linux_gfx_mode=keep
  fi
else
  set linux_gfx_mode=text
fi
export linux_gfx_mode
menuentry 'Ubuntu' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-simple-05105719-2200-4440-8c85-0ee0fed385ca' {
	recordfail
	load_video
	gfxmode $linux_gfx_mode
	insmod gzio
	if [ x$grub_platform = xxen ]; then insmod xzio; insmod lzopio; fi
	insmod part_msdos
	insmod ext2
	set root='hd1,msdos4'
	if [ x$feature_platform_search_hint = xy ]; then
	  search --no-floppy --fs-uuid --set=root --hint-bios=hd1,msdos4 --hint-efi=hd1,msdos4 --hint-baremetal=ahci1,msdos4  05105719-2200-4440-8c85-0ee0fed385ca
	else
	  search --no-floppy --fs-uuid --set=root 05105719-2200-4440-8c85-0ee0fed385ca
	fi
	linux	/boot/vmlinuz-4.8.0-49-generic root=UUID=05105719-2200-4440-8c85-0ee0fed385ca ro  quiet splash $vt_handoff
	initrd	/boot/initrd.img-4.8.0-49-generic
}
submenu 'Advanced options for Ubuntu' $menuentry_id_option 'gnulinux-advanced-05105719-2200-4440-8c85-0ee0fed385ca' {
	menuentry 'Ubuntu, with Linux 4.8.0-49-generic' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-4.8.0-49-generic-advanced-05105719-2200-4440-8c85-0ee0fed385ca' {
		recordfail
		load_video
		gfxmode $linux_gfx_mode
		insmod gzio
		if [ x$grub_platform = xxen ]; then insmod xzio; insmod lzopio; fi
		insmod part_msdos
		insmod ext2
		set root='hd1,msdos4'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd1,msdos4 --hint-efi=hd1,msdos4 --hint-baremetal=ahci1,msdos4  05105719-2200-4440-8c85-0ee0fed385ca
		else
		  search --no-floppy --fs-uuid --set=root 05105719-2200-4440-8c85-0ee0fed385ca
		fi
		echo	'Loading Linux 4.8.0-49-generic ...'
		linux	/boot/vmlinuz-4.8.0-49-generic root=UUID=05105719-2200-4440-8c85-0ee0fed385ca ro  quiet splash $vt_handoff
		echo	'Loading initial ramdisk ...'
		initrd	/boot/initrd.img-4.8.0-49-generic
	}
	menuentry 'Ubuntu, with Linux 4.8.0-49-generic (recovery mode)' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-4.8.0-49-generic-recovery-05105719-2200-4440-8c85-0ee0fed385ca' {
		recordfail
		load_video
		insmod gzio
		if [ x$grub_platform = xxen ]; then insmod xzio; insmod lzopio; fi
		insmod part_msdos
		insmod ext2
		set root='hd1,msdos4'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd1,msdos4 --hint-efi=hd1,msdos4 --hint-baremetal=ahci1,msdos4  05105719-2200-4440-8c85-0ee0fed385ca
		else
		  search --no-floppy --fs-uuid --set=root 05105719-2200-4440-8c85-0ee0fed385ca
		fi
		echo	'Loading Linux 4.8.0-49-generic ...'
		linux	/boot/vmlinuz-4.8.0-49-generic root=UUID=05105719-2200-4440-8c85-0ee0fed385ca ro recovery nomodeset 
		echo	'Loading initial ramdisk ...'
		initrd	/boot/initrd.img-4.8.0-49-generic
	}
	menuentry 'Ubuntu, with Linux 4.8.0-46-generic' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-4.8.0-46-generic-advanced-05105719-2200-4440-8c85-0ee0fed385ca' {
		recordfail
		load_video
		gfxmode $linux_gfx_mode
		insmod gzio
		if [ x$grub_platform = xxen ]; then insmod xzio; insmod lzopio; fi
		insmod part_msdos
		insmod ext2
		set root='hd1,msdos4'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd1,msdos4 --hint-efi=hd1,msdos4 --hint-baremetal=ahci1,msdos4  05105719-2200-4440-8c85-0ee0fed385ca
		else
		  search --no-floppy --fs-uuid --set=root 05105719-2200-4440-8c85-0ee0fed385ca
		fi
		echo	'Loading Linux 4.8.0-46-generic ...'
		linux	/boot/vmlinuz-4.8.0-46-generic root=UUID=05105719-2200-4440-8c85-0ee0fed385ca ro  quiet splash $vt_handoff
		echo	'Loading initial ramdisk ...'
		initrd	/boot/initrd.img-4.8.0-46-generic
	}
	menuentry 'Ubuntu, with Linux 4.8.0-46-generic (recovery mode)' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-4.8.0-46-generic-recovery-05105719-2200-4440-8c85-0ee0fed385ca' {
		recordfail
		load_video
		insmod gzio
		if [ x$grub_platform = xxen ]; then insmod xzio; insmod lzopio; fi
		insmod part_msdos
		insmod ext2
		set root='hd1,msdos4'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd1,msdos4 --hint-efi=hd1,msdos4 --hint-baremetal=ahci1,msdos4  05105719-2200-4440-8c85-0ee0fed385ca
		else
		  search --no-floppy --fs-uuid --set=root 05105719-2200-4440-8c85-0ee0fed385ca
		fi
		echo	'Loading Linux 4.8.0-46-generic ...'
		linux	/boot/vmlinuz-4.8.0-46-generic root=UUID=05105719-2200-4440-8c85-0ee0fed385ca ro recovery nomodeset 
		echo	'Loading initial ramdisk ...'
		initrd	/boot/initrd.img-4.8.0-46-generic
	}
	menuentry 'Ubuntu, with Linux 4.8.0-45-generic' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-4.8.0-45-generic-advanced-05105719-2200-4440-8c85-0ee0fed385ca' {
		recordfail
		load_video
		gfxmode $linux_gfx_mode
		insmod gzio
		if [ x$grub_platform = xxen ]; then insmod xzio; insmod lzopio; fi
		insmod part_msdos
		insmod ext2
		set root='hd1,msdos4'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd1,msdos4 --hint-efi=hd1,msdos4 --hint-baremetal=ahci1,msdos4  05105719-2200-4440-8c85-0ee0fed385ca
		else
		  search --no-floppy --fs-uuid --set=root 05105719-2200-4440-8c85-0ee0fed385ca
		fi
		echo	'Loading Linux 4.8.0-45-generic ...'
		linux	/boot/vmlinuz-4.8.0-45-generic root=UUID=05105719-2200-4440-8c85-0ee0fed385ca ro  quiet splash $vt_handoff
		echo	'Loading initial ramdisk ...'
		initrd	/boot/initrd.img-4.8.0-45-generic
	}
	menuentry 'Ubuntu, with Linux 4.8.0-45-generic (recovery mode)' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-4.8.0-45-generic-recovery-05105719-2200-4440-8c85-0ee0fed385ca' {
		recordfail
		load_video
		insmod gzio
		if [ x$grub_platform = xxen ]; then insmod xzio; insmod lzopio; fi
		insmod part_msdos
		insmod ext2
		set root='hd1,msdos4'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd1,msdos4 --hint-efi=hd1,msdos4 --hint-baremetal=ahci1,msdos4  05105719-2200-4440-8c85-0ee0fed385ca
		else
		  search --no-floppy --fs-uuid --set=root 05105719-2200-4440-8c85-0ee0fed385ca
		fi
		echo	'Loading Linux 4.8.0-45-generic ...'
		linux	/boot/vmlinuz-4.8.0-45-generic root=UUID=05105719-2200-4440-8c85-0ee0fed385ca ro recovery nomodeset 
		echo	'Loading initial ramdisk ...'
		initrd	/boot/initrd.img-4.8.0-45-generic
	}
	menuentry 'Ubuntu, with Linux 4.8.0-22-generic' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-4.8.0-22-generic-advanced-05105719-2200-4440-8c85-0ee0fed385ca' {
		recordfail
		load_video
		gfxmode $linux_gfx_mode
		insmod gzio
		if [ x$grub_platform = xxen ]; then insmod xzio; insmod lzopio; fi
		insmod part_msdos
		insmod ext2
		set root='hd1,msdos4'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd1,msdos4 --hint-efi=hd1,msdos4 --hint-baremetal=ahci1,msdos4  05105719-2200-4440-8c85-0ee0fed385ca
		else
		  search --no-floppy --fs-uuid --set=root 05105719-2200-4440-8c85-0ee0fed385ca
		fi
		echo	'Loading Linux 4.8.0-22-generic ...'
		linux	/boot/vmlinuz-4.8.0-22-generic root=UUID=05105719-2200-4440-8c85-0ee0fed385ca ro  quiet splash $vt_handoff
		echo	'Loading initial ramdisk ...'
		initrd	/boot/initrd.img-4.8.0-22-generic
	}
	menuentry 'Ubuntu, with Linux 4.8.0-22-generic (recovery mode)' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-4.8.0-22-generic-recovery-05105719-2200-4440-8c85-0ee0fed385ca' {
		recordfail
		load_video
		insmod gzio
		if [ x$grub_platform = xxen ]; then insmod xzio; insmod lzopio; fi
		insmod part_msdos
		insmod ext2
		set root='hd1,msdos4'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd1,msdos4 --hint-efi=hd1,msdos4 --hint-baremetal=ahci1,msdos4  05105719-2200-4440-8c85-0ee0fed385ca
		else
		  search --no-floppy --fs-uuid --set=root 05105719-2200-4440-8c85-0ee0fed385ca
		fi
		echo	'Loading Linux 4.8.0-22-generic ...'
		linux	/boot/vmlinuz-4.8.0-22-generic root=UUID=05105719-2200-4440-8c85-0ee0fed385ca ro recovery nomodeset 
		echo	'Loading initial ramdisk ...'
		initrd	/boot/initrd.img-4.8.0-22-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/30_os-prober ###
menuentry 'Ubuntu 16.04.2 LTS (16.04) (on /dev/sda2)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-simple-6d2085bf-20ba-4296-866c-87c9a9e64da3' {
	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  6d2085bf-20ba-4296-866c-87c9a9e64da3
	else
	  search --no-floppy --fs-uuid --set=root 6d2085bf-20ba-4296-866c-87c9a9e64da3
	fi
	linux /boot/vmlinuz-4.8.0-52-generic root=UUID=6d2085bf-20ba-4296-866c-87c9a9e64da3 ro quiet splash $vt_handoff
	initrd /boot/initrd.img-4.8.0-52-generic
}
submenu 'Advanced options for Ubuntu 16.04.2 LTS (16.04) (on /dev/sda2)' $menuentry_id_option 'osprober-gnulinux-advanced-6d2085bf-20ba-4296-866c-87c9a9e64da3' {
	menuentry 'Ubuntu (on /dev/sda2)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-4.8.0-52-generic--6d2085bf-20ba-4296-866c-87c9a9e64da3' {
		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  6d2085bf-20ba-4296-866c-87c9a9e64da3
		else
		  search --no-floppy --fs-uuid --set=root 6d2085bf-20ba-4296-866c-87c9a9e64da3
		fi
		linux /boot/vmlinuz-4.8.0-52-generic root=UUID=6d2085bf-20ba-4296-866c-87c9a9e64da3 ro quiet splash $vt_handoff
		initrd /boot/initrd.img-4.8.0-52-generic
	}
	menuentry 'Ubuntu, with Linux 4.8.0-52-generic (on /dev/sda2)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-4.8.0-52-generic--6d2085bf-20ba-4296-866c-87c9a9e64da3' {
		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  6d2085bf-20ba-4296-866c-87c9a9e64da3
		else
		  search --no-floppy --fs-uuid --set=root 6d2085bf-20ba-4296-866c-87c9a9e64da3
		fi
		linux /boot/vmlinuz-4.8.0-52-generic root=UUID=6d2085bf-20ba-4296-866c-87c9a9e64da3 ro quiet splash $vt_handoff
		initrd /boot/initrd.img-4.8.0-52-generic
	}
	menuentry 'Ubuntu, with Linux 4.8.0-52-generic (upstart) (on /dev/sda2)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-4.8.0-52-generic--6d2085bf-20ba-4296-866c-87c9a9e64da3' {
		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  6d2085bf-20ba-4296-866c-87c9a9e64da3
		else
		  search --no-floppy --fs-uuid --set=root 6d2085bf-20ba-4296-866c-87c9a9e64da3
		fi
		linux /boot/vmlinuz-4.8.0-52-generic root=UUID=6d2085bf-20ba-4296-866c-87c9a9e64da3 ro quiet splash $vt_handoff init=/sbin/upstart
		initrd /boot/initrd.img-4.8.0-52-generic
	}
	menuentry 'Ubuntu, with Linux 4.8.0-52-generic (recovery mode) (on /dev/sda2)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-4.8.0-52-generic-root=UUID=6d2085bf-20ba-4296-866c-87c9a9e64da3 ro recovery nomodeset-6d2085bf-20ba-4296-866c-87c9a9e64da3' {
		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  6d2085bf-20ba-4296-866c-87c9a9e64da3
		else
		  search --no-floppy --fs-uuid --set=root 6d2085bf-20ba-4296-866c-87c9a9e64da3
		fi
		linux /boot/vmlinuz-4.8.0-52-generic root=UUID=6d2085bf-20ba-4296-866c-87c9a9e64da3 ro recovery nomodeset
		initrd /boot/initrd.img-4.8.0-52-generic
	}
	menuentry 'Ubuntu, with Linux 4.8.0-51-generic (on /dev/sda2)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-4.8.0-51-generic--6d2085bf-20ba-4296-866c-87c9a9e64da3' {
		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  6d2085bf-20ba-4296-866c-87c9a9e64da3
		else
		  search --no-floppy --fs-uuid --set=root 6d2085bf-20ba-4296-866c-87c9a9e64da3
		fi
		linux /boot/vmlinuz-4.8.0-51-generic root=UUID=6d2085bf-20ba-4296-866c-87c9a9e64da3 ro quiet splash $vt_handoff
		initrd /boot/initrd.img-4.8.0-51-generic
	}
	menuentry 'Ubuntu, with Linux 4.8.0-51-generic (upstart) (on /dev/sda2)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-4.8.0-51-generic--6d2085bf-20ba-4296-866c-87c9a9e64da3' {
		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  6d2085bf-20ba-4296-866c-87c9a9e64da3
		else
		  search --no-floppy --fs-uuid --set=root 6d2085bf-20ba-4296-866c-87c9a9e64da3
		fi
		linux /boot/vmlinuz-4.8.0-51-generic root=UUID=6d2085bf-20ba-4296-866c-87c9a9e64da3 ro quiet splash $vt_handoff init=/sbin/upstart
		initrd /boot/initrd.img-4.8.0-51-generic
	}
	menuentry 'Ubuntu, with Linux 4.8.0-51-generic (recovery mode) (on /dev/sda2)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-4.8.0-51-generic-root=UUID=6d2085bf-20ba-4296-866c-87c9a9e64da3 ro recovery nomodeset-6d2085bf-20ba-4296-866c-87c9a9e64da3' {
		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  6d2085bf-20ba-4296-866c-87c9a9e64da3
		else
		  search --no-floppy --fs-uuid --set=root 6d2085bf-20ba-4296-866c-87c9a9e64da3
		fi
		linux /boot/vmlinuz-4.8.0-51-generic root=UUID=6d2085bf-20ba-4296-866c-87c9a9e64da3 ro recovery nomodeset
		initrd /boot/initrd.img-4.8.0-51-generic
	}
	menuentry 'Ubuntu, with Linux 4.8.0-49-generic (on /dev/sda2)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-4.8.0-49-generic--6d2085bf-20ba-4296-866c-87c9a9e64da3' {
		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  6d2085bf-20ba-4296-866c-87c9a9e64da3
		else
		  search --no-floppy --fs-uuid --set=root 6d2085bf-20ba-4296-866c-87c9a9e64da3
		fi
		linux /boot/vmlinuz-4.8.0-49-generic root=UUID=6d2085bf-20ba-4296-866c-87c9a9e64da3 ro quiet splash $vt_handoff
		initrd /boot/initrd.img-4.8.0-49-generic
	}
	menuentry 'Ubuntu, with Linux 4.8.0-49-generic (upstart) (on /dev/sda2)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-4.8.0-49-generic--6d2085bf-20ba-4296-866c-87c9a9e64da3' {
		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  6d2085bf-20ba-4296-866c-87c9a9e64da3
		else
		  search --no-floppy --fs-uuid --set=root 6d2085bf-20ba-4296-866c-87c9a9e64da3
		fi
		linux /boot/vmlinuz-4.8.0-49-generic root=UUID=6d2085bf-20ba-4296-866c-87c9a9e64da3 ro quiet splash $vt_handoff init=/sbin/upstart
		initrd /boot/initrd.img-4.8.0-49-generic
	}
	menuentry 'Ubuntu, with Linux 4.8.0-49-generic (recovery mode) (on /dev/sda2)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-4.8.0-49-generic-root=UUID=6d2085bf-20ba-4296-866c-87c9a9e64da3 ro recovery nomodeset-6d2085bf-20ba-4296-866c-87c9a9e64da3' {
		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  6d2085bf-20ba-4296-866c-87c9a9e64da3
		else
		  search --no-floppy --fs-uuid --set=root 6d2085bf-20ba-4296-866c-87c9a9e64da3
		fi
		linux /boot/vmlinuz-4.8.0-49-generic root=UUID=6d2085bf-20ba-4296-866c-87c9a9e64da3 ro recovery nomodeset
		initrd /boot/initrd.img-4.8.0-49-generic
	}
}

menuentry 'Ubuntu 16.10 (16.10) (on /dev/sdb1)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-simple-8b663c7f-fd77-4e3a-96c3-40bbb35457c0' {
	insmod part_msdos
	insmod ext2
	set root='hd1,msdos1'
	if [ x$feature_platform_search_hint = xy ]; then
	  search --no-floppy --fs-uuid --set=root --hint-bios=hd1,msdos1 --hint-efi=hd1,msdos1 --hint-baremetal=ahci1,msdos1  8b663c7f-fd77-4e3a-96c3-40bbb35457c0
	else
	  search --no-floppy --fs-uuid --set=root 8b663c7f-fd77-4e3a-96c3-40bbb35457c0
	fi
	linux /boot/vmlinuz-4.4.0-59-generic root=UUID=8b663c7f-fd77-4e3a-96c3-40bbb35457c0 ro quiet splash $vt_handoff
	initrd /boot/initrd.img-4.4.0-59-generic
}
submenu 'Advanced options for Ubuntu 16.10 (16.10) (on /dev/sdb1)' $menuentry_id_option 'osprober-gnulinux-advanced-8b663c7f-fd77-4e3a-96c3-40bbb35457c0' {
	menuentry 'Ubuntu (on /dev/sdb1)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-4.4.0-59-generic--8b663c7f-fd77-4e3a-96c3-40bbb35457c0' {
		insmod part_msdos
		insmod ext2
		set root='hd1,msdos1'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd1,msdos1 --hint-efi=hd1,msdos1 --hint-baremetal=ahci1,msdos1  8b663c7f-fd77-4e3a-96c3-40bbb35457c0
		else
		  search --no-floppy --fs-uuid --set=root 8b663c7f-fd77-4e3a-96c3-40bbb35457c0
		fi
		linux /boot/vmlinuz-4.4.0-59-generic root=UUID=8b663c7f-fd77-4e3a-96c3-40bbb35457c0 ro quiet splash $vt_handoff
		initrd /boot/initrd.img-4.4.0-59-generic
	}
	menuentry 'Ubuntu, with Linux 4.4.0-59-generic (on /dev/sdb1)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-4.4.0-59-generic--8b663c7f-fd77-4e3a-96c3-40bbb35457c0' {
		insmod part_msdos
		insmod ext2
		set root='hd1,msdos1'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd1,msdos1 --hint-efi=hd1,msdos1 --hint-baremetal=ahci1,msdos1  8b663c7f-fd77-4e3a-96c3-40bbb35457c0
		else
		  search --no-floppy --fs-uuid --set=root 8b663c7f-fd77-4e3a-96c3-40bbb35457c0
		fi
		linux /boot/vmlinuz-4.4.0-59-generic root=UUID=8b663c7f-fd77-4e3a-96c3-40bbb35457c0 ro quiet splash $vt_handoff
		initrd /boot/initrd.img-4.4.0-59-generic
	}
	menuentry 'Ubuntu, with Linux 4.4.0-59-generic (recovery mode) (on /dev/sdb1)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-4.4.0-59-generic-root=UUID=8b663c7f-fd77-4e3a-96c3-40bbb35457c0 ro recovery nomodeset-8b663c7f-fd77-4e3a-96c3-40bbb35457c0' {
		insmod part_msdos
		insmod ext2
		set root='hd1,msdos1'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd1,msdos1 --hint-efi=hd1,msdos1 --hint-baremetal=ahci1,msdos1  8b663c7f-fd77-4e3a-96c3-40bbb35457c0
		else
		  search --no-floppy --fs-uuid --set=root 8b663c7f-fd77-4e3a-96c3-40bbb35457c0
		fi
		linux /boot/vmlinuz-4.4.0-59-generic root=UUID=8b663c7f-fd77-4e3a-96c3-40bbb35457c0 ro recovery nomodeset
		initrd /boot/initrd.img-4.4.0-59-generic
	}
	menuentry 'Ubuntu, with Linux 4.4.0-53-generic (on /dev/sdb1)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-4.4.0-53-generic--8b663c7f-fd77-4e3a-96c3-40bbb35457c0' {
		insmod part_msdos
		insmod ext2
		set root='hd1,msdos1'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd1,msdos1 --hint-efi=hd1,msdos1 --hint-baremetal=ahci1,msdos1  8b663c7f-fd77-4e3a-96c3-40bbb35457c0
		else
		  search --no-floppy --fs-uuid --set=root 8b663c7f-fd77-4e3a-96c3-40bbb35457c0
		fi
		linux /boot/vmlinuz-4.4.0-53-generic root=UUID=8b663c7f-fd77-4e3a-96c3-40bbb35457c0 ro quiet splash $vt_handoff
		initrd /boot/initrd.img-4.4.0-53-generic
	}
	menuentry 'Ubuntu, with Linux 4.4.0-53-generic (recovery mode) (on /dev/sdb1)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-4.4.0-53-generic-root=UUID=8b663c7f-fd77-4e3a-96c3-40bbb35457c0 ro recovery nomodeset-8b663c7f-fd77-4e3a-96c3-40bbb35457c0' {
		insmod part_msdos
		insmod ext2
		set root='hd1,msdos1'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd1,msdos1 --hint-efi=hd1,msdos1 --hint-baremetal=ahci1,msdos1  8b663c7f-fd77-4e3a-96c3-40bbb35457c0
		else
		  search --no-floppy --fs-uuid --set=root 8b663c7f-fd77-4e3a-96c3-40bbb35457c0
		fi
		linux /boot/vmlinuz-4.4.0-53-generic root=UUID=8b663c7f-fd77-4e3a-96c3-40bbb35457c0 ro recovery nomodeset
		initrd /boot/initrd.img-4.4.0-53-generic
	}
	menuentry 'Ubuntu, with Linux 4.4.0-52-generic (on /dev/sdb1)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-4.4.0-52-generic--8b663c7f-fd77-4e3a-96c3-40bbb35457c0' {
		insmod part_msdos
		insmod ext2
		set root='hd1,msdos1'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd1,msdos1 --hint-efi=hd1,msdos1 --hint-baremetal=ahci1,msdos1  8b663c7f-fd77-4e3a-96c3-40bbb35457c0
		else
		  search --no-floppy --fs-uuid --set=root 8b663c7f-fd77-4e3a-96c3-40bbb35457c0
		fi
		linux /boot/vmlinuz-4.4.0-52-generic root=UUID=8b663c7f-fd77-4e3a-96c3-40bbb35457c0 ro quiet splash $vt_handoff
		initrd /boot/initrd.img-4.4.0-52-generic
	}
	menuentry 'Ubuntu, with Linux 4.4.0-52-generic (recovery mode) (on /dev/sdb1)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-4.4.0-52-generic-root=UUID=8b663c7f-fd77-4e3a-96c3-40bbb35457c0 ro recovery nomodeset-8b663c7f-fd77-4e3a-96c3-40bbb35457c0' {
		insmod part_msdos
		insmod ext2
		set root='hd1,msdos1'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd1,msdos1 --hint-efi=hd1,msdos1 --hint-baremetal=ahci1,msdos1  8b663c7f-fd77-4e3a-96c3-40bbb35457c0
		else
		  search --no-floppy --fs-uuid --set=root 8b663c7f-fd77-4e3a-96c3-40bbb35457c0
		fi
		linux /boot/vmlinuz-4.4.0-52-generic root=UUID=8b663c7f-fd77-4e3a-96c3-40bbb35457c0 ro recovery nomodeset
		initrd /boot/initrd.img-4.4.0-52-generic
	}
	menuentry 'Ubuntu, with Linux 4.4.0-51-generic (on /dev/sdb1)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-4.4.0-51-generic--8b663c7f-fd77-4e3a-96c3-40bbb35457c0' {
		insmod part_msdos
		insmod ext2
		set root='hd1,msdos1'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd1,msdos1 --hint-efi=hd1,msdos1 --hint-baremetal=ahci1,msdos1  8b663c7f-fd77-4e3a-96c3-40bbb35457c0
		else
		  search --no-floppy --fs-uuid --set=root 8b663c7f-fd77-4e3a-96c3-40bbb35457c0
		fi
		linux /boot/vmlinuz-4.4.0-51-generic root=UUID=8b663c7f-fd77-4e3a-96c3-40bbb35457c0 ro quiet splash $vt_handoff
		initrd /boot/initrd.img-4.4.0-51-generic
	}
	menuentry 'Ubuntu, with Linux 4.4.0-51-generic (recovery mode) (on /dev/sdb1)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-4.4.0-51-generic-root=UUID=8b663c7f-fd77-4e3a-96c3-40bbb35457c0 ro recovery nomodeset-8b663c7f-fd77-4e3a-96c3-40bbb35457c0' {
		insmod part_msdos
		insmod ext2
		set root='hd1,msdos1'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd1,msdos1 --hint-efi=hd1,msdos1 --hint-baremetal=ahci1,msdos1  8b663c7f-fd77-4e3a-96c3-40bbb35457c0
		else
		  search --no-floppy --fs-uuid --set=root 8b663c7f-fd77-4e3a-96c3-40bbb35457c0
		fi
		linux /boot/vmlinuz-4.4.0-51-generic root=UUID=8b663c7f-fd77-4e3a-96c3-40bbb35457c0 ro recovery nomodeset
		initrd /boot/initrd.img-4.4.0-51-generic
	}
}

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

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

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

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

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

--------------------------------------------------------------------------------
# /etc/fstab: static file system information.
#
# Use 'blkid' to print the universally unique identifier for a
# device; this may be used with UUID= as a more robust way to name devices
# that works even if disks are added and removed. See fstab(5).
#
# <file system> <mount point>   <type>  <options>       <dump>  <pass>
# / 
UUID=05105719-2200-4440-8c85-0ee0fed385ca /           ext4    errors=remount-ro 0       1
# SWAP
UUID=3ca74015-6dab-40a9-b865-f9844b9a1a78 none        swap    sw  0   0


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

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

           GiB - GB             File                                 Fragment(s)

 207.696006775 = 223.011889152  boot/grub/grub.cfg                             1
 207.742450714 = 223.061757952  boot/grub/i386-pc/core.img                     1
 207.643749237 = 222.955778048  boot/vmlinuz-4.8.0-22-generic                  1
 211.533664703 = 227.132542976  boot/vmlinuz-4.8.0-45-generic                  1
 226.854167938 = 243.582808064  boot/vmlinuz-4.8.0-46-generic                  1
 218.729171753 = 234.858659840  boot/vmlinuz-4.8.0-49-generic                  1
 218.729171753 = 234.858659840  vmlinuz                                        1
 226.854167938 = 243.582808064  vmlinuz.old                                    1
 206.760044098 = 222.006906880  boot/initrd.img-4.8.0-22-generic               4
 209.521831512 = 224.972353536  boot/initrd.img-4.8.0-45-generic               2
 221.807048798 = 238.163505152  boot/initrd.img-4.8.0-46-generic               3
 218.978923798 = 235.126829056  boot/initrd.img-4.8.0-49-generic               3
 218.978923798 = 235.126829056  initrd.img                                     3
 221.807048798 = 238.163505152  initrd.img.old                                 3

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

sdc 


ADDITIONAL INFORMATION :
=================== log of boot-repair 2017-05-18__08h33 ===================
boot-repair version : 4ppa40
boot-sav version : 4ppa40
glade2script version : 3.2.3~ppa1
boot-sav-extra version : 4ppa40
boot-repair is executed in live-session (Ubuntu 17.04, zesty, Ubuntu, i686)
CPU op-mode(s):        32-bit
BOOT_IMAGE=/casper/vmlinuz file=/cdrom/preseed/lubuntu.seed boot=casper iso-scan/filename=/boot/grml/lubuntu-17.04-desktop-i386.iso quiet splash ---
ls: cannot access '/home/usr/.config': No such file or directory

=================== os-prober:
/dev/sda2:Ubuntu 16.04.2 LTS (16.04):Ubuntu:linux
/dev/sdb1:Ubuntu 16.10 (16.10):Ubuntu1:linux
/dev/sdb4:Ubuntu 16.10 (16.10):Ubuntu2:linux

=================== blkid:
/dev/loop0: UUID="2017-04-12-03-29-44-00" LABEL="Lubuntu 17.04 i386" TYPE="iso9660" PTUUID="67a62368" PTTYPE="dos"
/dev/loop1: TYPE="squashfs"
/dev/sda1: UUID="51cf1251-dcd8-458f-839a-77a38dcc06d0" TYPE="ext4" PARTUUID="ab3150f5-01"
/dev/sda2: UUID="6d2085bf-20ba-4296-866c-87c9a9e64da3" TYPE="ext4" PARTUUID="ab3150f5-02"
/dev/sda3: UUID="fcb583b3-2011-4aba-8923-a435046220cc" TYPE="swap" PARTUUID="ab3150f5-03"
/dev/sda4: UUID="c1e912a2-487e-42ab-8b1d-68d4b80c7748" TYPE="ext4" PARTUUID="ab3150f5-04"
/dev/sdb1: UUID="8b663c7f-fd77-4e3a-96c3-40bbb35457c0" TYPE="ext4" PARTUUID="acfe29b8-01"
/dev/sdb2: UUID="0d113278-d43f-44b4-84cf-6757a4f8ba99" TYPE="swap" PARTUUID="acfe29b8-02"
/dev/sdb3: LABEL="161" UUID="8db709c6-9cbc-4161-8d6f-3882e89dd322" TYPE="ext4" PARTUUID="acfe29b8-03"
/dev/sdb4: UUID="05105719-2200-4440-8c85-0ee0fed385ca" TYPE="ext4" PTTYPE="dos" PARTUUID="acfe29b8-04"
/dev/zram0: UUID="35959309-f84a-44b8-81a6-512b0e96a4c8" TYPE="swap"
/dev/zram1: UUID="215ecfc9-e3ab-44d2-bfcd-6b28412829b2" TYPE="swap"


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


=================== /isodevice/etc/grub.d/ :
drwxr-xr-x  2 root root     4096 Apr 27 09:57 grub.d
total 84
-rwxr-xr-x 1 root root  9791 Jan 13 16:33 00_header
-rwxr-xr-x 1 root root  6258 Mar 15  2016 05_debian_theme
-rwxr-xr-x 1 root root 12512 Mar 24 06:35 10_linux
-rwxr-xr-x 1 root root 11082 Jan 13 16:33 20_linux_xen
-rwxr-xr-x 1 root root  1992 Jan 28  2016 20_memtest86+
-rwxr-xr-x 1 root root 11692 Jan 13 16:33 30_os-prober
-rwxr-xr-x 1 root root  1418 Jan 13 16:33 30_uefi-firmware
-rwxr-xr-x 1 root root   214 Jan 13 16:33 40_custom
-rwxr-xr-x 1 root root   216 Jan 13 16:33 41_custom
-rwxr-xr-x 1 root root  3280 Jun 19  2015 42_grml
-rw-r--r-- 1 root root   483 Jan 13 16:33 README




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




=================== /media/lubuntu/8b663c7f-fd77-4e3a-96c3-40bbb35457c0/etc/grub.d/ :
drwxr-xr-x  2 root root     4096 Apr 23 11:11 grub.d
total 80
-rwxr-xr-x 1 root root  9791 Sep  6  2016 00_header
-rwxr-xr-x 1 root root  6258 Mar 15  2016 05_debian_theme
-rwxr-xr-x 1 root root 12261 Sep  6  2016 10_linux
-rwxr-xr-x 1 root root 11082 Sep  6  2016 20_linux_xen
-rwxr-xr-x 1 root root  1992 Jan 28  2016 20_memtest86+
-rwxr-xr-x 1 root root 11692 Sep  6  2016 30_os-prober
-rwxr-xr-x 1 root root  1418 Sep  6  2016 30_uefi-firmware
-rwxr-xr-x 1 root root   214 Sep  6  2016 40_custom
-rwxr-xr-x 1 root root   216 Sep  6  2016 41_custom
-rwxr-xr-x 1 root root  3280 Jun 19  2015 42_grml
-rw-r--r-- 1 root root   483 Sep  6  2016 README




=================== /media/lubuntu/8b663c7f-fd77-4e3a-96c3-40bbb35457c0/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"



/media/lubuntu/8b663c7f-fd77-4e3a-96c3-40bbb35457c0/boot/grub/menu.lst detected

=================== /media/lubuntu/05105719-2200-4440-8c85-0ee0fed385ca/etc/grub.d/ :
drwxr-xr-x  2 root root     4096 May 17 13:50 grub.d
drwxr-xr-x  2 root root     4096 May 17 13:49 grub.d.bak
total 72
-rwxr-xr-x 1 root root  9791 Sep 22  2016 00_header
-rwxr-xr-x 1 root root  6258 Mar 15  2016 05_debian_theme
-rwxr-xr-x 1 root root 12261 Sep 22  2016 10_linux
-rwxr-xr-x 1 root root 11082 Sep 22  2016 20_linux_xen
-rwxr-xr-x 1 root root 11692 Sep 22  2016 30_os-prober
-rwxr-xr-x 1 root root  1418 Sep 22  2016 30_uefi-firmware
-rwxr-xr-x 1 root root   214 Sep 22  2016 40_custom
-rwxr-xr-x 1 root root   216 Sep 22  2016 41_custom
-rw-r--r-- 1 root root   483 Sep 22  2016 README




=================== /media/lubuntu/05105719-2200-4440-8c85-0ee0fed385ca/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"




=================== UEFI/Legacy mode:
This live-session is not EFI-compatible.
SecureBoot maybe enabled.


=================== PARTITIONS & DISKS:
sda1	: sda,	maybesepboot,	no-grubenv	nogrub,	no-docgrub,	no-update-grub,	32,	no-boot,	no-os,	not--efi--part,	part-has-no-fstab,	part-has-no-fstab,	no-nt,	no-winload,	no-recov-nor-hid,	no-bmgr,	notwinboot,	nopakmgr,	nogrubinstall,	no---usr,	part-has-no-fstab,	not-sep-usr,	standard,	not-far,	/mnt/boot-sav/sda1.
sda2	: sda,	not-sepboot,	grubenv-ok	grub2,	signed grub-pc ,	update-grub,	32,	with-boot,	is-os,	not--efi--part,	fstab-without-boot,	fstab-without-efi,	no-nt,	no-winload,	no-recov-nor-hid,	no-bmgr,	notwinboot,	apt-get,	grub-install,	with--usr,	fstab-without-usr,	not-sep-usr,	standard,	farbios,	/isodevice.
sda4	: sda,	maybesepboot,	no-grubenv	nogrub,	no-docgrub,	no-update-grub,	32,	no-boot,	no-os,	not--efi--part,	part-has-no-fstab,	part-has-no-fstab,	no-nt,	no-winload,	no-recov-nor-hid,	no-bmgr,	notwinboot,	nopakmgr,	nogrubinstall,	no---usr,	part-has-no-fstab,	not-sep-usr,	standard,	farbios,	/mnt/boot-sav/sda4.
sdb1	: sdb,	not-sepboot,	grubenv-ok	grub2,	signed 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,	/media/lubuntu/8b663c7f-fd77-4e3a-96c3-40bbb35457c0.
sdb3	: sdb,	maybesepboot,	no-grubenv	nogrub,	no-docgrub,	no-update-grub,	32,	no-boot,	no-os,	not--efi--part,	part-has-no-fstab,	part-has-no-fstab,	no-nt,	no-winload,	no-recov-nor-hid,	no-bmgr,	notwinboot,	nopakmgr,	nogrubinstall,	no---usr,	part-has-no-fstab,	not-sep-usr,	standard,	farbios,	/media/lubuntu/161.
sdb4	: sdb,	not-sepboot,	grubenv-ok	grub2,	signed grub-pc ,	update-grub,	32,	with-boot,	is-os,	not--efi--part,	fstab-without-boot,	fstab-without-efi,	no-nt,	no-winload,	no-recov-nor-hid,	no-bmgr,	notwinboot,	apt-get,	grub-install,	with--usr,	fstab-without-usr,	not-sep-usr,	standard,	farbios,	/media/lubuntu/05105719-2200-4440-8c85-0ee0fed385ca.

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


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

Model: ATA ST9160310AS (scsi)
Disk /dev/sda: 160GB
Sector size (logical/physical): 512B/512B
Partition Table: msdos
Disk Flags:

Number  Start   End     Size    Type     File system     Flags
1      1049kB  87.7GB  87.7GB  primary  ext4
2      87.7GB  125GB   37.2GB  primary  ext4            boot
3      125GB   127GB   2097MB  primary  linux-swap(v1)
4      127GB   160GB   33.1GB  primary  ext4


Model: ATA WDC WD2500BEVT-2 (scsi)
Disk /dev/sdb: 250GB
Sector size (logical/physical): 512B/512B
Partition Table: msdos
Disk Flags:

Number  Start   End     Size    Type     File system     Flags
1      1049kB  87.0GB  87.0GB  primary  ext4
2      87.0GB  89.1GB  2147MB  primary  linux-swap(v1)
3      89.1GB  216GB   127GB   primary  ext4
4      216GB   250GB   33.8GB  primary  ext4            boot


Model: Unknown (unknown)
Disk /dev/zram1: 525MB
Sector size (logical/physical): 4096B/4096B
Partition Table: loop
Disk Flags:

Number  Start  End    Size   File system     Flags
1      0.00B  525MB  525MB  linux-swap(v1)


Model: Unknown (unknown)
Disk /dev/zram0: 525MB
Sector size (logical/physical): 4096B/4096B
Partition Table: loop
Disk Flags:

Number  Start  End    Size   File system     Flags
1      0.00B  525MB  525MB  linux-swap(v1)

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

BYT;
/dev/sda:160GB:scsi:512:512:msdos:ATA ST9160310AS:;
1:1049kB:87.7GB:87.7GB:ext4::;
2:87.7GB:125GB:37.2GB:ext4::boot;
3:125GB:127GB:2097MB:linux-swap(v1)::;
4:127GB:160GB:33.1GB:ext4::;

BYT;
/dev/sdb:250GB:scsi:512:512:msdos:ATA WDC WD2500BEVT-2:;
1:1049kB:87.0GB:87.0GB:ext4::;
2:87.0GB:89.1GB:2147MB:linux-swap(v1)::;
3:89.1GB:216GB:127GB:ext4::;
4:216GB:250GB:33.8GB:ext4::boot;

BYT;
/dev/zram1:525MB:unknown:4096:4096:loop:Unknown:;
1:0.00B:525MB:525MB:linux-swap(v1)::;

BYT;
/dev/zram0:525MB:unknown:4096:4096:loop:Unknown:;
1:0.00B:525MB:525MB:linux-swap(v1)::;

=================== lsblk:
KNAME TYPE FSTYPE     SIZE LABEL
loop0 loop iso9660    916M Lubuntu 17.04 i386
loop1 loop squashfs 876.7M
sda   disk          149.1G
sda1  part ext4      81.7G
sda2  part ext4      34.6G
sda3  part swap         2G
sda4  part ext4      30.8G
sdb   disk          232.9G
sdb1  part ext4        81G
sdb2  part swap         2G
sdb3  part ext4     118.4G 161
sdb4  part ext4      31.5G
zram0 disk          500.9M
zram1 disk          500.9M

KNAME ROTA RO RM STATE   MOUNTPOINT
loop0    1  0  0         /cdrom
loop1    1  1  0         /rofs
sda      1  0  0 running
sda1     1  0  0         /mnt/boot-sav/sda1
sda2     1  0  0         /isodevice
sda3     1  0  0         [SWAP]
sda4     1  0  0         /mnt/boot-sav/sda4
sdb      1  0  0 running
sdb1     1  0  0         /media/lubuntu/8b663c7f-fd77-4e3a-96c3-40bbb35457c0
sdb2     1  0  0         [SWAP]
sdb3     1  0  0         /media/lubuntu/161
sdb4     1  0  0         /media/lubuntu/05105719-2200-4440-8c85-0ee0fed385ca
zram0    0  0  0         [SWAP]
zram1    0  0  0         [SWAP]


=================== 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=1011312k,nr_inodes=211863,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=205148k,mode=755)
/dev/sda2 on /isodevice type ext4 (rw,relatime,data=ordered)
/dev/loop0 on /cdrom type iso9660 (ro,noatime)
/dev/loop1 on /rofs type squashfs (ro,noatime)
aufs on / type aufs (rw,noatime,si=3dc830e1)
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/systemd type cgroup (rw,nosuid,nodev,noexec,relatime,xattr,release_agent=/lib/systemd/systemd-cgroups-agent,name=systemd)
pstore on /sys/fs/pstore type pstore (rw,nosuid,nodev,noexec,relatime)
cgroup on /sys/fs/cgroup/cpu,cpuacct type cgroup (rw,nosuid,nodev,noexec,relatime,cpu,cpuacct)
cgroup on /sys/fs/cgroup/blkio type cgroup (rw,nosuid,nodev,noexec,relatime,blkio)
cgroup on /sys/fs/cgroup/net_cls,net_prio type cgroup (rw,nosuid,nodev,noexec,relatime,net_cls,net_prio)
cgroup on /sys/fs/cgroup/cpuset type cgroup (rw,nosuid,nodev,noexec,relatime,cpuset)
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/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/hugetlb type cgroup (rw,nosuid,nodev,noexec,relatime,hugetlb)
cgroup on /sys/fs/cgroup/perf_event type cgroup (rw,nosuid,nodev,noexec,relatime,perf_event)
systemd-1 on /proc/sys/fs/binfmt_misc type autofs (rw,relatime,fd=34,pgrp=1,timeout=0,minproto=5,maxproto=5,direct,pipe_ino=18209)
debugfs on /sys/kernel/debug type debugfs (rw,relatime)
mqueue on /dev/mqueue type mqueue (rw,relatime)
tracefs on /sys/kernel/debug/tracing type tracefs (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=205144k,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/lubuntu/05105719-2200-4440-8c85-0ee0fed385ca type ext4 (rw,nosuid,nodev,relatime,data=ordered,uhelper=udisks2)
/dev/sdb3 on /media/lubuntu/161 type ext4 (rw,nosuid,nodev,relatime,data=ordered,uhelper=udisks2)
/dev/sdb1 on /media/lubuntu/8b663c7f-fd77-4e3a-96c3-40bbb35457c0 type ext4 (rw,nosuid,nodev,relatime,data=ordered,uhelper=udisks2)
/dev/sda1 on /mnt/boot-sav/sda1 type ext4 (rw,relatime,data=ordered)
/dev/sda4 on /mnt/boot-sav/sda4 type ext4 (rw,relatime,data=ordered)


=================== ls:
/sys/block/sda (filtered):  alignment_offset badblocks bdi capability dev device discard_alignment events events_async events_poll_msecs ext_range holders inflight integrity power queue range removable ro sda1 sda2 sda3 sda4 size slaves stat subsystem trace uevent
/sys/block/sdb (filtered):  alignment_offset badblocks 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 size slaves stat subsystem trace uevent
/sys/block/sdc (filtered):  alignment_offset badblocks 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 char console core cpu cpu_dma_latency cuse disk dri ecryptfs fb0 fd full fuse hidraw0 hidraw1 hpet hwrng i2c-0 i2c-1 i2c-2 i2c-3 i2c-4 i2c-5 i2c-6 initctl input kmsg lightnvm log mapper mcelog mem memory_bandwidth mqueue net network_latency network_throughput null port ppp psaux ptmx pts random rfkill rtc rtc0 sda sda1 sda2 sda3 sda4 sdb sdb1 sdb2 sdb3 sdb4 sdc sg0 sg1 sg2 shm snapshot snd stderr stdin stdout uhid uinput urandom userio vfio vga_arbiter vhci vhost-net zero
ls /dev/mapper:  control

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

Filesystem     Type      Size  Used Avail Use% Mounted on
udev           devtmpfs  988M     0  988M   0% /dev
tmpfs          tmpfs     201M  8.7M  192M   5% /run
/dev/sda2      ext4       34G  8.7G   24G  28% /isodevice
/dev/loop0     iso9660   916M  916M     0 100% /cdrom
/dev/loop1     squashfs  877M  877M     0 100% /rofs
aufs           aufs     1002M  234M  768M  24% /
tmpfs          tmpfs    1002M   32M  971M   4% /dev/shm
tmpfs          tmpfs     5.0M  4.0K  5.0M   1% /run/lock
tmpfs          tmpfs    1002M     0 1002M   0% /sys/fs/cgroup
tmpfs          tmpfs    1002M  4.0K 1002M   1% /tmp
tmpfs          tmpfs     201M  8.0K  201M   1% /run/user/999
/dev/sdb4      ext4       31G   18G   13G  59% /media/lubuntu/05105719-2200-4440-8c85-0ee0fed385ca
/dev/sdb3      ext4      116G  109G  649M 100% /media/lubuntu/161
/dev/sdb1      ext4       80G  8.8G   67G  12% /media/lubuntu/8b663c7f-fd77-4e3a-96c3-40bbb35457c0
/dev/sda1      ext4       80G   28G   48G  37% /mnt/boot-sav/sda1
/dev/sda4      ext4       31G   15G   15G  49% /mnt/boot-sav/sda4

=================== fdisk -l:
Disk /dev/loop0: 916 MiB, 960495616 bytes, 1875968 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: 0x67a62368

Device       Boot Start     End Sectors  Size Id Type
/dev/loop0p1 *       64 1875967 1875904  916M 17 Hidden HPFS/NTFS


Disk /dev/loop1: 876.7 MiB, 919302144 bytes, 1795512 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: 149.1 GiB, 160041885696 bytes, 312581808 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: 0xab3150f5

Device     Boot     Start       End   Sectors  Size Id Type
/dev/sda1            2048 171235327 171233280 81.7G 83 Linux
/dev/sda2  *    171235328 243857407  72622080 34.6G 83 Linux
/dev/sda3       243857408 247953407   4096000    2G 82 Linux swap / Solaris
/dev/sda4       247953408 312580095  64626688 30.8G 83 Linux


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

Device     Boot     Start       End   Sectors   Size Id Type
/dev/sdb1            2048 169871359 169869312    81G 83 Linux
/dev/sdb2       169871360 174065663   4194304     2G 82 Linux swap / Solaris
/dev/sdb3       174065664 422387711 248322048 118.4G 83 Linux
/dev/sdb4  *    422387712 488396799  66009088  31.5G 83 Linux


Disk /dev/zram0: 500.9 MiB, 525176832 bytes, 128217 sectors
Units: sectors of 1 * 4096 = 4096 bytes
Sector size (logical/physical): 4096 bytes / 4096 bytes
I/O size (minimum/optimal): 4096 bytes / 4096 bytes


Disk /dev/zram1: 500.9 MiB, 525176832 bytes, 128217 sectors
Units: sectors of 1 * 4096 = 4096 bytes
Sector size (logical/physical): 4096 bytes / 4096 bytes
I/O size (minimum/optimal): 4096 bytes / 4096 bytes



(zenity:24003): Gtk-WARNING **: Theme parsing error: gtk-widgets.css:23:18: not a number

(zenity:24003): Gtk-WARNING **: Theme parsing error: gtk-widgets.css:23:18: Expected a string.

(zenity:24003): Gtk-WARNING **: Theme parsing error: gtk-widgets.css:815:10: not a number

(zenity:24003): Gtk-WARNING **: Theme parsing error: gtk-widgets.css:815:24: Using Pango syntax for the font: style property is deprecated; please use CSS syntax

(zenity:24003): Gtk-WARNING **: Theme parsing error: gtk-widgets.css:1953:14: not a number

(zenity:24003): Gtk-WARNING **: Theme parsing error: gtk-widgets.css:1953:14: Expected a string.

(zenity:24003): Gtk-WARNING **: Theme parsing error: nautilus.css:50:71: Using one color stop with linear-gradient() is deprecated.

(zenity:24003): Gtk-WARNING **: Theme parsing error: nautilus.css:51:71: Using one color stop with linear-gradient() is deprecated.

(zenity:24003): Gtk-WARNING **: Theme parsing error: gtk-lubuntu.css:252:14: not a number

(zenity:24003): Gtk-WARNING **: Theme parsing error: gtk-lubuntu.css:252:14: Expected a string.
Gtk-Message: GtkDialog mapped without a transient parent. This is discouraged.
User choice: Is sda (160GB) a removable disk? no



(zenity:26454): Gtk-WARNING **: Theme parsing error: gtk-widgets.css:23:18: not a number

(zenity:26454): Gtk-WARNING **: Theme parsing error: gtk-widgets.css:23:18: Expected a string.

(zenity:26454): Gtk-WARNING **: Theme parsing error: gtk-widgets.css:815:10: not a number

(zenity:26454): Gtk-WARNING **: Theme parsing error: gtk-widgets.css:815:24: Using Pango syntax for the font: style property is deprecated; please use CSS syntax

(zenity:26454): Gtk-WARNING **: Theme parsing error: gtk-widgets.css:1953:14: not a number

(zenity:26454): Gtk-WARNING **: Theme parsing error: gtk-widgets.css:1953:14: Expected a string.

(zenity:26454): Gtk-WARNING **: Theme parsing error: nautilus.css:50:71: Using one color stop with linear-gradient() is deprecated.

(zenity:26454): Gtk-WARNING **: Theme parsing error: nautilus.css:51:71: Using one color stop with linear-gradient() is deprecated.

(zenity:26454): Gtk-WARNING **: Theme parsing error: gtk-lubuntu.css:252:14: not a number

(zenity:26454): Gtk-WARNING **: Theme parsing error: gtk-lubuntu.css:252:14: Expected a string.
Gtk-Message: GtkDialog mapped without a transient parent. This is discouraged.


=================== Default settings of Boot Repair
The default repair of the Boot-Repair utility would purge (in order to) and reinstall the grub2 of sda2 into the MBRs of all disks (except USB without OS).
Additional repair would be performed: unhide-bootmenu-10s


=================== Final advice in case of suggested repair
Please do not forget to make your BIOS boot on sda (160GB) disk!


=================== User settings
The settings chosen by the user will purge (in order to fix legacy files) and reinstall the grub2 of sdb1 into the MBR of sdb, using the following options:     --disk-module=ata
Additional repair will be performed: unhide-bootmenu-10s


umount: /isodevice: target is busy
(In some cases useful info about processes that
use the device is found by lsof(8) or fuser(1).)
chroot /media/lubuntu/8b663c7f-fd77-4e3a-96c3-40bbb35457c0 apt-get -y --force-yes update
Purge the GRUB of sdb1
grub-pc available


The following additional packages will be installed:
grub-common grub-pc-bin grub2-common
Suggested packages:
multiboot-doc grub-emu xorriso desktop-base
The following packages will be upgraded:
grub-common grub-pc grub-pc-bin grub2-common
4 upgraded, 0 newly installed, 0 to remove and 101 not upgraded.
W: --force-yes is deprecated, use one of the options starting with --allow instead.
DEBCHECK debOK, grub-pc
DEBCHECK debOK
shim-signed NOT available (apt-cache policy  problem)
linux-signed-generic NOT available (apt-cache policy  problem)
Please type: sudo chroot "/media/lubuntu/8b663c7f-fd77-4e3a-96c3-40bbb35457c0" dpkg --configure -ansudo chroot "/media/lubuntu/8b663c7f-fd77-4e3a-96c3-40bbb35457c0" apt-get install -fynsudo chroot "/media/lubuntu/8b663c7f-fd77-4e3a-96c3-40bbb35457c0" apt-get purge -y --force-yes grub*-common grub-common:i386

=================== /isodevice/etc/grub.d/ :
drwxr-xr-x  2 root root     4096 Apr 27 09:57 grub.d
total 84
-rwxr-xr-x 1 root root  9791 Jan 13 16:33 00_header
-rwxr-xr-x 1 root root  6258 Mar 15  2016 05_debian_theme
-rwxr-xr-x 1 root root 12512 Mar 24 06:35 10_linux
-rwxr-xr-x 1 root root 11082 Jan 13 16:33 20_linux_xen
-rwxr-xr-x 1 root root  1992 Jan 28  2016 20_memtest86+
-rwxr-xr-x 1 root root 11692 Jan 13 16:33 30_os-prober
-rwxr-xr-x 1 root root  1418 Jan 13 16:33 30_uefi-firmware
-rwxr-xr-x 1 root root   214 Jan 13 16:33 40_custom
-rwxr-xr-x 1 root root   216 Jan 13 16:33 41_custom
-rwxr-xr-x 1 root root  3280 Jun 19  2015 42_grml
-rw-r--r-- 1 root root   483 Jan 13 16:33 README




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




=================== /media/lubuntu/8b663c7f-fd77-4e3a-96c3-40bbb35457c0/etc/grub.d/ :
drwxr-xr-x  2 root root     4096 May 18 08:44 grub.d
total 4
-rwxr-xr-x 1 root root 1992 Jan 28  2016 20_memtest86+


ls: cannot access '/media/lubuntu/05105719-2200-4440-8c85-0ee0fed385ca/': No such file or directory
Then type: sudo chroot "/media/lubuntu/8b663c7f-fd77-4e3a-96c3-40bbb35457c0" apt-get install -y --force-yes grub-pc

=================== /isodevice/etc/grub.d/ :
drwxr-xr-x  2 root root     4096 Apr 27 09:57 grub.d
total 84
-rwxr-xr-x 1 root root  9791 Jan 13 16:33 00_header
-rwxr-xr-x 1 root root  6258 Mar 15  2016 05_debian_theme
-rwxr-xr-x 1 root root 12512 Mar 24 06:35 10_linux
-rwxr-xr-x 1 root root 11082 Jan 13 16:33 20_linux_xen
-rwxr-xr-x 1 root root  1992 Jan 28  2016 20_memtest86+
-rwxr-xr-x 1 root root 11692 Jan 13 16:33 30_os-prober
-rwxr-xr-x 1 root root  1418 Jan 13 16:33 30_uefi-firmware
-rwxr-xr-x 1 root root   214 Jan 13 16:33 40_custom
-rwxr-xr-x 1 root root   216 Jan 13 16:33 41_custom
-rwxr-xr-x 1 root root  3280 Jun 19  2015 42_grml
-rw-r--r-- 1 root root   483 Jan 13 16:33 README




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




=================== /media/lubuntu/8b663c7f-fd77-4e3a-96c3-40bbb35457c0/etc/grub.d/ :
drwxr-xr-x  2 root root     4096 May 18 08:45 grub.d
drwxr-xr-x  2 root root     4096 May 18 08:44 grub.d.bak
total 72
-rwxr-xr-x 1 root root  9791 Sep 22  2016 00_header
-rwxr-xr-x 1 root root  6258 Mar 15  2016 05_debian_theme
-rwxr-xr-x 1 root root 12261 Sep 22  2016 10_linux
-rwxr-xr-x 1 root root 11082 Sep 22  2016 20_linux_xen
-rwxr-xr-x 1 root root 11692 Sep 22  2016 30_os-prober
-rwxr-xr-x 1 root root  1418 Sep 22  2016 30_uefi-firmware
-rwxr-xr-x 1 root root   214 Sep 22  2016 40_custom
-rwxr-xr-x 1 root root   216 Sep 22  2016 41_custom
-rw-r--r-- 1 root root   483 Sep 22  2016 README




=================== /media/lubuntu/8b663c7f-fd77-4e3a-96c3-40bbb35457c0/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"



ls: cannot access '/media/lubuntu/05105719-2200-4440-8c85-0ee0fed385ca/': No such file or directory
Unhide GRUB boot menu in sdb1/etc/default/grub

=================== /isodevice/etc/grub.d/ :
drwxr-xr-x  2 root root     4096 Apr 27 09:57 grub.d
total 84
-rwxr-xr-x 1 root root  9791 Jan 13 16:33 00_header
-rwxr-xr-x 1 root root  6258 Mar 15  2016 05_debian_theme
-rwxr-xr-x 1 root root 12512 Mar 24 06:35 10_linux
-rwxr-xr-x 1 root root 11082 Jan 13 16:33 20_linux_xen
-rwxr-xr-x 1 root root  1992 Jan 28  2016 20_memtest86+
-rwxr-xr-x 1 root root 11692 Jan 13 16:33 30_os-prober
-rwxr-xr-x 1 root root  1418 Jan 13 16:33 30_uefi-firmware
-rwxr-xr-x 1 root root   214 Jan 13 16:33 40_custom
-rwxr-xr-x 1 root root   216 Jan 13 16:33 41_custom
-rwxr-xr-x 1 root root  3280 Jun 19  2015 42_grml
-rw-r--r-- 1 root root   483 Jan 13 16:33 README




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




=================== /media/lubuntu/8b663c7f-fd77-4e3a-96c3-40bbb35457c0/etc/grub.d/ :
drwxr-xr-x  2 root root     4096 May 18 08:45 grub.d
drwxr-xr-x  2 root root     4096 May 18 08:44 grub.d.bak
total 72
-rwxr-xr-x 1 root root  9791 Sep 22  2016 00_header
-rwxr-xr-x 1 root root  6258 Mar 15  2016 05_debian_theme
-rwxr-xr-x 1 root root 12261 Sep 22  2016 10_linux
-rwxr-xr-x 1 root root 11082 Sep 22  2016 20_linux_xen
-rwxr-xr-x 1 root root 11692 Sep 22  2016 30_os-prober
-rwxr-xr-x 1 root root  1418 Sep 22  2016 30_uefi-firmware
-rwxr-xr-x 1 root root   214 Sep 22  2016 40_custom
-rwxr-xr-x 1 root root   216 Sep 22  2016 41_custom
-rw-r--r-- 1 root root   483 Sep 22  2016 README




=================== /media/lubuntu/8b663c7f-fd77-4e3a-96c3-40bbb35457c0/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"



ls: cannot access '/media/lubuntu/05105719-2200-4440-8c85-0ee0fed385ca/': No such file or directory
lspci: Unable to load libkmod resources: error -12

*******lspci -nnk | grep -iA3 vga
00:02.0 VGA compatible controller [0300]: Intel Corporation Mobile 945GSE Express Integrated Graphics Controller [8086:27ae] (rev 03)
Subsystem: ASUSTeK Computer Inc. Mobile 945GSE Express Integrated Graphics Controller [1043:1252]
Kernel driver in use: i915
00:02.1 Display controller [0380]: Intel Corporation Mobile 945GM/GMS/GME, 943/940GML Express Integrated Graphics Controller [8086:27a6] (rev 03)
*******

grub-install --version
grub-install (GRUB) 2.02~beta2-36ubuntu11.2,grub-install (GRUB) 2.

Reinstall the GRUB of sdb1 into the MBR of sdb
Installing for i386-pc platform.
Installation finished. No error reported.
grub-install --disk-module=ata /dev/sdb: exit code of grub-install /dev/sdb:0

chroot /media/lubuntu/8b663c7f-fd77-4e3a-96c3-40bbb35457c0 update-grub
Generating grub configuration file ...
Found linux image: /boot/vmlinuz-4.4.0-59-generic
Found initrd image: /boot/initrd.img-4.4.0-59-generic
Found linux image: /boot/vmlinuz-4.4.0-53-generic
Found initrd image: /boot/initrd.img-4.4.0-53-generic
Found linux image: /boot/vmlinuz-4.4.0-52-generic
Found initrd image: /boot/initrd.img-4.4.0-52-generic
Found linux image: /boot/vmlinuz-4.4.0-51-generic
Found initrd image: /boot/initrd.img-4.4.0-51-generic
Found Ubuntu 16.04.2 LTS (16.04) on /dev/sda2
Found Ubuntu 16.10 (16.10) on /dev/sdb4
Unhide GRUB boot menu in sdb1/boot/grub/grub.cfg

Boot successfully repaired.

You can now reboot your computer.
Please do not forget to make your BIOS boot on sdb (250GB) disk!

bootinfo.log

=================== log of boot-repair 2017-05-18__08h33 ===================
boot-repair version : 4ppa40
boot-sav version : 4ppa40
glade2script version : 3.2.3~ppa1
boot-sav-extra version : 4ppa40
SET@_label0.set_text('''Scanning systems. This may require several minutes...''')
SET@_label0.set_text('''Scanning systems (os-prober). This may require several minutes...''')
[debug]Delete the content of TMP_FOLDER_TO_BE_CLEARED and put os-prober in memory
SET@_label0.set_text('''Scanning systems (mount). This may require several minutes...''')
boot-repair is executed in live-session (Ubuntu 17.04, zesty, Ubuntu, i686)
CPU op-mode(s):        32-bit
BOOT_IMAGE=/casper/vmlinuz file=/cdrom/preseed/lubuntu.seed boot=casper iso-scan/filename=/boot/grml/lubuntu-17.04-desktop-i386.iso quiet splash ---
ls: cannot access '/home/usr/.config': No such file or directory
[debug]part : loop0
[debug]part : loop1
[debug]part : sda1
[debug]Disk 1 is sda
[debug]Partition 1 is sda1 (sda)
[debug]part : sda2
[debug]Partition 2 is sda2 (sda)
[debug]part : sda3
[debug]part : sda4
[debug]Partition 3 is sda4 (sda)
[debug]part : sdb1
[debug]Disk 2 is sdb
[debug]Partition 4 is sdb1 (sdb)
[debug]part : sdb2
[debug]part : sdb3
[debug]Partition 5 is sdb3 (sdb)
[debug]part : sdb4
[debug]Partition 6 is sdb4 (sdb)
[debug]part : zram0
[debug]part : zram1
[debug]Mount all blkid partitions except the ones already mounted
[debug]BLKID Mount point of sda1 is: /mnt/boot-sav/sda1
[debug]DF/dev/sda2       35478152 9093572  24552644  28% /isodevice
[debug]BLKID Mount point of sda2 is: /isodevice
[debug]BLKID Mount point of sda4 is: /mnt/boot-sav/sda4
[debug]DF/dev/sdb1       83077408 9219356  69594936  12% /media/lubuntu/8b663c7f-fd77-4e3a-96c3-40bbb35457c0
[debug]BLKID Mount point of sdb1 is: /media/lubuntu/8b663c7f-fd77-4e3a-96c3-40bbb35457c0
[debug]DF/dev/sdb3      121162400 114274120    663848 100% /media/lubuntu/161
[debug]BLKID Mount point of sdb3 is: /media/lubuntu/161
[debug]DF/dev/sdb4       32355120 17852284  12836228  59% /media/lubuntu/05105719-2200-4440-8c85-0ee0fed385ca
[debug]BLKID Mount point of sdb4 is: /media/lubuntu/05105719-2200-4440-8c85-0ee0fed385ca
[debug]Remove_mislocated_stage1
[debug]PART_UUID of sda1 is 51cf1251-dcd8-458f-839a-77a38dcc06d0
[debug]PART_UUID of sda2 is 6d2085bf-20ba-4296-866c-87c9a9e64da3
[debug]PART_UUID of sda4 is c1e912a2-487e-42ab-8b1d-68d4b80c7748
[debug]PART_UUID of sdb1 is 8b663c7f-fd77-4e3a-96c3-40bbb35457c0
[debug]PART_UUID of sdb3 is 8db709c6-9cbc-4161-8d6f-3882e89dd322
[debug]PART_UUID of sdb4 is 05105719-2200-4440-8c85-0ee0fed385ca
[debug] BYTES_BEFORE_PART[1] (sda) = 2048 sectors * 512 bytes = 1048576 bytes.
[debug] BYTES_BEFORE_PART[2] (sdb) = 2048 sectors * 512 bytes = 1048576 bytes.

=================== os-prober:
/dev/sda2:Ubuntu 16.04.2 LTS (16.04):Ubuntu:linux
/dev/sdb1:Ubuntu 16.10 (16.10):Ubuntu1:linux
/dev/sdb4:Ubuntu 16.10 (16.10):Ubuntu2:linux

=================== blkid:
/dev/loop0: UUID="2017-04-12-03-29-44-00" LABEL="Lubuntu 17.04 i386" TYPE="iso9660" PTUUID="67a62368" PTTYPE="dos"
/dev/loop1: TYPE="squashfs"
/dev/sda1: UUID="51cf1251-dcd8-458f-839a-77a38dcc06d0" TYPE="ext4" PARTUUID="ab3150f5-01"
/dev/sda2: UUID="6d2085bf-20ba-4296-866c-87c9a9e64da3" TYPE="ext4" PARTUUID="ab3150f5-02"
/dev/sda3: UUID="fcb583b3-2011-4aba-8923-a435046220cc" TYPE="swap" PARTUUID="ab3150f5-03"
/dev/sda4: UUID="c1e912a2-487e-42ab-8b1d-68d4b80c7748" TYPE="ext4" PARTUUID="ab3150f5-04"
/dev/sdb1: UUID="8b663c7f-fd77-4e3a-96c3-40bbb35457c0" TYPE="ext4" PARTUUID="acfe29b8-01"
/dev/sdb2: UUID="0d113278-d43f-44b4-84cf-6757a4f8ba99" TYPE="swap" PARTUUID="acfe29b8-02"
/dev/sdb3: LABEL="161" UUID="8db709c6-9cbc-4161-8d6f-3882e89dd322" TYPE="ext4" PARTUUID="acfe29b8-03"
/dev/sdb4: UUID="05105719-2200-4440-8c85-0ee0fed385ca" TYPE="ext4" PTTYPE="dos" PARTUUID="acfe29b8-04"
/dev/zram0: UUID="35959309-f84a-44b8-81a6-512b0e96a4c8" TYPE="swap"
/dev/zram1: UUID="215ecfc9-e3ab-44d2-bfcd-6b28412829b2" TYPE="swap"

[debug]sda2 contains Ubuntu 16.04.2 LTS (linux)
[debug]sdb1 contains Ubuntu 16.10 (linux)
[debug]sdb4 contains Ubuntu 16.10 (linux)

	2 disks with OS, 3 OS : 3 Linux, 0 MacOS, 0 Windows, 0 unknown type OS.
	
[debug]Mount all blkid partitions except the ones already mounted
[debug]DF/dev/sda1       83747056 29269476  50180364  37% /mnt/boot-sav/sda1
[debug]BLKID Mount point of sda1 is: /mnt/boot-sav/sda1
[debug]DF/dev/sda2       35478152 9093572  24552644  28% /isodevice
[debug]BLKID Mount point of sda2 is: /isodevice
[debug]Mount path of sda2 is: /isodevice
[debug]DF/dev/sda4       31674200 14700704  15341448  49% /mnt/boot-sav/sda4
[debug]BLKID Mount point of sda4 is: /mnt/boot-sav/sda4
[debug]DF/dev/sdb1       83077408 9219356  69594936  12% /media/lubuntu/8b663c7f-fd77-4e3a-96c3-40bbb35457c0
[debug]BLKID Mount point of sdb1 is: /media/lubuntu/8b663c7f-fd77-4e3a-96c3-40bbb35457c0
[debug]Mount path of sdb1 is: /media/lubuntu/8b663c7f-fd77-4e3a-96c3-40bbb35457c0
[debug]DF/dev/sdb3      121162400 114274120    663848 100% /media/lubuntu/161
[debug]BLKID Mount point of sdb3 is: /media/lubuntu/161
[debug]DF/dev/sdb4       32355120 17852284  12836228  59% /media/lubuntu/05105719-2200-4440-8c85-0ee0fed385ca
[debug]BLKID Mount point of sdb4 is: /media/lubuntu/05105719-2200-4440-8c85-0ee0fed385ca
[debug]Mount path of sdb4 is: /media/lubuntu/05105719-2200-4440-8c85-0ee0fed385ca
[debug]PART_WITH_OS of sda1 : no-os
[debug]PART_WITH_OS of sda2 : is-os
[debug]PART_WITH_OS of sda4 : no-os
[debug]PART_WITH_OS of sdb1 : is-os
[debug]PART_WITH_OS of sdb3 : no-os
[debug]PART_WITH_OS of sdb4 : is-os
[debug]sda contains minimum one OS
[debug]sdb contains minimum one OS
1+0 records in
1+0 records out
1048576 bytes (1.0 MB, 1.0 MiB) copied, 0.0445881 s, 23.5 MB/s
[debug]/var/log/boot-sav/log/2017-05-18__08h33boot-repair23/sda/partition_table.dmp created
1+0 records in
1+0 records out
1048576 bytes (1.0 MB, 1.0 MiB) copied, 0.037125 s, 28.2 MB/s
[debug]/var/log/boot-sav/log/2017-05-18__08h33boot-repair23/sdb/partition_table.dmp created
[debug]CREATES A LIST OF DISKS CONTAINING BACKUP
[debug] Total of 1 OS detected on sda disk.
[debug] Total of 2 OS detected on sdb disk.
SET@_label0.set_text('''Scanning systems. This may require several minutes...''')
[debug] sda1 ends at 87672487424GB. not-far
[debug] sda1 ends at 87672487424GB. not-far
[debug] partedlm
[debug] BYT; <BYT;>1>
[debug] /dev/sda:160GB:scsi:512:512:msdos:ATA ST9160310AS:; </dev/sda>1>
[debug] 1:1049kB:87.7GB:87.7GB:ext4::; <1>1>
[debug] 2:87.7GB:125GB:37.2GB:ext4::boot; <2>1>
[debug] 3:125GB:127GB:2097MB:linux-swap(v1)::; <3>1>
[debug] 4:127GB:160GB:33.1GB:ext4::; <4>1>
[debug]  <>1>
[debug] BYT; <BYT;>1>
[debug] /dev/sdb:250GB:scsi:512:512:msdos:ATA WDC WD2500BEVT-2:; </dev/sdb>1>
[debug] 1:1049kB:87.0GB:87.0GB:ext4::; <1>1>
[debug] 2:87.0GB:89.1GB:2147MB:linux-swap(v1)::; <2>1>
[debug] 3:89.1GB:216GB:127GB:ext4::; <3>1>
[debug] 4:216GB:250GB:33.8GB:ext4::boot; <4>1>
[debug]  <>1>
[debug] BYT; <BYT;>1>
[debug] /dev/zram1:525MB:unknown:4096:4096:loop:Unknown:; </dev/zram1>1>
[debug] 1:0.00B:525MB:525MB:linux-swap(v1)::; <1>1>
[debug]  <>1>
[debug] BYT; <BYT;>1>
[debug] /dev/zram0:525MB:unknown:4096:4096:loop:Unknown:; </dev/zram0>1>
[debug] 1:0.00B:525MB:525MB:linux-swap(v1)::; <1>1>

=================== /isodevice/etc/grub.d/ :
drwxr-xr-x  2 root root     4096 Apr 27 09:57 grub.d
total 84
-rwxr-xr-x 1 root root  9791 Jan 13 16:33 00_header
-rwxr-xr-x 1 root root  6258 Mar 15  2016 05_debian_theme
-rwxr-xr-x 1 root root 12512 Mar 24 06:35 10_linux
-rwxr-xr-x 1 root root 11082 Jan 13 16:33 20_linux_xen
-rwxr-xr-x 1 root root  1992 Jan 28  2016 20_memtest86+
-rwxr-xr-x 1 root root 11692 Jan 13 16:33 30_os-prober
-rwxr-xr-x 1 root root  1418 Jan 13 16:33 30_uefi-firmware
-rwxr-xr-x 1 root root   214 Jan 13 16:33 40_custom
-rwxr-xr-x 1 root root   216 Jan 13 16:33 41_custom
-rwxr-xr-x 1 root root  3280 Jun 19  2015 42_grml
-rw-r--r-- 1 root root   483 Jan 13 16:33 README




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



[debug] sda2 ends at 124854992384GB. farbios
[debug] sda2 ends at 124854992384GB. farbios
[debug] partedlm
[debug] BYT; <BYT;>2>
[debug] /dev/sda:160GB:scsi:512:512:msdos:ATA ST9160310AS:; </dev/sda>2>
[debug] 1:1049kB:87.7GB:87.7GB:ext4::; <1>2>
[debug] 2:87.7GB:125GB:37.2GB:ext4::boot; <2>2>
[debug] 3:125GB:127GB:2097MB:linux-swap(v1)::; <3>2>
[debug] 4:127GB:160GB:33.1GB:ext4::; <4>2>
[debug]  <>2>
[debug] BYT; <BYT;>2>
[debug] /dev/sdb:250GB:scsi:512:512:msdos:ATA WDC WD2500BEVT-2:; </dev/sdb>2>
[debug] 1:1049kB:87.0GB:87.0GB:ext4::; <1>2>
[debug] 2:87.0GB:89.1GB:2147MB:linux-swap(v1)::; <2>2>
[debug] 3:89.1GB:216GB:127GB:ext4::; <3>2>
[debug] 4:216GB:250GB:33.8GB:ext4::boot; <4>2>
[debug]  <>2>
[debug] BYT; <BYT;>2>
[debug] /dev/zram1:525MB:unknown:4096:4096:loop:Unknown:; </dev/zram1>2>
[debug] 1:0.00B:525MB:525MB:linux-swap(v1)::; <1>2>
[debug]  <>2>
[debug] BYT; <BYT;>2>
[debug] /dev/zram0:525MB:unknown:4096:4096:loop:Unknown:; </dev/zram0>2>
[debug] 1:0.00B:525MB:525MB:linux-swap(v1)::; <1>2>
[debug] sda4 ends at 160041008640GB. farbios
[debug] sda4 ends at 160041008640GB. farbios
[debug] partedlm
[debug] BYT; <BYT;>4>
[debug] /dev/sda:160GB:scsi:512:512:msdos:ATA ST9160310AS:; </dev/sda>4>
[debug] 1:1049kB:87.7GB:87.7GB:ext4::; <1>4>
[debug] 2:87.7GB:125GB:37.2GB:ext4::boot; <2>4>
[debug] 3:125GB:127GB:2097MB:linux-swap(v1)::; <3>4>
[debug] 4:127GB:160GB:33.1GB:ext4::; <4>4>
[debug]  <>4>
[debug] BYT; <BYT;>4>
[debug] /dev/sdb:250GB:scsi:512:512:msdos:ATA WDC WD2500BEVT-2:; </dev/sdb>4>
[debug] 1:1049kB:87.0GB:87.0GB:ext4::; <1>4>
[debug] 2:87.0GB:89.1GB:2147MB:linux-swap(v1)::; <2>4>
[debug] 3:89.1GB:216GB:127GB:ext4::; <3>4>
[debug] 4:216GB:250GB:33.8GB:ext4::boot; <4>4>
[debug]  <>4>
[debug] BYT; <BYT;>4>
[debug] /dev/zram1:525MB:unknown:4096:4096:loop:Unknown:; </dev/zram1>4>
[debug] 1:0.00B:525MB:525MB:linux-swap(v1)::; <1>4>
[debug]  <>4>
[debug] BYT; <BYT;>4>
[debug] /dev/zram0:525MB:unknown:4096:4096:loop:Unknown:; </dev/zram0>4>
[debug] 1:0.00B:525MB:525MB:linux-swap(v1)::; <1>4>

=================== /media/lubuntu/8b663c7f-fd77-4e3a-96c3-40bbb35457c0/etc/grub.d/ :
drwxr-xr-x  2 root root     4096 Apr 23 11:11 grub.d
total 80
-rwxr-xr-x 1 root root  9791 Sep  6  2016 00_header
-rwxr-xr-x 1 root root  6258 Mar 15  2016 05_debian_theme
-rwxr-xr-x 1 root root 12261 Sep  6  2016 10_linux
-rwxr-xr-x 1 root root 11082 Sep  6  2016 20_linux_xen
-rwxr-xr-x 1 root root  1992 Jan 28  2016 20_memtest86+
-rwxr-xr-x 1 root root 11692 Sep  6  2016 30_os-prober
-rwxr-xr-x 1 root root  1418 Sep  6  2016 30_uefi-firmware
-rwxr-xr-x 1 root root   214 Sep  6  2016 40_custom
-rwxr-xr-x 1 root root   216 Sep  6  2016 41_custom
-rwxr-xr-x 1 root root  3280 Jun 19  2015 42_grml
-rw-r--r-- 1 root root   483 Sep  6  2016 README




=================== /media/lubuntu/8b663c7f-fd77-4e3a-96c3-40bbb35457c0/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"



/media/lubuntu/8b663c7f-fd77-4e3a-96c3-40bbb35457c0/boot/grub/menu.lst detected
[debug] sdb1 ends at 86974135808GB. not-far
[debug] sdb1 ends at 86974135808GB. not-far
[debug] partedlm
[debug] BYT; <BYT;>1>
[debug] /dev/sda:160GB:scsi:512:512:msdos:ATA ST9160310AS:; </dev/sda>1>
[debug] 1:1049kB:87.7GB:87.7GB:ext4::; <1>1>
[debug] 2:87.7GB:125GB:37.2GB:ext4::boot; <2>1>
[debug] 3:125GB:127GB:2097MB:linux-swap(v1)::; <3>1>
[debug] 4:127GB:160GB:33.1GB:ext4::; <4>1>
[debug]  <>1>
[debug] BYT; <BYT;>1>
[debug] /dev/sdb:250GB:scsi:512:512:msdos:ATA WDC WD2500BEVT-2:; </dev/sdb>1>
[debug] 1:1049kB:87.0GB:87.0GB:ext4::; <1>1>
[debug] 2:87.0GB:89.1GB:2147MB:linux-swap(v1)::; <2>1>
[debug] 3:89.1GB:216GB:127GB:ext4::; <3>1>
[debug] 4:216GB:250GB:33.8GB:ext4::boot; <4>1>
[debug]  <>1>
[debug] BYT; <BYT;>1>
[debug] /dev/zram1:525MB:unknown:4096:4096:loop:Unknown:; </dev/zram1>1>
[debug] 1:0.00B:525MB:525MB:linux-swap(v1)::; <1>1>
[debug]  <>1>
[debug] BYT; <BYT;>1>
[debug] /dev/zram0:525MB:unknown:4096:4096:loop:Unknown:; </dev/zram0>1>
[debug] 1:0.00B:525MB:525MB:linux-swap(v1)::; <1>1>
[debug] sdb3 ends at 216262508032GB. farbios
[debug] sdb3 ends at 216262508032GB. farbios
[debug] partedlm
[debug] BYT; <BYT;>3>
[debug] /dev/sda:160GB:scsi:512:512:msdos:ATA ST9160310AS:; </dev/sda>3>
[debug] 1:1049kB:87.7GB:87.7GB:ext4::; <1>3>
[debug] 2:87.7GB:125GB:37.2GB:ext4::boot; <2>3>
[debug] 3:125GB:127GB:2097MB:linux-swap(v1)::; <3>3>
[debug] 4:127GB:160GB:33.1GB:ext4::; <4>3>
[debug]  <>3>
[debug] BYT; <BYT;>3>
[debug] /dev/sdb:250GB:scsi:512:512:msdos:ATA WDC WD2500BEVT-2:; </dev/sdb>3>
[debug] 1:1049kB:87.0GB:87.0GB:ext4::; <1>3>
[debug] 2:87.0GB:89.1GB:2147MB:linux-swap(v1)::; <2>3>
[debug] 3:89.1GB:216GB:127GB:ext4::; <3>3>
[debug] 4:216GB:250GB:33.8GB:ext4::boot; <4>3>
[debug]  <>3>
[debug] BYT; <BYT;>3>
[debug] /dev/zram1:525MB:unknown:4096:4096:loop:Unknown:; </dev/zram1>3>
[debug] 1:0.00B:525MB:525MB:linux-swap(v1)::; <1>3>
[debug]  <>3>
[debug] BYT; <BYT;>3>
[debug] /dev/zram0:525MB:unknown:4096:4096:loop:Unknown:; </dev/zram0>3>
[debug] 1:0.00B:525MB:525MB:linux-swap(v1)::; <1>3>

=================== /media/lubuntu/05105719-2200-4440-8c85-0ee0fed385ca/etc/grub.d/ :
drwxr-xr-x  2 root root     4096 May 17 13:50 grub.d
drwxr-xr-x  2 root root     4096 May 17 13:49 grub.d.bak
total 72
-rwxr-xr-x 1 root root  9791 Sep 22  2016 00_header
-rwxr-xr-x 1 root root  6258 Mar 15  2016 05_debian_theme
-rwxr-xr-x 1 root root 12261 Sep 22  2016 10_linux
-rwxr-xr-x 1 root root 11082 Sep 22  2016 20_linux_xen
-rwxr-xr-x 1 root root 11692 Sep 22  2016 30_os-prober
-rwxr-xr-x 1 root root  1418 Sep 22  2016 30_uefi-firmware
-rwxr-xr-x 1 root root   214 Sep 22  2016 40_custom
-rwxr-xr-x 1 root root   216 Sep 22  2016 41_custom
-rw-r--r-- 1 root root   483 Sep 22  2016 README




=================== /media/lubuntu/05105719-2200-4440-8c85-0ee0fed385ca/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"



[debug] sdb4 ends at 250059161088GB. farbios
[debug] sdb4 ends at 250059161088GB. farbios
[debug] partedlm
[debug] BYT; <BYT;>4>
[debug] /dev/sda:160GB:scsi:512:512:msdos:ATA ST9160310AS:; </dev/sda>4>
[debug] 1:1049kB:87.7GB:87.7GB:ext4::; <1>4>
[debug] 2:87.7GB:125GB:37.2GB:ext4::boot; <2>4>
[debug] 3:125GB:127GB:2097MB:linux-swap(v1)::; <3>4>
[debug] 4:127GB:160GB:33.1GB:ext4::; <4>4>
[debug]  <>4>
[debug] BYT; <BYT;>4>
[debug] /dev/sdb:250GB:scsi:512:512:msdos:ATA WDC WD2500BEVT-2:; </dev/sdb>4>
[debug] 1:1049kB:87.0GB:87.0GB:ext4::; <1>4>
[debug] 2:87.0GB:89.1GB:2147MB:linux-swap(v1)::; <2>4>
[debug] 3:89.1GB:216GB:127GB:ext4::; <3>4>
[debug] 4:216GB:250GB:33.8GB:ext4::boot; <4>4>
[debug]  <>4>
[debug] BYT; <BYT;>4>
[debug] /dev/zram1:525MB:unknown:4096:4096:loop:Unknown:; </dev/zram1>4>
[debug] 1:0.00B:525MB:525MB:linux-swap(v1)::; <1>4>
[debug]  <>4>
[debug] BYT; <BYT;>4>
[debug] /dev/zram0:525MB:unknown:4096:4096:loop:Unknown:; </dev/zram0>4>
[debug] 1:0.00B:525MB:525MB:linux-swap(v1)::; <1>4>

=================== UEFI/Legacy mode:
This live-session is not EFI-compatible.
SecureBoot maybe enabled.


=================== PARTITIONS & DISKS:
sda1	: sda,	maybesepboot,	no-grubenv	nogrub,	no-docgrub,	no-update-grub,	32,	no-boot,	no-os,	not--efi--part,	part-has-no-fstab,	part-has-no-fstab,	no-nt,	no-winload,	no-recov-nor-hid,	no-bmgr,	notwinboot,	nopakmgr,	nogrubinstall,	no---usr,	part-has-no-fstab,	not-sep-usr,	standard,	not-far,	/mnt/boot-sav/sda1.
sda2	: sda,	not-sepboot,	grubenv-ok	grub2,	signed grub-pc ,	update-grub,	32,	with-boot,	is-os,	not--efi--part,	fstab-without-boot,	fstab-without-efi,	no-nt,	no-winload,	no-recov-nor-hid,	no-bmgr,	notwinboot,	apt-get,	grub-install,	with--usr,	fstab-without-usr,	not-sep-usr,	standard,	farbios,	/isodevice.
sda4	: sda,	maybesepboot,	no-grubenv	nogrub,	no-docgrub,	no-update-grub,	32,	no-boot,	no-os,	not--efi--part,	part-has-no-fstab,	part-has-no-fstab,	no-nt,	no-winload,	no-recov-nor-hid,	no-bmgr,	notwinboot,	nopakmgr,	nogrubinstall,	no---usr,	part-has-no-fstab,	not-sep-usr,	standard,	farbios,	/mnt/boot-sav/sda4.
sdb1	: sdb,	not-sepboot,	grubenv-ok	grub2,	signed 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,	/media/lubuntu/8b663c7f-fd77-4e3a-96c3-40bbb35457c0.
sdb3	: sdb,	maybesepboot,	no-grubenv	nogrub,	no-docgrub,	no-update-grub,	32,	no-boot,	no-os,	not--efi--part,	part-has-no-fstab,	part-has-no-fstab,	no-nt,	no-winload,	no-recov-nor-hid,	no-bmgr,	notwinboot,	nopakmgr,	nogrubinstall,	no---usr,	part-has-no-fstab,	not-sep-usr,	standard,	farbios,	/media/lubuntu/161.
sdb4	: sdb,	not-sepboot,	grubenv-ok	grub2,	signed grub-pc ,	update-grub,	32,	with-boot,	is-os,	not--efi--part,	fstab-without-boot,	fstab-without-efi,	no-nt,	no-winload,	no-recov-nor-hid,	no-bmgr,	notwinboot,	apt-get,	grub-install,	with--usr,	fstab-without-usr,	not-sep-usr,	standard,	farbios,	/media/lubuntu/05105719-2200-4440-8c85-0ee0fed385ca.

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


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

Model: ATA ST9160310AS (scsi)
Disk /dev/sda: 160GB
Sector size (logical/physical): 512B/512B
Partition Table: msdos
Disk Flags: 

Number  Start   End     Size    Type     File system     Flags
 1      1049kB  87.7GB  87.7GB  primary  ext4
 2      87.7GB  125GB   37.2GB  primary  ext4            boot
 3      125GB   127GB   2097MB  primary  linux-swap(v1)
 4      127GB   160GB   33.1GB  primary  ext4


Model: ATA WDC WD2500BEVT-2 (scsi)
Disk /dev/sdb: 250GB
Sector size (logical/physical): 512B/512B
Partition Table: msdos
Disk Flags: 

Number  Start   End     Size    Type     File system     Flags
 1      1049kB  87.0GB  87.0GB  primary  ext4
 2      87.0GB  89.1GB  2147MB  primary  linux-swap(v1)
 3      89.1GB  216GB   127GB   primary  ext4
 4      216GB   250GB   33.8GB  primary  ext4            boot


Model: Unknown (unknown)
Disk /dev/zram1: 525MB
Sector size (logical/physical): 4096B/4096B
Partition Table: loop
Disk Flags: 

Number  Start  End    Size   File system     Flags
 1      0.00B  525MB  525MB  linux-swap(v1)


Model: Unknown (unknown)
Disk /dev/zram0: 525MB
Sector size (logical/physical): 4096B/4096B
Partition Table: loop
Disk Flags: 

Number  Start  End    Size   File system     Flags
 1      0.00B  525MB  525MB  linux-swap(v1)

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

BYT;
/dev/sda:160GB:scsi:512:512:msdos:ATA ST9160310AS:;
1:1049kB:87.7GB:87.7GB:ext4::;
2:87.7GB:125GB:37.2GB:ext4::boot;
3:125GB:127GB:2097MB:linux-swap(v1)::;
4:127GB:160GB:33.1GB:ext4::;

BYT;
/dev/sdb:250GB:scsi:512:512:msdos:ATA WDC WD2500BEVT-2:;
1:1049kB:87.0GB:87.0GB:ext4::;
2:87.0GB:89.1GB:2147MB:linux-swap(v1)::;
3:89.1GB:216GB:127GB:ext4::;
4:216GB:250GB:33.8GB:ext4::boot;

BYT;
/dev/zram1:525MB:unknown:4096:4096:loop:Unknown:;
1:0.00B:525MB:525MB:linux-swap(v1)::;

BYT;
/dev/zram0:525MB:unknown:4096:4096:loop:Unknown:;
1:0.00B:525MB:525MB:linux-swap(v1)::;

=================== lsblk:
KNAME TYPE FSTYPE     SIZE LABEL
loop0 loop iso9660    916M Lubuntu 17.04 i386
loop1 loop squashfs 876.7M 
sda   disk          149.1G 
sda1  part ext4      81.7G 
sda2  part ext4      34.6G 
sda3  part swap         2G 
sda4  part ext4      30.8G 
sdb   disk          232.9G 
sdb1  part ext4        81G 
sdb2  part swap         2G 
sdb3  part ext4     118.4G 161
sdb4  part ext4      31.5G 
zram0 disk          500.9M 
zram1 disk          500.9M 
 
KNAME ROTA RO RM STATE   MOUNTPOINT
loop0    1  0  0         /cdrom
loop1    1  1  0         /rofs
sda      1  0  0 running 
sda1     1  0  0         /mnt/boot-sav/sda1
sda2     1  0  0         /isodevice
sda3     1  0  0         [SWAP]
sda4     1  0  0         /mnt/boot-sav/sda4
sdb      1  0  0 running 
sdb1     1  0  0         /media/lubuntu/8b663c7f-fd77-4e3a-96c3-40bbb35457c0
sdb2     1  0  0         [SWAP]
sdb3     1  0  0         /media/lubuntu/161
sdb4     1  0  0         /media/lubuntu/05105719-2200-4440-8c85-0ee0fed385ca
zram0    0  0  0         [SWAP]
zram1    0  0  0         [SWAP]


=================== 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=1011312k,nr_inodes=211863,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=205148k,mode=755)
/dev/sda2 on /isodevice type ext4 (rw,relatime,data=ordered)
/dev/loop0 on /cdrom type iso9660 (ro,noatime)
/dev/loop1 on /rofs type squashfs (ro,noatime)
aufs on / type aufs (rw,noatime,si=3dc830e1)
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/systemd type cgroup (rw,nosuid,nodev,noexec,relatime,xattr,release_agent=/lib/systemd/systemd-cgroups-agent,name=systemd)
pstore on /sys/fs/pstore type pstore (rw,nosuid,nodev,noexec,relatime)
cgroup on /sys/fs/cgroup/cpu,cpuacct type cgroup (rw,nosuid,nodev,noexec,relatime,cpu,cpuacct)
cgroup on /sys/fs/cgroup/blkio type cgroup (rw,nosuid,nodev,noexec,relatime,blkio)
cgroup on /sys/fs/cgroup/net_cls,net_prio type cgroup (rw,nosuid,nodev,noexec,relatime,net_cls,net_prio)
cgroup on /sys/fs/cgroup/cpuset type cgroup (rw,nosuid,nodev,noexec,relatime,cpuset)
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/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/hugetlb type cgroup (rw,nosuid,nodev,noexec,relatime,hugetlb)
cgroup on /sys/fs/cgroup/perf_event type cgroup (rw,nosuid,nodev,noexec,relatime,perf_event)
systemd-1 on /proc/sys/fs/binfmt_misc type autofs (rw,relatime,fd=34,pgrp=1,timeout=0,minproto=5,maxproto=5,direct,pipe_ino=18209)
debugfs on /sys/kernel/debug type debugfs (rw,relatime)
mqueue on /dev/mqueue type mqueue (rw,relatime)
tracefs on /sys/kernel/debug/tracing type tracefs (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=205144k,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/lubuntu/05105719-2200-4440-8c85-0ee0fed385ca type ext4 (rw,nosuid,nodev,relatime,data=ordered,uhelper=udisks2)
/dev/sdb3 on /media/lubuntu/161 type ext4 (rw,nosuid,nodev,relatime,data=ordered,uhelper=udisks2)
/dev/sdb1 on /media/lubuntu/8b663c7f-fd77-4e3a-96c3-40bbb35457c0 type ext4 (rw,nosuid,nodev,relatime,data=ordered,uhelper=udisks2)
/dev/sda1 on /mnt/boot-sav/sda1 type ext4 (rw,relatime,data=ordered)
/dev/sda4 on /mnt/boot-sav/sda4 type ext4 (rw,relatime,data=ordered)


SET@_label0.set_text('''Scanning systems. Please wait few seconds...''')
=================== ls:
/sys/block/sda (filtered):  alignment_offset badblocks bdi capability dev device discard_alignment events events_async events_poll_msecs ext_range holders inflight integrity power queue range removable ro sda1 sda2 sda3 sda4 size slaves stat subsystem trace uevent
/sys/block/sdb (filtered):  alignment_offset badblocks 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 size slaves stat subsystem trace uevent
/sys/block/sdc (filtered):  alignment_offset badblocks 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 char console core cpu cpu_dma_latency cuse disk dri ecryptfs fb0 fd full fuse hidraw0 hidraw1 hpet hwrng i2c-0 i2c-1 i2c-2 i2c-3 i2c-4 i2c-5 i2c-6 initctl input kmsg lightnvm log mapper mcelog mem memory_bandwidth mqueue net network_latency network_throughput null port ppp psaux ptmx pts random rfkill rtc rtc0 sda sda1 sda2 sda3 sda4 sdb sdb1 sdb2 sdb3 sdb4 sdc sg0 sg1 sg2 shm snapshot snd stderr stdin stdout uhid uinput urandom userio vfio vga_arbiter vhci vhost-net zero
ls /dev/mapper:  control
[debug]TARGET_PARTITION_IS_AVAILABLE[sda] is : yes
[debug]TARGET_PARTITION_IS_AVAILABLE[sdb] is : yes
SET@_checkbutton_restore_mbr.hide()
SET@_tab_mbr_options.set_sensitive(False)
SET@_vbox_mbr_options.hide()

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

Filesystem     Type      Size  Used Avail Use% Mounted on
udev           devtmpfs  988M     0  988M   0% /dev
tmpfs          tmpfs     201M  8.7M  192M   5% /run
/dev/sda2      ext4       34G  8.7G   24G  28% /isodevice
/dev/loop0     iso9660   916M  916M     0 100% /cdrom
/dev/loop1     squashfs  877M  877M     0 100% /rofs
aufs           aufs     1002M  234M  768M  24% /
tmpfs          tmpfs    1002M   32M  971M   4% /dev/shm
tmpfs          tmpfs     5.0M  4.0K  5.0M   1% /run/lock
tmpfs          tmpfs    1002M     0 1002M   0% /sys/fs/cgroup
tmpfs          tmpfs    1002M  4.0K 1002M   1% /tmp
tmpfs          tmpfs     201M  8.0K  201M   1% /run/user/999
/dev/sdb4      ext4       31G   18G   13G  59% /media/lubuntu/05105719-2200-4440-8c85-0ee0fed385ca
/dev/sdb3      ext4      116G  109G  649M 100% /media/lubuntu/161
/dev/sdb1      ext4       80G  8.8G   67G  12% /media/lubuntu/8b663c7f-fd77-4e3a-96c3-40bbb35457c0
/dev/sda1      ext4       80G   28G   48G  37% /mnt/boot-sav/sda1
/dev/sda4      ext4       31G   15G   15G  49% /mnt/boot-sav/sda4

=================== fdisk -l:
Disk /dev/loop0: 916 MiB, 960495616 bytes, 1875968 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: 0x67a62368

Device       Boot Start     End Sectors  Size Id Type
/dev/loop0p1 *       64 1875967 1875904  916M 17 Hidden HPFS/NTFS


Disk /dev/loop1: 876.7 MiB, 919302144 bytes, 1795512 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: 149.1 GiB, 160041885696 bytes, 312581808 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: 0xab3150f5

Device     Boot     Start       End   Sectors  Size Id Type
/dev/sda1            2048 171235327 171233280 81.7G 83 Linux
/dev/sda2  *    171235328 243857407  72622080 34.6G 83 Linux
/dev/sda3       243857408 247953407   4096000    2G 82 Linux swap / Solaris
/dev/sda4       247953408 312580095  64626688 30.8G 83 Linux


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

Device     Boot     Start       End   Sectors   Size Id Type
/dev/sdb1            2048 169871359 169869312    81G 83 Linux
/dev/sdb2       169871360 174065663   4194304     2G 82 Linux swap / Solaris
/dev/sdb3       174065664 422387711 248322048 118.4G 83 Linux
/dev/sdb4  *    422387712 488396799  66009088  31.5G 83 Linux


Disk /dev/zram0: 500.9 MiB, 525176832 bytes, 128217 sectors
Units: sectors of 1 * 4096 = 4096 bytes
Sector size (logical/physical): 4096 bytes / 4096 bytes
I/O size (minimum/optimal): 4096 bytes / 4096 bytes


Disk /dev/zram1: 500.9 MiB, 525176832 bytes, 128217 sectors
Units: sectors of 1 * 4096 = 4096 bytes
Sector size (logical/physical): 4096 bytes / 4096 bytes
I/O size (minimum/optimal): 4096 bytes / 4096 bytes


[debug]Logs saved into /isodevice/var/log/boot-sav/log/2017-05-18__08h33boot-repair23
[debug]Logs saved into /media/lubuntu/8b663c7f-fd77-4e3a-96c3-40bbb35457c0/var/log/boot-sav/log/2017-05-18__08h33boot-repair23
[debug]Logs saved into /media/lubuntu/05105719-2200-4440-8c85-0ee0fed385ca/var/log/boot-sav/log/2017-05-18__08h33boot-repair23
SET@_vbox_bootrepairmenu.show()
SET@_label_bootrepairsubtitle.set_markup('''<b>Repair the boot of the computer</b>''')
SET@_label_recommendedrepair.set_text('''Recommended repair\n(repairs most frequent problems)''')
SET@_label_justbootinfo.set_text('''Create a BootInfo summary\n(to get help by email or forum)''')
SET@_label_pastebin.set_text('''Create a BootInfo summary (to get help by email or forum)''')
SET@_vbox_pastebin.show()
SET@_label_appname.set_markup('''<b><big>Boot-Repair</big></b>''')
SET@_label_appdescription.set_text('''Repair the boot of the computer''')
SET@_logobr.show()
SET@_logo_brmenu.show()
SET@_linkbutton_websitebr.show()
SET@_label_repairfilesystems.set_text('''Repair file systems''')
SET@_checkbutton_repairfilesystems.show()
SET@_label_wubi.set_text('''Repair Wubi filesystems''')
SET@_checkbutton_wubi.show()
SET@_mainwindow.set_title('''Boot Repair''')
SET@_mainwindow.set_icon_from_file('''x-boot-repair.png''')
SET@_label_advanced_options.set_text('''Advanced options''')
SET@_tab_main_options.set_text('''Main options''')
SET@_tab_grub_location.set_text('''GRUB location''')
SET@_tab_grub_options.set_text('''GRUB options''')
SET@_tab_mbr_options.set_text('''MBR options''')
SET@_tab_other_options.set_text('''Other options''')
SET@_label_unhide_boot_menu.set_text('''Unhide boot menu :''')
SET@_label_seconds.set_text('''seconds''')
SET@_label_reinstall_grub.set_text('''Reinstall GRUB''')
SET@_label_restore_mbr.set_text('''Restore MBR''')
SET@_label_restore_bkp.set_text('''Restore EFI backups''')
SET@_label_create_bkp.set_text('''Use the standard EFI file''')
SET@_label_winefi_bkp.set_text('''Backup and rename Windows EFI files (solves the [hard-coded-EFI] error)''')
SET@_label_bootflag.set_text('''Place the boot flag on:''')
COMBO@@CLEAR@@_combobox_bootflag
SET@_label_restore_mbrof.set_text('''Restore the MBR of:''')
SET@_label_ostoboot_bydefault.set_text('''OS to boot by default:''')
SET@_label_signed.set_text('''SecureBoot''')
SET@_label_purge_grub.set_text('''Purge GRUB before reinstalling it''')
SET@_label_separateboot.set_text('''Separate /boot partition:''')
SET@_label_efi.set_text('''Separate /boot/efi partition:''')
SET@_label_sepusr.set_text('''Separate /usr partition:''')
SET@_label_place_alldisks.set_text('''Place GRUB in all disks (except USB disks without OS)''')
SET@_label_place_grub.set_text('''Place GRUB into:''')
[debug]combobox_ostoboot_bydefault_fillin
[debug]Order Linux according to their arch type
[debug]Order Linux 64 bits
[debug]LABEL_PART_FOR_REINSTAL[1] sda2 \(Ubuntu 16.04.2 LTS\)
[debug]LABEL_PART_FOR_REINSTAL[2] sdb1 \(Ubuntu 16.10\)
[debug]LABEL_PART_FOR_REINSTAL[3] sdb4 \(Ubuntu 16.10\)
[debug]Order Linux 32 bits
COMBO@@END@@_combobox_ostoboot_bydefault@@sda2 (Ubuntu 16.04.2 LTS)
COMBO@@END@@_combobox_ostoboot_bydefault@@sdb1 (Ubuntu 16.10)
COMBO@@END@@_combobox_ostoboot_bydefault@@sdb4 (Ubuntu 16.10)
SET@_combobox_ostoboot_bydefault.set_sensitive(True)
SET@_label_lastgrub.set_text('''Upgrade GRUB to its most recent version''')
SET@_label_legacy.set_text('''GRUB Legacy''')
SET@_label_blankextraspace.set_text('''Reset extra space after MBR (solves the [FlexNet] error)''')
SET@_label_uncomment_gfxmode.set_text('''Uncomment GRUB_GFXMODE (solves the [no-signal / out-of-range] error)''')
SET@_label_ata.set_text('''ATA disk support (solves the [out-of-disk] error)''')
SET@_label_add_kernel_option.set_text('''Add a kernel option:''')
COMBO@@END@@_combobox_add_kernel_option@@nomodeset
COMBO@@END@@_combobox_add_kernel_option@@acpi=off
COMBO@@END@@_combobox_add_kernel_option@@acpi_osi=
COMBO@@END@@_combobox_add_kernel_option@@edd=on
COMBO@@END@@_combobox_add_kernel_option@@i815modeset=1
COMBO@@END@@_combobox_add_kernel_option@@i915modeset=0
COMBO@@END@@_combobox_add_kernel_option@@i915.modeset=0 xforcevesa
COMBO@@END@@_combobox_add_kernel_option@@noapic
COMBO@@END@@_combobox_add_kernel_option@@nodmraid
COMBO@@END@@_combobox_add_kernel_option@@nolapic
COMBO@@END@@_combobox_add_kernel_option@@nomodeset radeon mode=0
COMBO@@END@@_combobox_add_kernel_option@@nomodeset radeon mode=1
COMBO@@END@@_combobox_add_kernel_option@@rootdelay=90
COMBO@@END@@_combobox_add_kernel_option@@vga=771
COMBO@@END@@_combobox_add_kernel_option@@xforcevesa
SET@_combobox_add_kernel_option.set_active(0)
SET@_combobox_add_kernel_option.set_sensitive(True)
SET@_label_kernelpurge.set_text('''Purge kernels then reinstall last kernel''')
SET@_label_open_etc_default_grub.set_text('''Edit GRUB configuration file''')
SET@_label_partition_booted_bymbr.set_text('''Partition booted by the MBR:''')
SET@_about.set_title('''About Boot Repair''')
SET@_about.set_icon_from_file('''x-boot-repair.png''')
SET@_label_translate.set_text('''Translate''')
SET@_label_thanks.set_text('''Credits''')
SET@_label_gpl.set_markup('''<small>GNU-GPL v3</small>''')
SET@_label_copyright.set_markup('''<small>(C) 2010-2016 Yann MRN</small>''')
SET@_backupwindow.set_title('''Boot Repair''')
SET@_label_pleasechoosebackuprep.set_text('''Please choose a folder to put the backup into.\nIt is recommended to choose a USB disk.''')
SET@_label_backup_table.set_text('''Backup partition tables, bootsectors and logs''')
SET@_label_winboot.set_text('''Repair Windows boot files''')
SET@_label_upload.set_text('''Upload the report to a pastebin''')
SET@_label_upload1.set_text('''Upload the report to a pastebin''')
SET@_label_stats.set_text('''Participate to statistics of use''')
SET@_label_internet.set_text('''Check internet connection''')
SET@_label_internet1.set_text('''Check internet connection''')
SET@_button_recommendedrepair.set_sensitive(False)
SET@_checkbutton_repairfilesystems.set_active(False)
SET@_checkbutton_wubi.set_active(False)
SET@_checkbutton_wubi.set_sensitive(False)
SET@_checkbutton_pastebin.set_active(True)
SET@_checkbutton_upload.set_active(True)
[debug]MAIN_MENU becomes : Recommended-Repair
SET@_checkbutton_unhide_boot_menu.set_active(True)
[debug]set_checkbutton_reinstall_grub
SET@_tab_grub_location.set_sensitive(True)
SET@_vbox_grub_location.show()
SET@_tab_grub_options.set_sensitive(True)
SET@_vbox_grub_options.show()
SET@_tab_mbr_options.set_sensitive(False)
SET@_vbox_mbr_options.hide()
SET@_checkbutton_restore_mbr.set_active(False)
SET@_checkbutton_restore_bkp.hide()
SET@_checkbutton_create_bkp.hide()
SET@_checkbutton_winefi_bkp.hide()
SET@_button_mainapply.set_sensitive(False)
[debug]osbydefault_consequences sda2
SET@_vbox_sepusr.hide()
SET@_combobox_sepusr.set_sensitive(False)
SET@_label_sepusr.set_sensitive(False)
SET@_checkbutton_sepusr.set_active(False)
[debug]combobox_separateboot_fillin
COMBO@@CLEAR@@_combobox_separateboot
COMBO@@END@@_combobox_separateboot@@sda1
COMBO@@END@@_combobox_separateboot@@sda4
COMBO@@END@@_combobox_separateboot@@sdb3
SET@_combobox_separateboot.set_active(0)
SET@_combobox_separateboot.set_sensitive(True)
SET@_combobox_separateboot.set_sensitive(False)
SET@_vbox_separateboot.show()
SET@_checkbutton_separateboot.set_active(False)
SET@_combobox_separateboot.set_sensitive(False)
SET@_checkbutton_kernelpurge.set_active(False)
SET@_checkbutton_kernelpurge.set_sensitive(True)
SET@_button_open_etc_default_grub.hide()
SET@_checkbutton_purge_grub.set_active(True)
SET@_checkbutton_purge_grub.set_sensitive(False)
[debug]combobox_efi_fillin sda2 , 
COMBO@@CLEAR@@_combobox_efi
SET@_combobox_efi.set_active(0)
SET@_combobox_efi.set_sensitive(True)
[debug]EFIFILEPRESENCE , QTY_SUREEFIPART 0
SET@_checkbutton_signed.hide()
SET@_combobox_efi.set_sensitive(False)
SET@_vbox_place_or_force.show()
SET@_checkbutton_legacy.show()
SET@_checkbutton_lastgrub.show()
SET@_checkbutton_legacy.set_sensitive(True)
SET@_button_open_etc_default_grub.hide()
SET@_checkbutton_purge_grub.set_active(True)
SET@_checkbutton_purge_grub.set_sensitive(False)
SET@_checkbutton_lastgrub.set_active(False)
SET@_checkbutton_lastgrub.set_sensitive(True)
[debug]LASTGRUB_ACTION becomes: 
SET@_checkbutton_restore_bkp.hide()
SET@_checkbutton_create_bkp.hide()
SET@_checkbutton_winefi_bkp.hide()
SET@_checkbutton_efi.set_active(False)
SET@_vbox_efi.hide()
SET@_button_open_etc_default_grub.hide()
SET@_checkbutton_purge_grub.set_active(True)
SET@_checkbutton_purge_grub.set_sensitive(False)
COMBO@@CLEAR@@_combobox_place_grub
COMBO@@END@@_combobox_place_grub@@sda
COMBO@@END@@_combobox_place_grub@@sdb
SET@_combobox_place_grub.set_active(0)
SET@_radiobutton_place_alldisks.show()
SET@_radiobutton_place_alldisks.set_active(True)
[debug]set_radiobutton_place_alldisks
SET@_vbox_is_removable_disk.show()
SET@_vbox_is_removable_disk.show()
[debug]It exists another disk with OS
SET@_vbox_is_removable_disk.show()
SET@_label_is_removable_disk.set_text('''sda (160GB) is a removable disk.''')

(zenity:24003): Gtk-WARNING **: Theme parsing error: gtk-widgets.css:23:18: not a number

(zenity:24003): Gtk-WARNING **: Theme parsing error: gtk-widgets.css:23:18: Expected a string.

(zenity:24003): Gtk-WARNING **: Theme parsing error: gtk-widgets.css:815:10: not a number

(zenity:24003): Gtk-WARNING **: Theme parsing error: gtk-widgets.css:815:24: Using Pango syntax for the font: style property is deprecated; please use CSS syntax

(zenity:24003): Gtk-WARNING **: Theme parsing error: gtk-widgets.css:1953:14: not a number

(zenity:24003): Gtk-WARNING **: Theme parsing error: gtk-widgets.css:1953:14: Expected a string.

(zenity:24003): Gtk-WARNING **: Theme parsing error: nautilus.css:50:71: Using one color stop with linear-gradient() is deprecated.

(zenity:24003): Gtk-WARNING **: Theme parsing error: nautilus.css:51:71: Using one color stop with linear-gradient() is deprecated.

(zenity:24003): Gtk-WARNING **: Theme parsing error: gtk-lubuntu.css:252:14: not a number

(zenity:24003): Gtk-WARNING **: Theme parsing error: gtk-lubuntu.css:252:14: Expected a string.
Gtk-Message: GtkDialog mapped without a transient parent. This is discouraged.
User choice: Is sda (160GB) a removable disk? no
				

SET@_checkbutton_is_removable_disk.set_active(False)
SET@_label_force_grub.set_text('''Force GRUB into: sda2 (for chainloader)''')
SET@_checkbutton_purge_grub.show()
SET@_checkbutton_lastgrub.show()
SET@_checkbutton_legacy.set_sensitive(True)
SET@_button_open_etc_default_grub.hide()
SET@_checkbutton_purge_grub.set_active(True)
SET@_checkbutton_purge_grub.set_sensitive(False)
SET@_checkbutton_lastgrub.set_active(False)
SET@_checkbutton_lastgrub.set_sensitive(True)
[debug]LASTGRUB_ACTION becomes: 
SET@_checkbutton_blankextraspace.set_sensitive(True)
SET@_checkbutton_blankextraspace.set_active(False)
SET@_checkbutton_uncomment_gfxmode.set_active(False)
SET@_checkbutton_ata.set_active(False)
SET@_combobox_add_kernel_option.set_sensitive(False)
SET@_checkbutton_add_kernel_option.set_active(False)
SET@_button_mainapply.set_sensitive(True)
SET@_combobox_ostoboot_bydefault.set_active(0)
[debug]MBR_ACTION is set : reinstall (NBOFDISKS is 2)
SET@_checkbutton_reinstall_grub.set_active(True)
SET@_hbox_bootflag.set_sensitive(False)
SET@_combobox_bootflag.set_sensitive(False)
SET@_checkbutton_bootflag.set_active(False)
SET@_vbox_winboot.set_sensitive(False)
SET@_button_recommendedrepair.set_sensitive(True)
SET@pulsatewindow.hide()
SET@_mainwindow.show()
./boot-repair.sh: line 28: 17192 Terminated              while true; do
    echo 'SET@_progressbar1.pulse()'; sleep 0.2;
done
DEBUG=> in bash NOT GET _combobox_add_kernel_option nomodeset
[debug]CHOSEN_KERNEL_OPTION becomes : nomodeset
DEBUG=> in bash NOT GET _checkbutton_unhide_boot_menu True
SET@_spinbutton_unhide_boot_menu.set_sensitive(True)
[debug]UNHIDEBOOT_ACTION becomes : unhide-bootmenu-10s
DEBUG=> in bash NOT GET _combobox_separateboot sda1
[debug]RET_sepboot (BOOTPART_TO_USE) : sda1
DEBUG=> in bash NOT GET _checkbutton_purge_grub True
SET@_button_open_etc_default_grub.hide()
[debug]GRUBPURGE_ACTION becomes: purge-grub
DEBUG=> in bash NOT GET
DEBUG=> in bash NOT GET _combobox_place_grub sda
[debug]RETOURCOMBO_place_grub (NOFORCE_DISK) : sda
DEBUG=> in bash NOT GET
DEBUG=> in bash NOT GET _radiobutton_place_grub False
SET@_combobox_place_grub.set_sensitive(False)
DEBUG=> in bash NOT GET
DEBUG=> in bash NOT GET _radiobutton_place_alldisks True
[debug]set_radiobutton_place_alldisks
SET@_vbox_is_removable_disk.show()
SET@_vbox_is_removable_disk.show()
DEBUG=> in bash NOT GET
DEBUG=> in bash NOT GET _combobox_ostoboot_bydefault sda2 (Ubuntu 16.04.2 LTS)
[debug]RETOURCOMBO_ostoboot_bydefault : sda2 (Ubuntu 16.04.2 LTS)
[debug]sda2 \(Ubuntu 16.04.2 LTS\)
[debug]sdb1 \(Ubuntu 16.10\)
[debug]Warning: Duplicate _combobox_ostoboot_bydefault .
[debug]sdb4 \(Ubuntu 16.10\)
[debug]
[debug]
[debug]
DEBUG=> in bash NOT GET
DEBUG=> in bash NOT GET _checkbutton_reinstall_grub True
[debug]set_checkbutton_reinstall_grub
SET@_tab_grub_location.set_sensitive(True)
SET@_vbox_grub_location.show()
SET@_tab_grub_options.set_sensitive(True)
SET@_vbox_grub_options.show()
SET@_tab_mbr_options.set_sensitive(False)
SET@_vbox_mbr_options.hide()
SET@_checkbutton_restore_mbr.set_active(False)
SET@_checkbutton_restore_bkp.hide()
SET@_checkbutton_create_bkp.hide()
SET@_checkbutton_winefi_bkp.hide()
SET@_button_mainapply.set_sensitive(False)
[debug]osbydefault_consequences sda2
SET@_vbox_sepusr.hide()
SET@_combobox_sepusr.set_sensitive(False)
SET@_label_sepusr.set_sensitive(False)
SET@_checkbutton_sepusr.set_active(False)
[debug]combobox_separateboot_fillin
COMBO@@CLEAR@@_combobox_separateboot
COMBO@@END@@_combobox_separateboot@@sda1
COMBO@@END@@_combobox_separateboot@@sda4
COMBO@@END@@_combobox_separateboot@@sdb3
SET@_combobox_separateboot.set_active(0)
SET@_combobox_separateboot.set_sensitive(True)
SET@_combobox_separateboot.set_sensitive(False)
SET@_vbox_separateboot.show()
SET@_checkbutton_separateboot.set_active(False)
SET@_combobox_separateboot.set_sensitive(False)
SET@_checkbutton_kernelpurge.set_active(False)
SET@_checkbutton_kernelpurge.set_sensitive(True)
SET@_button_open_etc_default_grub.hide()
SET@_checkbutton_purge_grub.set_active(True)
SET@_checkbutton_purge_grub.set_sensitive(False)
[debug]combobox_efi_fillin sda2 , 
COMBO@@CLEAR@@_combobox_efi
SET@_combobox_efi.set_active(0)
SET@_combobox_efi.set_sensitive(True)
[debug]EFIFILEPRESENCE , QTY_SUREEFIPART 0
SET@_checkbutton_signed.hide()
SET@_combobox_efi.set_sensitive(False)
SET@_vbox_place_or_force.show()
SET@_checkbutton_legacy.show()
SET@_checkbutton_lastgrub.show()
SET@_checkbutton_legacy.set_sensitive(True)
SET@_button_open_etc_default_grub.hide()
SET@_checkbutton_purge_grub.set_active(True)
SET@_checkbutton_purge_grub.set_sensitive(False)
SET@_checkbutton_lastgrub.set_active(False)
SET@_checkbutton_lastgrub.set_sensitive(True)
[debug]LASTGRUB_ACTION becomes: 
SET@_checkbutton_restore_bkp.hide()
SET@_checkbutton_create_bkp.hide()
SET@_checkbutton_winefi_bkp.hide()
SET@_checkbutton_efi.set_active(False)
SET@_vbox_efi.hide()
SET@_button_open_etc_default_grub.hide()
SET@_checkbutton_purge_grub.set_active(True)
SET@_checkbutton_purge_grub.set_sensitive(False)
COMBO@@CLEAR@@_combobox_place_grub
COMBO@@END@@_combobox_place_grub@@sda
COMBO@@END@@_combobox_place_grub@@sdb
SET@_combobox_place_grub.set_active(0)
SET@_radiobutton_place_alldisks.show()
SET@_radiobutton_place_alldisks.set_active(True)
[debug]set_radiobutton_place_alldisks
SET@_vbox_is_removable_disk.show()
SET@_vbox_is_removable_disk.show()
[debug]It exists another disk with OS
SET@_vbox_is_removable_disk.show()
SET@_label_is_removable_disk.set_text('''sda (160GB) is a removable disk.''')
SET@_checkbutton_is_removable_disk.set_active(False)
SET@_label_force_grub.set_text('''Force GRUB into: sda2 (for chainloader)''')
SET@_checkbutton_purge_grub.show()
SET@_checkbutton_lastgrub.show()
SET@_checkbutton_legacy.set_sensitive(True)
SET@_button_open_etc_default_grub.hide()
SET@_checkbutton_purge_grub.set_active(True)
SET@_checkbutton_purge_grub.set_sensitive(False)
SET@_checkbutton_lastgrub.set_active(False)
SET@_checkbutton_lastgrub.set_sensitive(True)
[debug]LASTGRUB_ACTION becomes: 
SET@_checkbutton_blankextraspace.set_sensitive(True)
SET@_checkbutton_blankextraspace.set_active(False)
SET@_checkbutton_uncomment_gfxmode.set_active(False)
SET@_checkbutton_ata.set_active(False)
SET@_combobox_add_kernel_option.set_sensitive(False)
SET@_checkbutton_add_kernel_option.set_active(False)
SET@_button_mainapply.set_sensitive(True)
SET@_combobox_ostoboot_bydefault.set_active(0)
[debug]MBR_ACTION is set : reinstall (NBOFDISKS is 2)
DEBUG=> in bash NOT GET
DEBUG=> in bash NOT GET _combobox_separateboot sdb3
[debug]RET_sepboot (BOOTPART_TO_USE) : sdb3
DEBUG=> in bash NOT GET
DEBUG=> in bash NOT GET _combobox_separateboot sdb3
[debug]RET_sepboot (BOOTPART_TO_USE) : sdb3
DEBUG=> in bash NOT GET
DEBUG=> in bash NOT GET _combobox_separateboot sda1
[debug]RET_sepboot (BOOTPART_TO_USE) : sda1
DEBUG=> in bash NOT GET
DEBUG=> in bash NOT GET _combobox_place_grub sdb
[debug]RETOURCOMBO_place_grub (NOFORCE_DISK) : sdb
DEBUG=> in bash NOT GET _combobox_place_grub sda
[debug]RETOURCOMBO_place_grub (NOFORCE_DISK) : sda
DEBUG=> in bash NOT GET _expander1 False
[debug] debug_echo_important_variables
[debug]internet: connected
SET@_hbox_bootrepairmenu.hide()
SET@_button_mainapply.show()
[debug]MAIN_MENU becomes : Custom-Repair
SET@_mainwindow.resize(10,10)
DEBUG=> in bash NOT GET _combobox_ostoboot_bydefault sdb1 (Ubuntu 16.10)
[debug]RETOURCOMBO_ostoboot_bydefault : sdb1 (Ubuntu 16.10)
[debug]sda2 \(Ubuntu 16.04.2 LTS\)
[debug]sdb1 \(Ubuntu 16.10\)
[debug]sdb4 \(Ubuntu 16.10\)
[debug]
SET@_button_mainapply.set_sensitive(False)
[debug]osbydefault_consequences sdb1
SET@_vbox_sepusr.hide()
SET@_combobox_sepusr.set_sensitive(False)
SET@_label_sepusr.set_sensitive(False)
SET@_checkbutton_sepusr.set_active(False)
[debug]combobox_separateboot_fillin
COMBO@@CLEAR@@_combobox_separateboot
COMBO@@END@@_combobox_separateboot@@sdb3
COMBO@@END@@_combobox_separateboot@@sda1
COMBO@@END@@_combobox_separateboot@@sda4
SET@_combobox_separateboot.set_active(0)
SET@_combobox_separateboot.set_sensitive(True)
SET@_combobox_separateboot.set_sensitive(False)
SET@_vbox_separateboot.show()
SET@_checkbutton_separateboot.set_active(False)
SET@_combobox_separateboot.set_sensitive(False)
SET@_checkbutton_kernelpurge.set_active(False)
SET@_checkbutton_kernelpurge.set_sensitive(True)
SET@_button_open_etc_default_grub.hide()
SET@_checkbutton_purge_grub.set_active(True)
SET@_checkbutton_purge_grub.set_sensitive(False)
[debug]combobox_efi_fillin sdb1 , 
COMBO@@CLEAR@@_combobox_efi
SET@_combobox_efi.set_active(0)
SET@_combobox_efi.set_sensitive(True)
[debug]EFIFILEPRESENCE , QTY_SUREEFIPART 0
SET@_checkbutton_signed.hide()
SET@_combobox_efi.set_sensitive(False)
SET@_vbox_place_or_force.show()
SET@_checkbutton_legacy.show()
SET@_checkbutton_lastgrub.show()
SET@_checkbutton_legacy.set_sensitive(True)
SET@_button_open_etc_default_grub.hide()
SET@_checkbutton_purge_grub.set_active(True)
SET@_checkbutton_purge_grub.set_sensitive(False)
SET@_checkbutton_lastgrub.set_active(False)
SET@_checkbutton_lastgrub.set_sensitive(True)
[debug]LASTGRUB_ACTION becomes: 
SET@_checkbutton_restore_bkp.hide()
SET@_checkbutton_create_bkp.hide()
SET@_checkbutton_winefi_bkp.hide()
SET@_checkbutton_efi.set_active(False)
SET@_vbox_efi.hide()
SET@_button_open_etc_default_grub.hide()
SET@_checkbutton_purge_grub.set_active(True)
SET@_checkbutton_purge_grub.set_sensitive(False)
COMBO@@CLEAR@@_combobox_place_grub
COMBO@@END@@_combobox_place_grub@@sdb
COMBO@@END@@_combobox_place_grub@@sda
SET@_combobox_place_grub.set_active(0)
SET@_radiobutton_place_alldisks.show()
SET@_radiobutton_place_alldisks.set_active(True)
[debug]set_radiobutton_place_alldisks
SET@_vbox_is_removable_disk.show()
[debug]It exists another disk with OS
SET@_vbox_is_removable_disk.show()
SET@_label_is_removable_disk.set_text('''sdb (250GB) is a removable disk.''')
SET@_checkbutton_is_removable_disk.set_active(False)
SET@_label_force_grub.set_text('''Force GRUB into: sdb1 (for chainloader)''')
SET@_checkbutton_purge_grub.show()
SET@_checkbutton_lastgrub.show()
SET@_checkbutton_legacy.set_sensitive(True)
SET@_button_open_etc_default_grub.hide()
SET@_checkbutton_purge_grub.set_active(True)
SET@_checkbutton_purge_grub.set_sensitive(False)
SET@_checkbutton_lastgrub.set_active(False)
SET@_checkbutton_lastgrub.set_sensitive(True)
[debug]LASTGRUB_ACTION becomes: 
SET@_checkbutton_blankextraspace.set_sensitive(True)
SET@_checkbutton_blankextraspace.set_active(False)
SET@_checkbutton_uncomment_gfxmode.set_active(False)
SET@_checkbutton_ata.set_active(False)
SET@_combobox_add_kernel_option.set_sensitive(False)
SET@_checkbutton_add_kernel_option.set_active(False)
SET@_button_mainapply.set_sensitive(True)
[debug]
[debug]
DEBUG=> in bash NOT GET _combobox_separateboot sdb3
[debug]RET_sepboot (BOOTPART_TO_USE) : sdb3
DEBUG=> in bash NOT GET _combobox_separateboot sdb3
[debug]RET_sepboot (BOOTPART_TO_USE) : sdb3
DEBUG=> in bash NOT GET _combobox_separateboot sdb3
[debug]RET_sepboot (BOOTPART_TO_USE) : sdb3
DEBUG=> in bash NOT GET
DEBUG=> in bash NOT GET _combobox_place_grub sdb
[debug]RETOURCOMBO_place_grub (NOFORCE_DISK) : sdb
DEBUG=> in bash NOT GET _combobox_place_grub sdb
[debug]RETOURCOMBO_place_grub (NOFORCE_DISK) : sdb
DEBUG=> in bash NOT GET
DEBUG=> in bash NOT GET _radiobutton_place_alldisks False
SET@_vbox_is_removable_disk.hide()
DEBUG=> in bash NOT GET _radiobutton_place_grub True
[debug]set_radiobutton_place_grub
SET@_combobox_place_grub.set_sensitive(True)
DEBUG=> in bash NOT GET _checkbutton_lastgrub True

(zenity:26454): Gtk-WARNING **: Theme parsing error: gtk-widgets.css:23:18: not a number

(zenity:26454): Gtk-WARNING **: Theme parsing error: gtk-widgets.css:23:18: Expected a string.

(zenity:26454): Gtk-WARNING **: Theme parsing error: gtk-widgets.css:815:10: not a number

(zenity:26454): Gtk-WARNING **: Theme parsing error: gtk-widgets.css:815:24: Using Pango syntax for the font: style property is deprecated; please use CSS syntax

(zenity:26454): Gtk-WARNING **: Theme parsing error: gtk-widgets.css:1953:14: not a number

(zenity:26454): Gtk-WARNING **: Theme parsing error: gtk-widgets.css:1953:14: Expected a string.

(zenity:26454): Gtk-WARNING **: Theme parsing error: nautilus.css:50:71: Using one color stop with linear-gradient() is deprecated.

(zenity:26454): Gtk-WARNING **: Theme parsing error: nautilus.css:51:71: Using one color stop with linear-gradient() is deprecated.

(zenity:26454): Gtk-WARNING **: Theme parsing error: gtk-lubuntu.css:252:14: not a number

(zenity:26454): Gtk-WARNING **: Theme parsing error: gtk-lubuntu.css:252:14: Expected a string.
Gtk-Message: GtkDialog mapped without a transient parent. This is discouraged.
SET@_checkbutton_legacy.set_sensitive(False)
SET@_button_open_etc_default_grub.hide()
SET@_checkbutton_purge_grub.set_active(True)
SET@_checkbutton_purge_grub.set_sensitive(False)
[debug]LASTGRUB_ACTION becomes: upgrade-grub
DEBUG=> in bash NOT GET _checkbutton_lastgrub False
SET@_checkbutton_legacy.set_sensitive(True)
SET@_button_open_etc_default_grub.hide()
SET@_checkbutton_purge_grub.set_active(True)
SET@_checkbutton_purge_grub.set_sensitive(False)
[debug]LASTGRUB_ACTION becomes: 
DEBUG=> in bash NOT GET _checkbutton_ata True
[debug]ATA becomes :  --disk-module=ata
DEBUG=> in bash NOT GET _button_mainapply clicked
SET@_mainwindow.hide()
SET@pulsatewindow.show()
SET@_label0.set_text('''Applying changes. This may require several minutes...''')
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
[debug]internet: connected
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
[debug]internet: connected


=================== Default settings of Boot Repair
The default repair of the Boot-Repair utility would purge (in order to) and reinstall the grub2 of sda2 into the MBRs of all disks (except USB without OS).
Additional repair would be performed: unhide-bootmenu-10s      


=================== Final advice in case of suggested repair
Please do not forget to make your BIOS boot on sda (160GB) disk!


=================== User settings
[debug] debug_echo_important_variables
The settings chosen by the user will purge (in order to fix legacy files) and reinstall the grub2 of sdb1 into the MBR of sdb, using the following options:     --disk-module=ata   
Additional repair will be performed: unhide-bootmenu-10s      


[debug]/media/lubuntu/8b663c7f-fd77-4e3a-96c3-40bbb35457c0/etc/fstab unchanged for /boot
[debug]/media/lubuntu/8b663c7f-fd77-4e3a-96c3-40bbb35457c0/etc/fstab unchanged for /usr
SET@_progressbar1.pulse()
[debug]/media/lubuntu/8b663c7f-fd77-4e3a-96c3-40bbb35457c0/etc/fstab unchanged for /boot/efi
[debug]Freed space function
SET@_label0.set_text('''Checking full partitions. This may require several minutes...''')
[debug]force_unmount_and_prepare_chroot
[debug]Unmount all OS partitions except / and partition where we reinstall GRUB (sdb1)
SET@_label0.set_text('''Unmount all except sdb1. This may require several minutes...''')
umount: /isodevice: target is busy
        (In some cases useful info about processes that
         use the device is found by lsof(8) or fuser(1).)
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
[debug]prepare_chroot
SET@_label0.set_text('''Applying changes. (chroot). This may require several minutes...''')
SET@_progressbar1.pulse()
[debug] Already mounted /dev/sdb1 on /media/lubuntu/8b663c7f-fd77-4e3a-96c3-40bbb35457c0
SET@_progressbar1.pulse()
[debug] mount_separate_boot_if_required yes , , grub2 ,
SET@_progressbar1.pulse()
SET@_label0.set_text('''Purge sdb1 (dep). This may require several minutes...''')
[debug]Repair repositories in /media/lubuntu/8b663c7f-fd77-4e3a-96c3-40bbb35457c0/etc/apt/sources.list
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_label0.set_text('''Purge and reinstall the GRUB of: sdb1 (upd). This may require several minutes...''')
chroot /media/lubuntu/8b663c7f-fd77-4e3a-96c3-40bbb35457c0 apt-get -y --force-yes update
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
Purge the GRUB of sdb1
SET@_label0.set_text('''Purge and reinstall the GRUB of: sdb1. This may require several minutes...''')
SET@_purgewindow.set_title('''Boot Repair''')
SET@_purgewindow.set_icon_from_file('''x-boot-repair.png''')
SET@_label0.set_text('''Purge and reinstall the GRUB of: sdb1 (tst). This may require several minutes...''')
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
grub-pc available
SET@_label0.set_text('''Purge and reinstall the GRUB of: sdb1 (dwn). This may require several minutes...''')
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
Reading package lists...SET@_progressbar1.pulse()

Building dependency tree...SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()

Reading state information...
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
The following additional packages will be installed:
SET@_progressbar1.pulse()
  grub-common grub-pc-bin grub2-common
Suggested packages:
  multiboot-doc grub-emu xorriso desktop-base
The following packages will be upgraded:
  grub-common grub-pc grub-pc-bin grub2-common
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
4 upgraded, 0 newly installed, 0 to remove and 101 not upgraded.
Need to get 3,394 kB of archives.
After this operation, 0 B of additional disk space will be used.
Get:1 http://fr.archive.ubuntu.com/ubuntu yakkety-updates/main i386 grub-pc i386 2.02~beta2-36ubuntu11.2 [197 kB]
SET@_progressbar1.pulse()
Get:2 http://fr.archive.ubuntu.com/ubuntu yakkety-updates/main i386 grub2-common i386 2.02~beta2-36ubuntu11.2 [545 kB]
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
Get:3 http://fr.archive.ubuntu.com/ubuntu yakkety-updates/main i386 grub-pc-bin i386 2.02~beta2-36ubuntu11.2 [913 kB]
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
Get:4 http://fr.archive.ubuntu.com/ubuntu yakkety-updates/main i386 grub-common i386 2.02~beta2-36ubuntu11.2 [1,739 kB]
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
Fetched 3,394 kB in 2s (1,216 kB/s)
Download complete and in download only mode
W: --force-yes is deprecated, use one of the options starting with --allow instead.
DEBCHECK debOK, grub-pc
DEBCHECK debOK
SET@_hbox_kernelpurgebuttons.hide()
SET@_hbox_grubpurgebuttons.show()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
shim-signed NOT available (apt-cache policy  problem)
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
linux-signed-generic NOT available (apt-cache policy  problem)
Please type: sudo chroot "/media/lubuntu/8b663c7f-fd77-4e3a-96c3-40bbb35457c0" dpkg --configure -a\nsudo chroot "/media/lubuntu/8b663c7f-fd77-4e3a-96c3-40bbb35457c0" apt-get install -fy\nsudo chroot "/media/lubuntu/8b663c7f-fd77-4e3a-96c3-40bbb35457c0" apt-get purge -y --force-yes grub*-common grub-common:i386
SET@_image_purgegrub.show()
SET@_image_installgrub.hide()
SET@_button_cancelpurgegrub.show()
SET@_button_nextpurgegrub.show()
SET@_button_abortinstallgrub.hide()
SET@_button_nextinstallgrub.hide()
SET@_label8.set_text('''Please open a terminal then type (or copy-paste) the following commands:''')
SET@_label9.set_text('''sudo chroot "/media/lubuntu/8b663c7f-fd77-4e3a-96c3-40bbb35457c0" dpkg --configure -a\nsudo chroot "/media/lubuntu/8b663c7f-fd77-4e3a-96c3-40bbb35457c0" apt-get install -fy\nsudo chroot "/media/lubuntu/8b663c7f-fd77-4e3a-96c3-40bbb35457c0" apt-get purge -y --force-yes grub*-common grub-common:i386''')
SET@_label10.set_text('''\nIf a window similar to the one below appears, use Tab and Enter keys in order to confirm GRUB removal.\n''')
SET@_image_purgegrub.show()
SET@pulsatewindow.hide()
SET@_purgewindow.show()
DEBUG=> in bash NOT GET _button_nextpurgegrub clicked
gui-scan.sh: line 518: 26479 Terminated              while true; do
    echo 'SET@_progressbar1.pulse()'; sleep 0.2;
done
[debug] sda1 ends at 87672487424GB. not-far
[debug] sda1 ends at 87672487424GB. not-far
[debug] partedlm
[debug] BYT; <BYT;>1>
[debug] /dev/sda:160GB:scsi:512:512:msdos:ATA ST9160310AS:; </dev/sda>1>
[debug] 1:1049kB:87.7GB:87.7GB:ext4::; <1>1>
[debug] 2:87.7GB:125GB:37.2GB:ext4::boot; <2>1>
[debug] 3:125GB:127GB:2097MB:linux-swap(v1)::; <3>1>
[debug] 4:127GB:160GB:33.1GB:ext4::; <4>1>
[debug]  <>1>
[debug] BYT; <BYT;>1>
[debug] /dev/sdb:250GB:scsi:512:512:msdos:ATA WDC WD2500BEVT-2:; </dev/sdb>1>
[debug] 1:1049kB:87.0GB:87.0GB:ext4::; <1>1>
[debug] 2:87.0GB:89.1GB:2147MB:linux-swap(v1)::; <2>1>
[debug] 3:89.1GB:216GB:127GB:ext4::; <3>1>
[debug] 4:216GB:250GB:33.8GB:ext4::boot; <4>1>
[debug]  <>1>
[debug] BYT; <BYT;>1>
[debug] /dev/zram1:525MB:unknown:4096:4096:loop:Unknown:; </dev/zram1>1>
[debug] 1:0.00B:525MB:525MB:linux-swap(v1)::; <1>1>
[debug]  <>1>
[debug] BYT; <BYT;>1>
[debug] /dev/zram0:525MB:unknown:4096:4096:loop:Unknown:; </dev/zram0>1>
[debug] 1:0.00B:525MB:525MB:linux-swap(v1)::; <1>1>

=================== /isodevice/etc/grub.d/ :
drwxr-xr-x  2 root root     4096 Apr 27 09:57 grub.d
total 84
-rwxr-xr-x 1 root root  9791 Jan 13 16:33 00_header
-rwxr-xr-x 1 root root  6258 Mar 15  2016 05_debian_theme
-rwxr-xr-x 1 root root 12512 Mar 24 06:35 10_linux
-rwxr-xr-x 1 root root 11082 Jan 13 16:33 20_linux_xen
-rwxr-xr-x 1 root root  1992 Jan 28  2016 20_memtest86+
-rwxr-xr-x 1 root root 11692 Jan 13 16:33 30_os-prober
-rwxr-xr-x 1 root root  1418 Jan 13 16:33 30_uefi-firmware
-rwxr-xr-x 1 root root   214 Jan 13 16:33 40_custom
-rwxr-xr-x 1 root root   216 Jan 13 16:33 41_custom
-rwxr-xr-x 1 root root  3280 Jun 19  2015 42_grml
-rw-r--r-- 1 root root   483 Jan 13 16:33 README




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



[debug] sda2 ends at 124854992384GB. farbios
[debug] sda2 ends at 124854992384GB. farbios
[debug] partedlm
[debug] BYT; <BYT;>2>
[debug] /dev/sda:160GB:scsi:512:512:msdos:ATA ST9160310AS:; </dev/sda>2>
[debug] 1:1049kB:87.7GB:87.7GB:ext4::; <1>2>
[debug] 2:87.7GB:125GB:37.2GB:ext4::boot; <2>2>
[debug] 3:125GB:127GB:2097MB:linux-swap(v1)::; <3>2>
[debug] 4:127GB:160GB:33.1GB:ext4::; <4>2>
[debug]  <>2>
[debug] BYT; <BYT;>2>
[debug] /dev/sdb:250GB:scsi:512:512:msdos:ATA WDC WD2500BEVT-2:; </dev/sdb>2>
[debug] 1:1049kB:87.0GB:87.0GB:ext4::; <1>2>
[debug] 2:87.0GB:89.1GB:2147MB:linux-swap(v1)::; <2>2>
[debug] 3:89.1GB:216GB:127GB:ext4::; <3>2>
[debug] 4:216GB:250GB:33.8GB:ext4::boot; <4>2>
[debug]  <>2>
[debug] BYT; <BYT;>2>
[debug] /dev/zram1:525MB:unknown:4096:4096:loop:Unknown:; </dev/zram1>2>
[debug] 1:0.00B:525MB:525MB:linux-swap(v1)::; <1>2>
[debug]  <>2>
[debug] BYT; <BYT;>2>
[debug] /dev/zram0:525MB:unknown:4096:4096:loop:Unknown:; </dev/zram0>2>
[debug] 1:0.00B:525MB:525MB:linux-swap(v1)::; <1>2>
[debug] sda4 ends at 160041008640GB. farbios
[debug] sda4 ends at 160041008640GB. farbios
[debug] partedlm
[debug] BYT; <BYT;>4>
[debug] /dev/sda:160GB:scsi:512:512:msdos:ATA ST9160310AS:; </dev/sda>4>
[debug] 1:1049kB:87.7GB:87.7GB:ext4::; <1>4>
[debug] 2:87.7GB:125GB:37.2GB:ext4::boot; <2>4>
[debug] 3:125GB:127GB:2097MB:linux-swap(v1)::; <3>4>
[debug] 4:127GB:160GB:33.1GB:ext4::; <4>4>
[debug]  <>4>
[debug] BYT; <BYT;>4>
[debug] /dev/sdb:250GB:scsi:512:512:msdos:ATA WDC WD2500BEVT-2:; </dev/sdb>4>
[debug] 1:1049kB:87.0GB:87.0GB:ext4::; <1>4>
[debug] 2:87.0GB:89.1GB:2147MB:linux-swap(v1)::; <2>4>
[debug] 3:89.1GB:216GB:127GB:ext4::; <3>4>
[debug] 4:216GB:250GB:33.8GB:ext4::boot; <4>4>
[debug]  <>4>
[debug] BYT; <BYT;>4>
[debug] /dev/zram1:525MB:unknown:4096:4096:loop:Unknown:; </dev/zram1>4>
[debug] 1:0.00B:525MB:525MB:linux-swap(v1)::; <1>4>
[debug]  <>4>
[debug] BYT; <BYT;>4>
[debug] /dev/zram0:525MB:unknown:4096:4096:loop:Unknown:; </dev/zram0>4>
[debug] 1:0.00B:525MB:525MB:linux-swap(v1)::; <1>4>

=================== /media/lubuntu/8b663c7f-fd77-4e3a-96c3-40bbb35457c0/etc/grub.d/ :
drwxr-xr-x  2 root root     4096 May 18 08:44 grub.d
total 4
-rwxr-xr-x 1 root root 1992 Jan 28  2016 20_memtest86+


[debug] sdb1 ends at 86974135808GB. not-far
[debug] sdb1 ends at 86974135808GB. not-far
[debug] partedlm
[debug] BYT; <BYT;>1>
[debug] /dev/sda:160GB:scsi:512:512:msdos:ATA ST9160310AS:; </dev/sda>1>
[debug] 1:1049kB:87.7GB:87.7GB:ext4::; <1>1>
[debug] 2:87.7GB:125GB:37.2GB:ext4::boot; <2>1>
[debug] 3:125GB:127GB:2097MB:linux-swap(v1)::; <3>1>
[debug] 4:127GB:160GB:33.1GB:ext4::; <4>1>
[debug]  <>1>
[debug] BYT; <BYT;>1>
[debug] /dev/sdb:250GB:scsi:512:512:msdos:ATA WDC WD2500BEVT-2:; </dev/sdb>1>
[debug] 1:1049kB:87.0GB:87.0GB:ext4::; <1>1>
[debug] 2:87.0GB:89.1GB:2147MB:linux-swap(v1)::; <2>1>
[debug] 3:89.1GB:216GB:127GB:ext4::; <3>1>
[debug] 4:216GB:250GB:33.8GB:ext4::boot; <4>1>
[debug]  <>1>
[debug] BYT; <BYT;>1>
[debug] /dev/zram1:525MB:unknown:4096:4096:loop:Unknown:; </dev/zram1>1>
[debug] 1:0.00B:525MB:525MB:linux-swap(v1)::; <1>1>
[debug]  <>1>
[debug] BYT; <BYT;>1>
[debug] /dev/zram0:525MB:unknown:4096:4096:loop:Unknown:; </dev/zram0>1>
[debug] 1:0.00B:525MB:525MB:linux-swap(v1)::; <1>1>
[debug] sdb3 ends at 216262508032GB. farbios
[debug] sdb3 ends at 216262508032GB. farbios
[debug] partedlm
[debug] BYT; <BYT;>3>
[debug] /dev/sda:160GB:scsi:512:512:msdos:ATA ST9160310AS:; </dev/sda>3>
[debug] 1:1049kB:87.7GB:87.7GB:ext4::; <1>3>
[debug] 2:87.7GB:125GB:37.2GB:ext4::boot; <2>3>
[debug] 3:125GB:127GB:2097MB:linux-swap(v1)::; <3>3>
[debug] 4:127GB:160GB:33.1GB:ext4::; <4>3>
[debug]  <>3>
[debug] BYT; <BYT;>3>
[debug] /dev/sdb:250GB:scsi:512:512:msdos:ATA WDC WD2500BEVT-2:; </dev/sdb>3>
[debug] 1:1049kB:87.0GB:87.0GB:ext4::; <1>3>
[debug] 2:87.0GB:89.1GB:2147MB:linux-swap(v1)::; <2>3>
[debug] 3:89.1GB:216GB:127GB:ext4::; <3>3>
[debug] 4:216GB:250GB:33.8GB:ext4::boot; <4>3>
[debug]  <>3>
[debug] BYT; <BYT;>3>
[debug] /dev/zram1:525MB:unknown:4096:4096:loop:Unknown:; </dev/zram1>3>
[debug] 1:0.00B:525MB:525MB:linux-swap(v1)::; <1>3>
[debug]  <>3>
[debug] BYT; <BYT;>3>
[debug] /dev/zram0:525MB:unknown:4096:4096:loop:Unknown:; </dev/zram0>3>
[debug] 1:0.00B:525MB:525MB:linux-swap(v1)::; <1>3>
[debug] sdb4 ends at 250059161088GB. farbios
[debug] sdb4 ends at 250059161088GB. farbios
ls: cannot access '/media/lubuntu/05105719-2200-4440-8c85-0ee0fed385ca/': No such file or directory
[debug] partedlm
[debug] BYT; <BYT;>4>
[debug] /dev/sda:160GB:scsi:512:512:msdos:ATA ST9160310AS:; </dev/sda>4>
[debug] 1:1049kB:87.7GB:87.7GB:ext4::; <1>4>
[debug] 2:87.7GB:125GB:37.2GB:ext4::boot; <2>4>
[debug] 3:125GB:127GB:2097MB:linux-swap(v1)::; <3>4>
[debug] 4:127GB:160GB:33.1GB:ext4::; <4>4>
[debug]  <>4>
[debug] BYT; <BYT;>4>
[debug] /dev/sdb:250GB:scsi:512:512:msdos:ATA WDC WD2500BEVT-2:; </dev/sdb>4>
[debug] 1:1049kB:87.0GB:87.0GB:ext4::; <1>4>
[debug] 2:87.0GB:89.1GB:2147MB:linux-swap(v1)::; <2>4>
[debug] 3:89.1GB:216GB:127GB:ext4::; <3>4>
[debug] 4:216GB:250GB:33.8GB:ext4::boot; <4>4>
[debug]  <>4>
[debug] BYT; <BYT;>4>
[debug] /dev/zram1:525MB:unknown:4096:4096:loop:Unknown:; </dev/zram1>4>
[debug] 1:0.00B:525MB:525MB:linux-swap(v1)::; <1>4>
[debug]  <>4>
[debug] BYT; <BYT;>4>
[debug] /dev/zram0:525MB:unknown:4096:4096:loop:Unknown:; </dev/zram0>4>
[debug] 1:0.00B:525MB:525MB:linux-swap(v1)::; <1>4>
Then type: sudo chroot "/media/lubuntu/8b663c7f-fd77-4e3a-96c3-40bbb35457c0" apt-get install -y --force-yes grub-pc
SET@_label8.set_text('''Now please type (or copy-paste) the following command in a terminal:''')
SET@_label9.set_text('''sudo chroot "/media/lubuntu/8b663c7f-fd77-4e3a-96c3-40bbb35457c0" apt-get install -y --force-yes grub-pc''')
SET@_label10.set_text('''\nIf a menu similar to the one below appears, use Tab, Space and Enter keys in order to install GRUB in the disk you wish.\n''')
SET@_image_installgrub.show()
SET@_image_purgegrub.hide()
SET@_button_cancelpurgegrub.hide()
SET@_button_nextpurgegrub.hide()
SET@_button_abortinstallgrub.show()
SET@_button_nextinstallgrub.show()
DEBUG=> in bash NOT GET _button_nextinstallgrub clicked
[debug] sda1 ends at 87672487424GB. not-far
[debug] sda1 ends at 87672487424GB. not-far
[debug] partedlm
[debug] BYT; <BYT;>1>
[debug] /dev/sda:160GB:scsi:512:512:msdos:ATA ST9160310AS:; </dev/sda>1>
[debug] 1:1049kB:87.7GB:87.7GB:ext4::; <1>1>
[debug] 2:87.7GB:125GB:37.2GB:ext4::boot; <2>1>
[debug] 3:125GB:127GB:2097MB:linux-swap(v1)::; <3>1>
[debug] 4:127GB:160GB:33.1GB:ext4::; <4>1>
[debug]  <>1>
[debug] BYT; <BYT;>1>
[debug] /dev/sdb:250GB:scsi:512:512:msdos:ATA WDC WD2500BEVT-2:; </dev/sdb>1>
[debug] 1:1049kB:87.0GB:87.0GB:ext4::; <1>1>
[debug] 2:87.0GB:89.1GB:2147MB:linux-swap(v1)::; <2>1>
[debug] 3:89.1GB:216GB:127GB:ext4::; <3>1>
[debug] 4:216GB:250GB:33.8GB:ext4::boot; <4>1>
[debug]  <>1>
[debug] BYT; <BYT;>1>
[debug] /dev/zram1:525MB:unknown:4096:4096:loop:Unknown:; </dev/zram1>1>
[debug] 1:0.00B:525MB:525MB:linux-swap(v1)::; <1>1>
[debug]  <>1>
[debug] BYT; <BYT;>1>
[debug] /dev/zram0:525MB:unknown:4096:4096:loop:Unknown:; </dev/zram0>1>
[debug] 1:0.00B:525MB:525MB:linux-swap(v1)::; <1>1>

=================== /isodevice/etc/grub.d/ :
drwxr-xr-x  2 root root     4096 Apr 27 09:57 grub.d
total 84
-rwxr-xr-x 1 root root  9791 Jan 13 16:33 00_header
-rwxr-xr-x 1 root root  6258 Mar 15  2016 05_debian_theme
-rwxr-xr-x 1 root root 12512 Mar 24 06:35 10_linux
-rwxr-xr-x 1 root root 11082 Jan 13 16:33 20_linux_xen
-rwxr-xr-x 1 root root  1992 Jan 28  2016 20_memtest86+
-rwxr-xr-x 1 root root 11692 Jan 13 16:33 30_os-prober
-rwxr-xr-x 1 root root  1418 Jan 13 16:33 30_uefi-firmware
-rwxr-xr-x 1 root root   214 Jan 13 16:33 40_custom
-rwxr-xr-x 1 root root   216 Jan 13 16:33 41_custom
-rwxr-xr-x 1 root root  3280 Jun 19  2015 42_grml
-rw-r--r-- 1 root root   483 Jan 13 16:33 README




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



[debug] sda2 ends at 124854992384GB. farbios
[debug] sda2 ends at 124854992384GB. farbios
[debug] partedlm
[debug] BYT; <BYT;>2>
[debug] /dev/sda:160GB:scsi:512:512:msdos:ATA ST9160310AS:; </dev/sda>2>
[debug] 1:1049kB:87.7GB:87.7GB:ext4::; <1>2>
[debug] 2:87.7GB:125GB:37.2GB:ext4::boot; <2>2>
[debug] 3:125GB:127GB:2097MB:linux-swap(v1)::; <3>2>
[debug] 4:127GB:160GB:33.1GB:ext4::; <4>2>
[debug]  <>2>
[debug] BYT; <BYT;>2>
[debug] /dev/sdb:250GB:scsi:512:512:msdos:ATA WDC WD2500BEVT-2:; </dev/sdb>2>
[debug] 1:1049kB:87.0GB:87.0GB:ext4::; <1>2>
[debug] 2:87.0GB:89.1GB:2147MB:linux-swap(v1)::; <2>2>
[debug] 3:89.1GB:216GB:127GB:ext4::; <3>2>
[debug] 4:216GB:250GB:33.8GB:ext4::boot; <4>2>
[debug]  <>2>
[debug] BYT; <BYT;>2>
[debug] /dev/zram1:525MB:unknown:4096:4096:loop:Unknown:; </dev/zram1>2>
[debug] 1:0.00B:525MB:525MB:linux-swap(v1)::; <1>2>
[debug]  <>2>
[debug] BYT; <BYT;>2>
[debug] /dev/zram0:525MB:unknown:4096:4096:loop:Unknown:; </dev/zram0>2>
[debug] 1:0.00B:525MB:525MB:linux-swap(v1)::; <1>2>
[debug] sda4 ends at 160041008640GB. farbios
[debug] sda4 ends at 160041008640GB. farbios
[debug] partedlm
[debug] BYT; <BYT;>4>
[debug] /dev/sda:160GB:scsi:512:512:msdos:ATA ST9160310AS:; </dev/sda>4>
[debug] 1:1049kB:87.7GB:87.7GB:ext4::; <1>4>
[debug] 2:87.7GB:125GB:37.2GB:ext4::boot; <2>4>
[debug] 3:125GB:127GB:2097MB:linux-swap(v1)::; <3>4>
[debug] 4:127GB:160GB:33.1GB:ext4::; <4>4>
[debug]  <>4>
[debug] BYT; <BYT;>4>
[debug] /dev/sdb:250GB:scsi:512:512:msdos:ATA WDC WD2500BEVT-2:; </dev/sdb>4>
[debug] 1:1049kB:87.0GB:87.0GB:ext4::; <1>4>
[debug] 2:87.0GB:89.1GB:2147MB:linux-swap(v1)::; <2>4>
[debug] 3:89.1GB:216GB:127GB:ext4::; <3>4>
[debug] 4:216GB:250GB:33.8GB:ext4::boot; <4>4>
[debug]  <>4>
[debug] BYT; <BYT;>4>
[debug] /dev/zram1:525MB:unknown:4096:4096:loop:Unknown:; </dev/zram1>4>
[debug] 1:0.00B:525MB:525MB:linux-swap(v1)::; <1>4>
[debug]  <>4>
[debug] BYT; <BYT;>4>
[debug] /dev/zram0:525MB:unknown:4096:4096:loop:Unknown:; </dev/zram0>4>
[debug] 1:0.00B:525MB:525MB:linux-swap(v1)::; <1>4>

=================== /media/lubuntu/8b663c7f-fd77-4e3a-96c3-40bbb35457c0/etc/grub.d/ :
drwxr-xr-x  2 root root     4096 May 18 08:45 grub.d
drwxr-xr-x  2 root root     4096 May 18 08:44 grub.d.bak
total 72
-rwxr-xr-x 1 root root  9791 Sep 22  2016 00_header
-rwxr-xr-x 1 root root  6258 Mar 15  2016 05_debian_theme
-rwxr-xr-x 1 root root 12261 Sep 22  2016 10_linux
-rwxr-xr-x 1 root root 11082 Sep 22  2016 20_linux_xen
-rwxr-xr-x 1 root root 11692 Sep 22  2016 30_os-prober
-rwxr-xr-x 1 root root  1418 Sep 22  2016 30_uefi-firmware
-rwxr-xr-x 1 root root   214 Sep 22  2016 40_custom
-rwxr-xr-x 1 root root   216 Sep 22  2016 41_custom
-rw-r--r-- 1 root root   483 Sep 22  2016 README




=================== /media/lubuntu/8b663c7f-fd77-4e3a-96c3-40bbb35457c0/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"



[debug] sdb1 ends at 86974135808GB. not-far
[debug] sdb1 ends at 86974135808GB. not-far
[debug] partedlm
[debug] BYT; <BYT;>1>
[debug] /dev/sda:160GB:scsi:512:512:msdos:ATA ST9160310AS:; </dev/sda>1>
[debug] 1:1049kB:87.7GB:87.7GB:ext4::; <1>1>
[debug] 2:87.7GB:125GB:37.2GB:ext4::boot; <2>1>
[debug] 3:125GB:127GB:2097MB:linux-swap(v1)::; <3>1>
[debug] 4:127GB:160GB:33.1GB:ext4::; <4>1>
[debug]  <>1>
[debug] BYT; <BYT;>1>
[debug] /dev/sdb:250GB:scsi:512:512:msdos:ATA WDC WD2500BEVT-2:; </dev/sdb>1>
[debug] 1:1049kB:87.0GB:87.0GB:ext4::; <1>1>
[debug] 2:87.0GB:89.1GB:2147MB:linux-swap(v1)::; <2>1>
[debug] 3:89.1GB:216GB:127GB:ext4::; <3>1>
[debug] 4:216GB:250GB:33.8GB:ext4::boot; <4>1>
[debug]  <>1>
[debug] BYT; <BYT;>1>
[debug] /dev/zram1:525MB:unknown:4096:4096:loop:Unknown:; </dev/zram1>1>
[debug] 1:0.00B:525MB:525MB:linux-swap(v1)::; <1>1>
[debug]  <>1>
[debug] BYT; <BYT;>1>
[debug] /dev/zram0:525MB:unknown:4096:4096:loop:Unknown:; </dev/zram0>1>
[debug] 1:0.00B:525MB:525MB:linux-swap(v1)::; <1>1>
[debug] sdb3 ends at 216262508032GB. farbios
[debug] sdb3 ends at 216262508032GB. farbios
[debug] partedlm
[debug] BYT; <BYT;>3>
[debug] /dev/sda:160GB:scsi:512:512:msdos:ATA ST9160310AS:; </dev/sda>3>
[debug] 1:1049kB:87.7GB:87.7GB:ext4::; <1>3>
[debug] 2:87.7GB:125GB:37.2GB:ext4::boot; <2>3>
[debug] 3:125GB:127GB:2097MB:linux-swap(v1)::; <3>3>
[debug] 4:127GB:160GB:33.1GB:ext4::; <4>3>
[debug]  <>3>
[debug] BYT; <BYT;>3>
[debug] /dev/sdb:250GB:scsi:512:512:msdos:ATA WDC WD2500BEVT-2:; </dev/sdb>3>
[debug] 1:1049kB:87.0GB:87.0GB:ext4::; <1>3>
[debug] 2:87.0GB:89.1GB:2147MB:linux-swap(v1)::; <2>3>
[debug] 3:89.1GB:216GB:127GB:ext4::; <3>3>
[debug] 4:216GB:250GB:33.8GB:ext4::boot; <4>3>
[debug]  <>3>
[debug] BYT; <BYT;>3>
[debug] /dev/zram1:525MB:unknown:4096:4096:loop:Unknown:; </dev/zram1>3>
[debug] 1:0.00B:525MB:525MB:linux-swap(v1)::; <1>3>
[debug]  <>3>
[debug] BYT; <BYT;>3>
[debug] /dev/zram0:525MB:unknown:4096:4096:loop:Unknown:; </dev/zram0>3>
[debug] 1:0.00B:525MB:525MB:linux-swap(v1)::; <1>3>
[debug] sdb4 ends at 250059161088GB. farbios
[debug] sdb4 ends at 250059161088GB. farbios
ls: cannot access '/media/lubuntu/05105719-2200-4440-8c85-0ee0fed385ca/': No such file or directory
[debug] partedlm
[debug] BYT; <BYT;>4>
[debug] /dev/sda:160GB:scsi:512:512:msdos:ATA ST9160310AS:; </dev/sda>4>
[debug] 1:1049kB:87.7GB:87.7GB:ext4::; <1>4>
[debug] 2:87.7GB:125GB:37.2GB:ext4::boot; <2>4>
[debug] 3:125GB:127GB:2097MB:linux-swap(v1)::; <3>4>
[debug] 4:127GB:160GB:33.1GB:ext4::; <4>4>
[debug]  <>4>
[debug] BYT; <BYT;>4>
[debug] /dev/sdb:250GB:scsi:512:512:msdos:ATA WDC WD2500BEVT-2:; </dev/sdb>4>
[debug] 1:1049kB:87.0GB:87.0GB:ext4::; <1>4>
[debug] 2:87.0GB:89.1GB:2147MB:linux-swap(v1)::; <2>4>
[debug] 3:89.1GB:216GB:127GB:ext4::; <3>4>
[debug] 4:216GB:250GB:33.8GB:ext4::boot; <4>4>
[debug]  <>4>
[debug] BYT; <BYT;>4>
[debug] /dev/zram1:525MB:unknown:4096:4096:loop:Unknown:; </dev/zram1>4>
[debug] 1:0.00B:525MB:525MB:linux-swap(v1)::; <1>4>
[debug]  <>4>
[debug] BYT; <BYT;>4>
[debug] /dev/zram0:525MB:unknown:4096:4096:loop:Unknown:; </dev/zram0>4>
[debug] 1:0.00B:525MB:525MB:linux-swap(v1)::; <1>4>
SET@_purgewindow.hide()
SET@pulsatewindow.show()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_label0.set_text('''Purge and reinstall the GRUB of: sdb1 (fin). This may require several minutes...''')
SET@_label0.set_text('''Unhide boot menu. This may require several minutes...''')
SET@_label0.set_text('''Unhide boot menu. This may require several minutes...''')
Unhide GRUB boot menu in sdb1/etc/default/grub
SET@_progressbar1.pulse()
[debug] sda1 ends at 87672487424GB. not-far
[debug] sda1 ends at 87672487424GB. not-far
[debug] partedlm
[debug] BYT; <BYT;>1>
[debug] /dev/sda:160GB:scsi:512:512:msdos:ATA ST9160310AS:; </dev/sda>1>
[debug] 1:1049kB:87.7GB:87.7GB:ext4::; <1>1>
[debug] 2:87.7GB:125GB:37.2GB:ext4::boot; <2>1>
[debug] 3:125GB:127GB:2097MB:linux-swap(v1)::; <3>1>
[debug] 4:127GB:160GB:33.1GB:ext4::; <4>1>
[debug]  <>1>
[debug] BYT; <BYT;>1>
[debug] /dev/sdb:250GB:scsi:512:512:msdos:ATA WDC WD2500BEVT-2:; </dev/sdb>1>
[debug] 1:1049kB:87.0GB:87.0GB:ext4::; <1>1>
[debug] 2:87.0GB:89.1GB:2147MB:linux-swap(v1)::; <2>1>
[debug] 3:89.1GB:216GB:127GB:ext4::; <3>1>
[debug] 4:216GB:250GB:33.8GB:ext4::boot; <4>1>
[debug]  <>1>
[debug] BYT; <BYT;>1>
[debug] /dev/zram1:525MB:unknown:4096:4096:loop:Unknown:; </dev/zram1>1>
[debug] 1:0.00B:525MB:525MB:linux-swap(v1)::; <1>1>
[debug]  <>1>
[debug] BYT; <BYT;>1>
[debug] /dev/zram0:525MB:unknown:4096:4096:loop:Unknown:; </dev/zram0>1>
[debug] 1:0.00B:525MB:525MB:linux-swap(v1)::; <1>1>
SET@_progressbar1.pulse()

=================== /isodevice/etc/grub.d/ :
drwxr-xr-x  2 root root     4096 Apr 27 09:57 grub.d
total 84
-rwxr-xr-x 1 root root  9791 Jan 13 16:33 00_header
-rwxr-xr-x 1 root root  6258 Mar 15  2016 05_debian_theme
-rwxr-xr-x 1 root root 12512 Mar 24 06:35 10_linux
-rwxr-xr-x 1 root root 11082 Jan 13 16:33 20_linux_xen
-rwxr-xr-x 1 root root  1992 Jan 28  2016 20_memtest86+
-rwxr-xr-x 1 root root 11692 Jan 13 16:33 30_os-prober
-rwxr-xr-x 1 root root  1418 Jan 13 16:33 30_uefi-firmware
-rwxr-xr-x 1 root root   214 Jan 13 16:33 40_custom
-rwxr-xr-x 1 root root   216 Jan 13 16:33 41_custom
-rwxr-xr-x 1 root root  3280 Jun 19  2015 42_grml
-rw-r--r-- 1 root root   483 Jan 13 16:33 README


SET@_progressbar1.pulse()


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



SET@_progressbar1.pulse()
[debug] sda2 ends at 124854992384GB. farbios
[debug] sda2 ends at 124854992384GB. farbios
[debug] partedlm
[debug] BYT; <BYT;>2>
[debug] /dev/sda:160GB:scsi:512:512:msdos:ATA ST9160310AS:; </dev/sda>2>
[debug] 1:1049kB:87.7GB:87.7GB:ext4::; <1>2>
[debug] 2:87.7GB:125GB:37.2GB:ext4::boot; <2>2>
[debug] 3:125GB:127GB:2097MB:linux-swap(v1)::; <3>2>
[debug] 4:127GB:160GB:33.1GB:ext4::; <4>2>
[debug]  <>2>
[debug] BYT; <BYT;>2>
[debug] /dev/sdb:250GB:scsi:512:512:msdos:ATA WDC WD2500BEVT-2:; </dev/sdb>2>
[debug] 1:1049kB:87.0GB:87.0GB:ext4::; <1>2>
[debug] 2:87.0GB:89.1GB:2147MB:linux-swap(v1)::; <2>2>
[debug] 3:89.1GB:216GB:127GB:ext4::; <3>2>
[debug] 4:216GB:250GB:33.8GB:ext4::boot; <4>2>
[debug]  <>2>
[debug] BYT; <BYT;>2>
SET@_progressbar1.pulse()
[debug] /dev/zram1:525MB:unknown:4096:4096:loop:Unknown:; </dev/zram1>2>
[debug] 1:0.00B:525MB:525MB:linux-swap(v1)::; <1>2>
[debug]  <>2>
[debug] BYT; <BYT;>2>
[debug] /dev/zram0:525MB:unknown:4096:4096:loop:Unknown:; </dev/zram0>2>
[debug] 1:0.00B:525MB:525MB:linux-swap(v1)::; <1>2>
[debug] sda4 ends at 160041008640GB. farbios
[debug] sda4 ends at 160041008640GB. farbios
[debug] partedlm
[debug] BYT; <BYT;>4>
[debug] /dev/sda:160GB:scsi:512:512:msdos:ATA ST9160310AS:; </dev/sda>4>
[debug] 1:1049kB:87.7GB:87.7GB:ext4::; <1>4>
[debug] 2:87.7GB:125GB:37.2GB:ext4::boot; <2>4>
[debug] 3:125GB:127GB:2097MB:linux-swap(v1)::; <3>4>
[debug] 4:127GB:160GB:33.1GB:ext4::; <4>4>
SET@_progressbar1.pulse()
[debug]  <>4>
[debug] BYT; <BYT;>4>
[debug] /dev/sdb:250GB:scsi:512:512:msdos:ATA WDC WD2500BEVT-2:; </dev/sdb>4>
[debug] 1:1049kB:87.0GB:87.0GB:ext4::; <1>4>
[debug] 2:87.0GB:89.1GB:2147MB:linux-swap(v1)::; <2>4>
[debug] 3:89.1GB:216GB:127GB:ext4::; <3>4>
[debug] 4:216GB:250GB:33.8GB:ext4::boot; <4>4>
[debug]  <>4>
[debug] BYT; <BYT;>4>
[debug] /dev/zram1:525MB:unknown:4096:4096:loop:Unknown:; </dev/zram1>4>
[debug] 1:0.00B:525MB:525MB:linux-swap(v1)::; <1>4>
[debug]  <>4>
[debug] BYT; <BYT;>4>
[debug] /dev/zram0:525MB:unknown:4096:4096:loop:Unknown:; </dev/zram0>4>
[debug] 1:0.00B:525MB:525MB:linux-swap(v1)::; <1>4>
SET@_progressbar1.pulse()

=================== /media/lubuntu/8b663c7f-fd77-4e3a-96c3-40bbb35457c0/etc/grub.d/ :
drwxr-xr-x  2 root root     4096 May 18 08:45 grub.d
drwxr-xr-x  2 root root     4096 May 18 08:44 grub.d.bak
total 72
-rwxr-xr-x 1 root root  9791 Sep 22  2016 00_header
-rwxr-xr-x 1 root root  6258 Mar 15  2016 05_debian_theme
-rwxr-xr-x 1 root root 12261 Sep 22  2016 10_linux
-rwxr-xr-x 1 root root 11082 Sep 22  2016 20_linux_xen
-rwxr-xr-x 1 root root 11692 Sep 22  2016 30_os-prober
-rwxr-xr-x 1 root root  1418 Sep 22  2016 30_uefi-firmware
-rwxr-xr-x 1 root root   214 Sep 22  2016 40_custom
-rwxr-xr-x 1 root root   216 Sep 22  2016 41_custom
-rw-r--r-- 1 root root   483 Sep 22  2016 README




=================== /media/lubuntu/8b663c7f-fd77-4e3a-96c3-40bbb35457c0/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"



SET@_progressbar1.pulse()
[debug] sdb1 ends at 86974135808GB. not-far
[debug] sdb1 ends at 86974135808GB. not-far
[debug] partedlm
SET@_progressbar1.pulse()
[debug] BYT; <BYT;>1>
[debug] /dev/sda:160GB:scsi:512:512:msdos:ATA ST9160310AS:; </dev/sda>1>
[debug] 1:1049kB:87.7GB:87.7GB:ext4::; <1>1>
[debug] 2:87.7GB:125GB:37.2GB:ext4::boot; <2>1>
[debug] 3:125GB:127GB:2097MB:linux-swap(v1)::; <3>1>
[debug] 4:127GB:160GB:33.1GB:ext4::; <4>1>
[debug]  <>1>
[debug] BYT; <BYT;>1>
[debug] /dev/sdb:250GB:scsi:512:512:msdos:ATA WDC WD2500BEVT-2:; </dev/sdb>1>
[debug] 1:1049kB:87.0GB:87.0GB:ext4::; <1>1>
[debug] 2:87.0GB:89.1GB:2147MB:linux-swap(v1)::; <2>1>
[debug] 3:89.1GB:216GB:127GB:ext4::; <3>1>
[debug] 4:216GB:250GB:33.8GB:ext4::boot; <4>1>
[debug]  <>1>
[debug] BYT; <BYT;>1>
[debug] /dev/zram1:525MB:unknown:4096:4096:loop:Unknown:; </dev/zram1>1>
[debug] 1:0.00B:525MB:525MB:linux-swap(v1)::; <1>1>
[debug]  <>1>
[debug] BYT; <BYT;>1>
[debug] /dev/zram0:525MB:unknown:4096:4096:loop:Unknown:; </dev/zram0>1>
[debug] 1:0.00B:525MB:525MB:linux-swap(v1)::; <1>1>
[debug] sdb3 ends at 216262508032GB. farbios
[debug] sdb3 ends at 216262508032GB. farbios
[debug] partedlm
[debug] BYT; <BYT;>3>
[debug] /dev/sda:160GB:scsi:512:512:msdos:ATA ST9160310AS:; </dev/sda>3>
[debug] 1:1049kB:87.7GB:87.7GB:ext4::; <1>3>
[debug] 2:87.7GB:125GB:37.2GB:ext4::boot; <2>3>
[debug] 3:125GB:127GB:2097MB:linux-swap(v1)::; <3>3>
[debug] 4:127GB:160GB:33.1GB:ext4::; <4>3>
[debug]  <>3>
[debug] BYT; <BYT;>3>
[debug] /dev/sdb:250GB:scsi:512:512:msdos:ATA WDC WD2500BEVT-2:; </dev/sdb>3>
[debug] 1:1049kB:87.0GB:87.0GB:ext4::; <1>3>
[debug] 2:87.0GB:89.1GB:2147MB:linux-swap(v1)::; <2>3>
[debug] 3:89.1GB:216GB:127GB:ext4::; <3>3>
SET@_progressbar1.pulse()
[debug] 4:216GB:250GB:33.8GB:ext4::boot; <4>3>
[debug]  <>3>
[debug] BYT; <BYT;>3>
[debug] /dev/zram1:525MB:unknown:4096:4096:loop:Unknown:; </dev/zram1>3>
[debug] 1:0.00B:525MB:525MB:linux-swap(v1)::; <1>3>
[debug]  <>3>
[debug] BYT; <BYT;>3>
[debug] /dev/zram0:525MB:unknown:4096:4096:loop:Unknown:; </dev/zram0>3>
[debug] 1:0.00B:525MB:525MB:linux-swap(v1)::; <1>3>
[debug] sdb4 ends at 250059161088GB. farbios
[debug] sdb4 ends at 250059161088GB. farbios
ls: cannot access '/media/lubuntu/05105719-2200-4440-8c85-0ee0fed385ca/': No such file or directory
[debug] partedlm
[debug] BYT; <BYT;>4>
[debug] /dev/sda:160GB:scsi:512:512:msdos:ATA ST9160310AS:; </dev/sda>4>
[debug] 1:1049kB:87.7GB:87.7GB:ext4::; <1>4>
[debug] 2:87.7GB:125GB:37.2GB:ext4::boot; <2>4>
[debug] 3:125GB:127GB:2097MB:linux-swap(v1)::; <3>4>
[debug] 4:127GB:160GB:33.1GB:ext4::; <4>4>
[debug]  <>4>
[debug] BYT; <BYT;>4>
[debug] /dev/sdb:250GB:scsi:512:512:msdos:ATA WDC WD2500BEVT-2:; </dev/sdb>4>
[debug] 1:1049kB:87.0GB:87.0GB:ext4::; <1>4>
[debug] 2:87.0GB:89.1GB:2147MB:linux-swap(v1)::; <2>4>
[debug] 3:89.1GB:216GB:127GB:ext4::; <3>4>
[debug] 4:216GB:250GB:33.8GB:ext4::boot; <4>4>
SET@_progressbar1.pulse()
[debug]  <>4>
[debug] BYT; <BYT;>4>
[debug] /dev/zram1:525MB:unknown:4096:4096:loop:Unknown:; </dev/zram1>4>
[debug] 1:0.00B:525MB:525MB:linux-swap(v1)::; <1>4>
[debug]  <>4>
[debug] BYT; <BYT;>4>
[debug] /dev/zram0:525MB:unknown:4096:4096:loop:Unknown:; </dev/zram0>4>
[debug] 1:0.00B:525MB:525MB:linux-swap(v1)::; <1>4>
SET@_progressbar1.pulse()
[debug]End fix /media/lubuntu/8b663c7f-fd77-4e3a-96c3-40bbb35457c0/etc/grub.d/
SET@_progressbar1.pulse()
lspci: Unable to load libkmod resources: error -12
SET@_progressbar1.pulse()

*******lspci -nnk | grep -iA3 vga
00:02.0 VGA compatible controller [0300]: Intel Corporation Mobile 945GSE Express Integrated Graphics Controller [8086:27ae] (rev 03)
	Subsystem: ASUSTeK Computer Inc. Mobile 945GSE Express Integrated Graphics Controller [1043:1252]
	Kernel driver in use: i915
00:02.1 Display controller [0380]: Intel Corporation Mobile 945GM/GMS/GME, 943/940GML Express Integrated Graphics Controller [8086:27a6] (rev 03)
*******

grub-install --version
grub-install (GRUB) 2.02~beta2-36ubuntu11.2,grub-install (GRUB) 2.

Reinstall the GRUB of sdb1 into the MBR of sdb
SET@_label0.set_text('''Reinstall GRUB sdb. This may require several minutes...''')
SET@_progressbar1.pulse()
Installing for i386-pc platform.
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
Installation finished. No error reported.
grub-install --disk-module=ata /dev/sdb: exit code of grub-install /dev/sdb:0
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_label0.set_text('''Grub-update. This may require several minutes...''')

chroot /media/lubuntu/8b663c7f-fd77-4e3a-96c3-40bbb35457c0 update-grub
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
Generating grub configuration file ...
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
Found linux image: /boot/vmlinuz-4.4.0-59-generic
Found initrd image: /boot/initrd.img-4.4.0-59-generic
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
Found linux image: /boot/vmlinuz-4.4.0-53-generic
Found initrd image: /boot/initrd.img-4.4.0-53-generic
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
Found linux image: /boot/vmlinuz-4.4.0-52-generic
Found initrd image: /boot/initrd.img-4.4.0-52-generic
SET@_progressbar1.pulse()
Found linux image: /boot/vmlinuz-4.4.0-51-generic
Found initrd image: /boot/initrd.img-4.4.0-51-generic
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
Found Ubuntu 16.04.2 LTS (16.04) on /dev/sda2
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
Found Ubuntu 16.10 (16.10) on /dev/sdb4
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
done
SET@_label0.set_text('''Unchroot. Please wait few seconds...''')
SET@_progressbar1.pulse()
[debug]Mount all blkid partitions except the ones already mounted
SET@_progressbar1.pulse()
[debug]DF/dev/sda1       83747056 29269476  50180364  37% /mnt/boot-sav/sda1
[debug]BLKID Mount point of sda1 is: /mnt/boot-sav/sda1
[debug]DF/dev/sda2       35478152 9095696  24550520  28% /isodevice
[debug]BLKID Mount point of sda2 is: /isodevice
[debug]Mount path of sda2 is: /isodevice
[debug]DF/dev/sda4       31674200 14700704  15341448  49% /mnt/boot-sav/sda4
SET@_progressbar1.pulse()
[debug]BLKID Mount point of sda4 is: /mnt/boot-sav/sda4
[debug]DF/dev/sdb1       83077408 9229304  69584988  12% /media/lubuntu/8b663c7f-fd77-4e3a-96c3-40bbb35457c0
[debug]BLKID Mount point of sdb1 is: /media/lubuntu/8b663c7f-fd77-4e3a-96c3-40bbb35457c0
[debug]Mount path of sdb1 is: /media/lubuntu/8b663c7f-fd77-4e3a-96c3-40bbb35457c0
[debug]DF/dev/sdb3      121162400 114274120    663848 100% /media/lubuntu/161
[debug]BLKID Mount point of sdb3 is: /media/lubuntu/161
SET@_progressbar1.pulse()
[debug]BLKID Mount point of sdb4 is: /mnt/boot-sav/sdb4
[debug]Mount path of sdb4 is: /mnt/boot-sav/sdb4
[debug]Unhide boot menu (10 seconds) if Wubi detected
SET@_label0.set_text('''Unhide boot menu. This may require several minutes...''')
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_label0.set_text('''Unhide boot menu. This may require several minutes...''')
SET@_progressbar1.pulse()
Unhide GRUB boot menu in sdb1/boot/grub/grub.cfg
SET@_progressbar1.pulse()
SET@_label0.set_text('''Unhide boot menu. This may require several minutes...''')
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()

Boot successfully repaired.

You can now reboot your computer.
Please do not forget to make your BIOS boot on sdb (250GB) disk!
SET@_label0.set_text('''Create a BootInfo summary. This may require several minutes...''')
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
[debug]Unmount all blkid partitions except df ones
[debug]BLKID Mount point of sda1 is: /mnt/boot-sav/sda1
SET@_progressbar1.pulse()
[debug]BLKID Mount point of sda2 is: /isodevice
[debug]BLKID Mount point of sda4 is: /mnt/boot-sav/sda4
SET@_progressbar1.pulse()
[debug]BLKID Mount point of sdb1 is: /media/lubuntu/8b663c7f-fd77-4e3a-96c3-40bbb35457c0
[debug]BLKID Mount point of sdb3 is: /media/lubuntu/161
[debug]BLKID Mount point of sdb4 is: /mnt/boot-sav/sdb4
SET@_label0.set_text('''Create a BootInfo summary (bis). This may require several minutes...''')

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

SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
Identifying MBRs...
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
Computing Partition Table of /dev/sda...
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
Computing Partition Table of /dev/sdb...
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
Searching sda1 for information... 
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
Searching sda2 for information... 
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
Searching sda3 for information... 
Searching sda4 for information... 
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
Searching sdb1 for information... 
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
Searching sdb2 for information... 
Searching sdb3 for information... 
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
Searching sdb4 for information... 
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()

Finished. The results are in the file "RESULTS.txt"
located in "/tmp/boot-sav-opnGF/".

SET@_label0.set_text('''Create a BootInfo summary (bs-check). This may require several minutes...''')
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
cat: write error: Broken pipe
SET@pulsatewindow.hide()

(zenity:22285): Gtk-WARNING **: Theme parsing error: gtk-widgets.css:23:18: not a number

(zenity:22285): Gtk-WARNING **: Theme parsing error: gtk-widgets.css:23:18: Expected a string.

(zenity:22285): Gtk-WARNING **: Theme parsing error: gtk-widgets.css:815:10: not a number

(zenity:22285): Gtk-WARNING **: Theme parsing error: gtk-widgets.css:815:24: Using Pango syntax for the font: style property is deprecated; please use CSS syntax

(zenity:22285): Gtk-WARNING **: Theme parsing error: gtk-widgets.css:1953:14: not a number

(zenity:22285): Gtk-WARNING **: Theme parsing error: gtk-widgets.css:1953:14: Expected a string.

(zenity:22285): Gtk-WARNING **: Theme parsing error: nautilus.css:50:71: Using one color stop with linear-gradient() is deprecated.

(zenity:22285): Gtk-WARNING **: Theme parsing error: nautilus.css:51:71: Using one color stop with linear-gradient() is deprecated.

(zenity:22285): Gtk-WARNING **: Theme parsing error: gtk-lubuntu.css:252:14: not a number

(zenity:22285): Gtk-WARNING **: Theme parsing error: gtk-lubuntu.css:252:14: Expected a string.
Gtk-Message: GtkDialog mapped without a transient parent. This is discouraged.
gui-actions.sh: line 642:  9063 Terminated              while true; do
    echo 'SET@_progressbar1.pulse()'; sleep 0.2;
done
Upload the report to a pastebin ? yes
SET@pulsatewindow.show()
SET@_label0.set_text('''Create a BootInfo summary (net-check). This may require several minutes...''')
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
[debug]internet: connected
SET@_label0.set_text('''Create a BootInfo summary (url). This may require several minutes...''')
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
[debug]Mount all blkid partitions except the ones already mounted
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
[debug]BLKID Mount point of sda1 is: /mnt/boot-sav/sda1
[debug]DF/dev/sda2       35478152 9095696  24550520  28% /isodevice
[debug]BLKID Mount point of sda2 is: /isodevice
[debug]Mount path of sda2 is: /isodevice
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
[debug]BLKID Mount point of sda4 is: /mnt/boot-sav/sda4
[debug]DF/dev/sdb1       83077408 9229304  69584988  12% /media/lubuntu/8b663c7f-fd77-4e3a-96c3-40bbb35457c0
[debug]BLKID Mount point of sdb1 is: /media/lubuntu/8b663c7f-fd77-4e3a-96c3-40bbb35457c0
[debug]Mount path of sdb1 is: /media/lubuntu/8b663c7f-fd77-4e3a-96c3-40bbb35457c0
SET@_progressbar1.pulse()
[debug]DF/dev/sdb3      121162400 114274120    663848 100% /media/lubuntu/161
[debug]BLKID Mount point of sdb3 is: /media/lubuntu/161
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
[debug]BLKID Mount point of sdb4 is: /mnt/boot-sav/sdb4
[debug]Mount path of sdb4 is: /mnt/boot-sav/sdb4
SET@_label0.set_text('''Create a BootInfo summary (net-check). This may require several minutes...''')
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
[debug]internet: connected
SET@_label0.set_text('''Create a BootInfo summary (net-ok). This may require several minutes...''')
SET@_progressbar1.pulse()
SET@_label0.set_text('''Create a BootInfo summary (cus). This may require several minutes...''')
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_label0.set_text('''Create a BootInfo summary (20). This may require several minutes...''')
SET@_label0.set_text('''Create a BootInfo summary (19). This may require several minutes...''')
SET@_label0.set_text('''Create a BootInfo summary (18). This may require several minutes...''')
SET@_label0.set_text('''Create a BootInfo summary (16). This may require several minutes...''')
SET@_label0.set_text('''Create a BootInfo summary (15). This may require several minutes...''')
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_label0.set_text('''Create a BootInfo summary (14). This may require several minutes...''')
SET@_label0.set_text('''Create a BootInfo summary (13). This may require several minutes...''')
SET@_label0.set_text('''Create a BootInfo summary (12). This may require several minutes...''')
SET@_label0.set_text('''Create a BootInfo summary (11). This may require several minutes...''')
SET@_label0.set_text('''Create a BootInfo summary (10). This may require several minutes...''')
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_label0.set_text('''Create a BootInfo summary (9). This may require several minutes...''')
SET@_label0.set_text('''Create a BootInfo summary (8). This may require several minutes...''')
SET@_label0.set_text('''Create a BootInfo summary (7). This may require several minutes...''')
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_label0.set_text('''Create a BootInfo summary (6). This may require several minutes...''')
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_label0.set_text('''Create a BootInfo summary (5). This may require several minutes...''')
SET@_label0.set_text('''Create a BootInfo summary (4). This may require several minutes...''')
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_progressbar1.pulse()
SET@_label0.set_text('''Create a BootInfo summary (3). This may require several minutes...''')
SET@_label0.set_text('''Create a BootInfo summary (2). This may require several minutes...''')
SET@_label0.set_text('''Create a BootInfo summary (1). This may require several minutes...''')
SET@_label0.set_text('''Create a BootInfo summary. Please wait few seconds...''')

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

Filesystem     Type      Size  Used Avail Use% Mounted on
udev           devtmpfs  988M     0  988M   0% /dev
tmpfs          tmpfs     201M   17M  185M   9% /run
/dev/sda2      ext4       34G  8.7G   24G  28% /isodevice
/dev/loop0     iso9660   916M  916M     0 100% /cdrom
/dev/loop1     squashfs  877M  877M     0 100% /rofs
aufs           aufs     1002M  237M  766M  24% /
tmpfs          tmpfs    1002M   32M  971M   4% /dev/shm
tmpfs          tmpfs     5.0M  4.0K  5.0M   1% /run/lock
tmpfs          tmpfs    1002M     0 1002M   0% /sys/fs/cgroup
tmpfs          tmpfs    1002M  584K 1002M   1% /tmp
tmpfs          tmpfs     201M  8.0K  201M   1% /run/user/999
/dev/sdb3      ext4      116G  109G  649M 100% /media/lubuntu/161
/dev/sdb1      ext4       80G  8.9G   67G  12% /media/lubuntu/8b663c7f-fd77-4e3a-96c3-40bbb35457c0
/dev/sda1      ext4       80G   28G   48G  37% /mnt/boot-sav/sda1
/dev/sda4      ext4       31G   15G   15G  49% /mnt/boot-sav/sda4
/dev/sdb4      ext4       31G   18G   13G  59% /mnt/boot-sav/sdb4

=================== fdisk -l:
Disk /dev/loop0: 916 MiB, 960495616 bytes, 1875968 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: 0x67a62368

Device       Boot Start     End Sectors  Size Id Type
/dev/loop0p1 *       64 1875967 1875904  916M 17 Hidden HPFS/NTFS


Disk /dev/loop1: 876.7 MiB, 919302144 bytes, 1795512 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: 149.1 GiB, 160041885696 bytes, 312581808 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: 0xab3150f5

Device     Boot     Start       End   Sectors  Size Id Type
/dev/sda1            2048 171235327 171233280 81.7G 83 Linux
/dev/sda2  *    171235328 243857407  72622080 34.6G 83 Linux
/dev/sda3       243857408 247953407   4096000    2G 82 Linux swap / Solaris
/dev/sda4       247953408 312580095  64626688 30.8G 83 Linux


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

Device     Boot     Start       End   Sectors   Size Id Type
/dev/sdb1            2048 169871359 169869312    81G 83 Linux
/dev/sdb2       169871360 174065663   4194304     2G 82 Linux swap / Solaris
/dev/sdb3       174065664 422387711 248322048 118.4G 83 Linux
/dev/sdb4  *    422387712 488396799  66009088  31.5G 83 Linux


Disk /dev/zram0: 500.9 MiB, 525176832 bytes, 128217 sectors
Units: sectors of 1 * 4096 = 4096 bytes
Sector size (logical/physical): 4096 bytes / 4096 bytes
I/O size (minimum/optimal): 4096 bytes / 4096 bytes


Disk /dev/zram1: 500.9 MiB, 525176832 bytes, 128217 sectors
Units: sectors of 1 * 4096 = 4096 bytes
Sector size (logical/physical): 4096 bytes / 4096 bytes
I/O size (minimum/optimal): 4096 bytes / 4096 bytes

Dernière modification par pliadule (Le 18/05/2017, à 20:25)

Hors ligne

#30 Le 18/05/2017, à 20:00

Babdu89

Re : DD de pc déplacé en USB

Bonsoir.

boot-info is executed in installed-session (Ubuntu 16.04.2 LTS, xenial, Ubuntu, i686)

Le boot-info est fait depuis l'Os installé en /dev/sda2


ADDITIONAL INFORMATION :
=================== log of boot-info 2017-05-18__11h28 ===================
boot-info version : 4ppa40
boot-sav version : 4ppa40
glade2script version : 3.2.3~ppa1
boot-sav-extra version : 4ppa40
boot-info is executed in installed-session (Ubuntu 16.04.2 LTS, xenial, Ubuntu, i686)
CPU op-mode(s):        32-bit
BOOT_IMAGE=/boot/vmlinuz-4.8.0-52-generic root=UUID=6d2085bf-20ba-4296-866c-87c9a9e64da3 ro quiet splash vt.handoff=7

=================== os-prober:
/dev/sda2:The OS now in use - Ubuntu 16.04.2 LTS CurrentSession:linux
/dev/sdb1:Ubuntu 16.10 (16.10):Ubuntu:linux
/dev/sdb4:Ubuntu 16.10 (16.10):Ubuntu1:linux

=================== blkid:
/dev/sda1: UUID="51cf1251-dcd8-458f-839a-77a38dcc06d0" TYPE="ext4" PARTUUID="ab3150f5-01"
/dev/sda2: UUID="6d2085bf-20ba-4296-866c-87c9a9e64da3" TYPE="ext4" PARTUUID="ab3150f5-02"
/dev/sda3: UUID="fcb583b3-2011-4aba-8923-a435046220cc" TYPE="swap" PARTUUID="ab3150f5-03"
/dev/sda4: UUID="c1e912a2-487e-42ab-8b1d-68d4b80c7748" TYPE="ext4" PARTUUID="ab3150f5-04"
/dev/sdb1: UUID="8b663c7f-fd77-4e3a-96c3-40bbb35457c0" TYPE="ext4" PARTUUID="acfe29b8-01"
/dev/sdb2: UUID="0d113278-d43f-44b4-84cf-6757a4f8ba99" TYPE="swap" PARTUUID="acfe29b8-02"
/dev/sdb3: LABEL="161" UUID="8db709c6-9cbc-4161-8d6f-3882e89dd322" TYPE="ext4" PARTUUID="acfe29b8-03"
/dev/sdb4: UUID="05105719-2200-4440-8c85-0ee0fed385ca" TYPE="ext4" PTTYPE="dos" PARTUUID="acfe29b8-04"

Soit tu as fais le Boot-Repair depuis une session live, comme indiqué post#25.
Et.  Tu n'as pas publié le bon rapport boot-repair. Il faut regarder dans les autres log.

Il n'y a pas de réparation faite depuis cette session installée.

=================== Suggested repair
The default repair of the Boot-Repair utility would purge (in order to) and reinstall the grub2 of sda2 into the MBRs of all disks (except USB without OS).
Additional repair would be performed: unhide-bootmenu-10s


=================== Final advice in case of suggested repair
Please do not forget to make your BIOS boot on sda (160GB) disk!

The boot files of [The OS now in use - Ubuntu 16.04.2 LTS] are far from the start of the disk. Your BIOS may not detect them. You may want to retry after creating a /boot partition (EXT4, >200MB, start of the disk). This can be performed via tools such as gParted. Then select this partition via the [Separate /boot partition:] option of [Boot-Repair]. (https://help.ubuntu.com/community/BootPartition)


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

Et même si une réparation avait été faite, Grub serait réinstallé dans /devsda2

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

#31 Le 18/05/2017, à 20:32

pliadule

Re : DD de pc déplacé en USB

Autant pour moi hmm
je viens de modifier le #29 avec la publication live ...

Hors ligne

#32 Le 18/05/2017, à 23:06

Babdu89

Re : DD de pc déplacé en USB

OK!!. Merci.

Donc post#29 Boot-Repair est bien lancé en session live;

boot-repair is executed in live-session (Ubuntu 17.04, zesty, Ubuntu, i686)
CPU op-mode(s):        32-bit
BOOT_IMAGE=/casper/vmlinuz file=/cdrom/preseed/lubuntu.seed boot=casper iso-scan/filename=/boot/grml/lubuntu-17.04-desktop-i386.iso quiet splash ---

Mais tu lui as demandé de réinstaller Grub dans l'Os installé en /dev/sdb1, en mettant la première partie de Grub dans le secteur de boot de /dev/sdb.

Voila ce que la réparation par défaut proposait;

=================== Default settings of Boot Repair
The default repair of the Boot-Repair utility would purge (in order to) and reinstall the grub2 of sda2 into the MBRs of all disks (except USB without OS).
Additional repair would be performed: unhide-bootmenu-10s

Çà ne va pas.


Voila la réparation que tu lui as demandé de faire,

=================== User settings
The settings chosen by the user will purge (in order to fix legacy files) and reinstall the grub2 of sdb1 into the MBR of sdb, using the following options:     --disk-module=ata
Additional repair will be performed: unhide-bootmenu-10s

Il a bien réinstallé Grub dans /dev/sdb1. Ce qui n'a aucun effet sur le Grub installé en /dev/sdb4.

C'est dans /dev/sdb4 qu'il fallait choisir de réinstaller Grub.

Autre constat,
Grub s'installe en deux parties. Normalement la première partie de Grub est installé dans le secteur de boot du disque qui reçoit l'installation (/dev/sdb) tu as choisis lors de l'installation de l'Os en /dev/sdb4, de mettre la première partie de Grub dans le secteur de boot de la partition /dev/sdb4. Il y a peut-être un souci de chaînage d'un Grub (celui de/sdb1) vers l'autre (celui de /sdb4).

sdb4: __________________________________________________________________________

    File system:       ext4
    Boot sector type:  Grub2 (v1.99-2.00)
    Boot sector info:  Grub2 (v2.00) is installed in the boot sector of sdb4
                       and looks at sector 457567216 of the same hard drive
                       for core.img. core.img is at this location and looks
                       for (,msdos4)/boot/grub. It also embeds following
                       components:
                       

                       modules
                       -------------------------------------------------------
                       fshelp ext2 part_msdos biosdisk
                       -------------------------------------------------------
    Operating System:  Ubuntu 16.10
    Boot files:        /boot/grub/grub.cfg /etc/fstab
                       /boot/grub/i386-pc/core.img

Je te conseille,toujours en session live, de réinstaller Grub dans l'Os en /dev/sdb4 (Os par défaut au démarrage) en mettant la première partie de Grub dans le secteur de boot du disque d'installation; /dev/sdb (Placer Grub dans;) .

Et de ne pas oublier de donner l'URL du boot info indiquée à la dernière fenêtre de Boot-Repair.
Espérons que çà va réparer correctement cette fois-ci

@+.    Babdu89   .

Dernière modification par Babdu89 (Le 19/05/2017, à 10:56)


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

Hors ligne

#33 Le 19/05/2017, à 20:15

pliadule

Re : DD de pc déplacé en USB

salut,

Merci #babdu89  smile

je vais tester... la semaine prochaine,
je décroche jusqu'à mardi.

tout de même, je comprend que mon partitionnement est insuffisant, il manque /boot en début de disque,

@+

Hors ligne

#34 Le 19/05/2017, à 20:37

Babdu89

Re : DD de pc déplacé en USB

Bonsoir.
Je vais être absent pendant deux semaines.
Je pense que quelqu'un d'autre prendra la relève si nécessaire. smile

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

#35 Le 19/05/2017, à 21:05

Bougron

Re : DD de pc déplacé en USB

Bonsoir
Je vais  tenter de prendre la relève à partir de Mercredi/Jeudi.
Je constate une nouvelle fois que BOOTER en LEGACY n'est pas si simple que de BOOTER en EFI.

Hors ligne