Contenu | Rechercher | Menus

Annonce

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

À propos de l'équipe du forum.

#1 Le 01/10/2020, à 18:32

REDS301

GRUB tout gris.

Bonjour, j'utilisais UBUNTU 18.04 sans aucun problème et lors d'une mise à jour début Septembre impossible de récupérer mon système.

J'ai donc décider de tout réinstaller et de passer sur UBUNTU 20.04.

Le problème c'est qu'au démarrage ce que je pense être mon GRUB est représenté sous forme d'un carré gris clair avec des bordures gris foncés sans aucunes informations écrites dessus.

Mais après ça j'arrive sur mon bureau normalement et aucun soucis d'utilisation.

Le seul soucis c'est que je ne peux plus utiliser le GRUB pour sélectionner UBUNTU ou WINDOWS10.

Pour ne pas faire de bêtise au niveau du GRUB, j'aimerais avoir des solutions pour récupérer l'affichage du GRUB.

Merci

Hors ligne

#2 Le 01/10/2020, à 20:34

ylag

Re : GRUB tout gris.

Bonsoir,

As-tu un fichier /boot/grub/custom.cfg ?
Si oui, montre son contenu:

cat /boot/grub/custom.cfg

Montre aussi le contenu de /etc/grub.d/40_custom :

cat /etc/grub.d/40_custom

...au cas où il y aurait eu des modifications aux couleurs d'affichage du menu GRUB d'ajoutées.

Je n'y crois pas trop, mais ça vaut la peine de vérifier...

A+

Hors ligne

#3 Le 02/10/2020, à 16:47

REDS301

Re : GRUB tout gris.

Le contenu de custom 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 [ "${initrdfail}" = 2 ]; then
   set initrdfail=
elif [ "${initrdfail}" = 1 ]; then
   set next_entry="${prev_entry}"
   set prev_entry=
   save_env prev_entry
   if [ "${next_entry}" ]; then
      set initrdfail=2
   fi
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 initrdfail {
    if [ -n "${have_grubenv}" ]; then if [ -n "${partuuid}" ]; then
      if [ -z "${initrdfail}" ]; then
        set initrdfail=1
        if [ -n "${boot_once}" ]; then
          set prev_entry="${default}"
          save_env prev_entry
        fi
      fi
      save_env initrdfail
    fi; fi
}
function recordfail {
  set recordfail=1
  if [ -n "${have_grubenv}" ]; then if [ -z "${boot_once}" ]; then save_env recordfail; fi; fi
}
function load_video {
  if [ x$feature_all_video_module = xy ]; then
    insmod all_video
  else
    insmod efi_gop
    insmod efi_uga
    insmod ieee1275_fb
    insmod vbe
    insmod vga
    insmod video_bochs
    insmod video_cirrus
  fi
}

if [ x$feature_default_font_path = xy ] ; then
   font=unicode
else
insmod part_gpt
insmod ext2
set root='hd1,gpt2'
if [ x$feature_platform_search_hint = xy ]; then
  search --no-floppy --fs-uuid --set=root --hint-bios=hd1,gpt2 --hint-efi=hd1,gpt2 --hint-baremetal=ahci1,gpt2  5f19573b-6799-4667-abe6-3993c95d3f00
else
  search --no-floppy --fs-uuid --set=root 5f19573b-6799-4667-abe6-3993c95d3f00
fi
    font="/usr/share/grub/unicode.pf2"
fi

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

### BEGIN /etc/grub.d/05_debian_theme ###
set menu_color_normal=white/black
set menu_color_highlight=black/light-gray
if background_color 60,59,55; then
  clear
fi

color_normal=light-gray/black

if [ -e ${prefix}/themes/ubuntu-mate/theme.txt ]; then
  insmod png
  theme=${prefix}/themes/ubuntu-mate/theme.txt
fi
### END /etc/grub.d/05_debian_theme ###

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

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

### BEGIN /etc/grub.d/10_linux_zfs ###
### END /etc/grub.d/10_linux_zfs ###

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

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

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

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

### BEGIN /etc/grub.d/30_uefi-firmware ###
### 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 ###

Hors ligne

#4 Le 02/10/2020, à 16:48

REDS301

Re : GRUB tout gris.

Par contre, je n'ai rien pour le contenu de /etc/grub.d/40_custom

Hors ligne

#5 Le 02/10/2020, à 16:49

REDS301

Re : GRUB tout gris.

Je n'ai pas l'impression de voir mon W10 dans GRUB.

Hors ligne

#6 Le 02/10/2020, à 16:59

ylag

Re : GRUB tout gris.

Bonjour,

Ça me semble un peu étrange comme retour au commentaire #3 ?

De base, le fichier /boot/grub/custom.cfg ne devrait pas exister sauf s'il a été créé manuellement.

À l'installation de la 20.04, le fichier /etc/grub.d/40_custom devrait contenir ceci:

#!/bin/sh
exec tail -n +3 $0
# This file provides an easy way to add custom menu entries.  Simply type the
# menu entries you want to add after this comment.  Be careful not to change
# the 'exec tail' line above.

Alors là, je sèche sur ton cas; désolé...

Il faudra des intervenant(e)s plus calés que moi en configuration de GRUB.

A+

Dernière modification par ylag (Le 02/10/2020, à 17:03)

Hors ligne

#7 Le 02/10/2020, à 18:14

lucmars

Re : GRUB tout gris.

Depuis ton buntu mis à niveau, fais-nous un boot-info (voir doc) on sera mieux fixé coté win.


Gaulois Matter !

Hors ligne

#8 Le 03/10/2020, à 11:30

ylag

Re : GRUB tout gris.

Bonjour,

REDS301, au #3 a écrit :

Le contenu de custom cfg :

Je crois qu'on s'est mal compris; tu a donné plutôt le contenu de ton fichier /boot/grub/grub.cfg, et non le contenu d'un éventuel fichier /boot/grub/custom.cfg
C'était surtout pour voir si ce fichier existe ou non sur ton système...

On peut voir dans le retour du #3 que le fichier /etc/grub.d/40_custom ne contient aucune modifications, donc fausse piste de ma part dans ce cas.
Ne resterait peut-être qu'à voir s'il y aurait un fichier /boot/grub/custom.cfg dont le contenu pourrait nuire à l'affichage du menu GRUB.

La suggestion boot-info de @lucmars me semble une très bonne idée...

A+

Dernière modification par ylag (Le 03/10/2020, à 11:40)

Hors ligne

#9 Le 04/10/2020, à 16:15

REDS301

Re : GRUB tout gris.

boot-info-4ppa125                                              [20201004_1712]

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

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

sda1: __________________________________________________________________________

    File system:       ntfs
    Boot sector type:  Windows 8/2012: NTFS
    Boot sector info:  No errors found in the Boot Parameter Block.
    Operating System:  
    Boot files:        /bootmgr /Boot/BCD

sda2: __________________________________________________________________________

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

sda3: __________________________________________________________________________

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

sdb1: __________________________________________________________________________

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

sdb2: __________________________________________________________________________

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


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

OS#1:   L'OS actuellement utilisé - Ubuntu 20.04.1 LTS CurrentSession on sdb2
OS#2:   Windows 8 or 10 on sda2

============================ Architecture/Host Info ============================

CPU architecture: 64-bit
BOOT_IMAGE of the installed session in use:
/boot/vmlinuz-5.4.0-48-generic root=UUID=5f19573b-6799-4667-abe6-3993c95d3f00 ro quiet splash vt.handoff=7


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

BIOS is EFI-compatible, and is setup in EFI-mode for this installed-session.

efibootmgr -v
BootCurrent: 0001
Timeout: 1 seconds
BootOrder: 0001,0002,0003,0004,0005
Boot0001* ubuntu	HD(1,GPT,d57a2a05-bb2c-400c-ae55-b6c4212d2fbe,0x800,0x100000)/File(\EFI\ubuntu\shimx64.efi)
Boot0002* Hard Drive 	BBS(HD,,0x0)AMGOAMNO........m.S.a.m.s.u.n.g. .S.S.D. .8.5.0. .E.V.O. .2.5.0.G.B....................A.........................>..Gd-.;.A..MQ..L.2.S.6.R.X.N.H.0.3.5.5.3.3.9. .M. . . . ......AMBOAMNO........m.S.T.1.0.0.0.D.M.0.0.3.-.1.C.H.1.6.2....................A.........................>..Gd-.;.A..MQ..L. . . . . . . . . . . . .1.Z.9.D.D.5.M.A......AMBO
Boot0003* CD/DVD Drive 	BBS(CDROM,,0x0)AMGOAMNO........m.T.S.S.T.c.o.r.p. .C.D.D.V.D.W. .S.H.-.S.2.2.3.C....................A.........................>..Gd-.;.A..MQ..L.4.R.3.1.G.6.Z.F.1.8.6.4.3.1. . . . . . ......AMBO
Boot0004* Removable Drive 	BBS(Floppy,,0x0)AMGOAMNO........}.G.e.n.e.r.i.c.-.C.o.m.p.a.c.t. .F.l.a.s.h. .1...0.0....................A.............................J..Gd-.;.A..MQ..L.G.e.n.e.r.i.c.-.C.o.m.p.a.c.t. .F.l.a.s.h. .1...0.0......AMBOAMNO..........G.e.n.e.r.i.c.-.S.M./.x.D.-.P.i.c.t.u.r.e. .1...0.0....................A.....................................J..Gd-.;.A..MQ..L.G.e.n.e.r.i.c.-.S.M./.x.D.-.P.i.c.t.u.r.e. .1...0.0......AMBOAMNO........w.G.e.n.e.r.i.c.-.S.D./.M.M.C. .1...0.0....................A.....................................<..Gd-.;.A..MQ..L.G.e.n.e.r.i.c.-.S.D./.M.M.C. .1...0.0......AMBOAMNO........}.G.e.n.e.r.i.c.-.M.S./.M.S.-.P.r.o. .1...0.0....................A.....................................B..Gd-.;.A..MQ..L.G.e.n.e.r.i.c.-.M.S./.M.S.-.P.r.o. .1...0.0......AMBO
Boot0005* Network Card 	BBS(Network,,0x0)AMGOAMNO........i.A.t.h.e.r.o.s. .B.o.o.t. .A.g.e.n.t.........................rN.D+..,.\...........:..Gd-.;.A..MQ..L.A.t.h.e.r.o.s. .B.o.o.t. .A.g.e.n.t......AMBO

2895d47544fd587b26c7e29be1295c27   sdb1/BOOT/fbx64.efi
dc3c47be2f78a78e5e57d097ae6c5c84   sdb1/BOOT/mmx64.efi
114bd85eec32e3162958ea034020821d   sdb1/ubuntu/grubx64.efi
dc3c47be2f78a78e5e57d097ae6c5c84   sdb1/ubuntu/mmx64.efi
78415fb8fb9b909f8029858113f1335f   sdb1/ubuntu/shimx64.efi
78415fb8fb9b909f8029858113f1335f   sdb1/BOOT/BOOTX64.efi


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

Disks info: ____________________________________________________________________

sdb	: is-GPT,	no-BIOSboot,	has---ESP, 	not-usb,	not-mmc, has-os,	2048 sectors * 512 bytes
sda	: notGPT,	no-BIOSboot,	has-noESP, 	not-usb,	not-mmc, has-os,	2048 sectors * 512 bytes

Partitions info (1/3): _________________________________________________________

sdb2	: is-os,	64, apt-get,	signed grub-pc grub-efi ,	grub2,	grub-install,	grubenv-ok,	update-grub,	farbios
sda1	: no-os,	32, nopakmgr,	no-docgrub,	nogrub,	nogrubinstall,	no-grubenv,	noupdategrub,	not-far
sda2	: is-os,	32, nopakmgr,	no-docgrub,	nogrub,	nogrubinstall,	no-grubenv,	noupdategrub,	farbios
sda3	: no-os,	32, nopakmgr,	no-docgrub,	nogrub,	nogrubinstall,	no-grubenv,	noupdategrub,	farbios
sdb1	: no-os,	32, nopakmgr,	no-docgrub,	nogrub,	nogrubinstall,	no-grubenv,	noupdategrub,	not-far

Partitions info (2/3): _________________________________________________________

sdb2	: isnotESP,	fstab-has-goodEFI,	no-nt,	no-winload,	no-recov-nor-hid,	no-bmgr,	notwinboot
sda1	: isnotESP,	part-has-no-fstab,	no-nt,	no-winload,	no-recov-nor-hid,	bootmgr,	is-winboot
sda2	: isnotESP,	part-has-no-fstab,	no-nt,	haswinload,	no-recov-nor-hid,	bootmgr,	is-winboot
sda3	: isnotESP,	part-has-no-fstab,	no-nt,	no-winload,	no-recov-nor-hid,	no-bmgr,	notwinboot
sdb1	: is---ESP,	part-has-no-fstab,	no-nt,	no-winload,	no-recov-nor-hid,	no-bmgr,	notwinboot

Partitions info (3/3): _________________________________________________________

sdb2	: not-sepboot,	with-boot,	fstab-without-boot,	not-sep-usr,	with--usr,	fstab-without-usr,	std-grub.d,	sdb
sda1	: not-sepboot,	no-boot,	part-has-no-fstab,	not-sep-usr,	no---usr,	part-has-no-fstab,	std-grub.d,	sda
sda2	: not-sepboot,	no-boot,	part-has-no-fstab,	not-sep-usr,	no---usr,	part-has-no-fstab,	std-grub.d,	sda
sda3	: not-sepboot,	no-boot,	part-has-no-fstab,	not-sep-usr,	no---usr,	part-has-no-fstab,	std-grub.d,	sda
sdb1	: not-sepboot,	no-boot,	part-has-no-fstab,	not-sep-usr,	no---usr,	part-has-no-fstab,	std-grub.d,	sdb

fdisk -l (filtered): ___________________________________________________________

Disk sda: 232.91 GiB, 250059350016 bytes, 488397168 sectors
Disk identifier: 0xb69824a2
      Boot     Start       End   Sectors   Size Id Type
sda1  *         2048   1026047   1024000   500M  7 HPFS/NTFS/exFAT
sda2         1026048 486672539 485646492 231.6G  7 HPFS/NTFS/exFAT
sda3       486674432 488392703   1718272   839M 27 Hidden NTFS WinRE
Disk sdb: 931.53 GiB, 1000204886016 bytes, 1953525168 sectors
Disk identifier: B609B4DE-35BF-4F8D-B04A-3D045B277BE4
        Start        End    Sectors  Size Type
sdb1     2048    1050623    1048576  512M EFI System
sdb2  1050624 1953523711 1952473088  931G Linux filesystem

parted -lm (filtered): _________________________________________________________

sda:250GB:scsi:512:512:msdos:ATA Samsung SSD 850:;
1:1049kB:525MB:524MB:ntfs::boot;
2:525MB:249GB:249GB:ntfs::;
3:249GB:250GB:880MB:ntfs::msftres;
sdb:1000GB:scsi:512:4096:gpt:ATA ST1000DM003-1CH1:;
1:1049kB:538MB:537MB:fat32:EFI System Partition:boot, esp;
2:538MB:1000GB:1000GB:ext4::;

blkid (filtered): ______________________________________________________________

NAME   FSTYPE   UUID                                 PARTUUID                             LABEL              PARTLABEL
sda                                                                                                          
├─sda1 ntfs     EC3AE48C3AE4555C                     b69824a2-01                          Réservé au système 
├─sda2 ntfs     16F2E5A9F2E58D75                     b69824a2-02                                             
└─sda3 ntfs     768E070D8E06C619                     b69824a2-03                                             
sdb                                                                                                          
├─sdb1 vfat     20D2-7DAB                            d57a2a05-bb2c-400c-ae55-b6c4212d2fbe                    EFI System Partition
└─sdb2 ext4     5f19573b-6799-4667-abe6-3993c95d3f00 bbac2c1f-b79b-4215-ab80-0a05e3f9fd05                    

df (filtered): _________________________________________________________________

       Avail Use% Mounted on
sda1   469.8M   6% /mnt/boot-sav/sda1
sda2    66.9G  71% /mnt/boot-sav/sda2
sda3   386.8M  54% /mnt/boot-sav/sda3
sdb2   859.5G   1% /

Mount options: __________________________________________________________________

sda1   rw,relatime,user_id=0,group_id=0,allow_other,blksize=4096
sda2   rw,relatime,user_id=0,group_id=0,allow_other,blksize=4096
sda3   rw,relatime,user_id=0,group_id=0,allow_other,blksize=4096
sdb2   rw,relatime,errors=remount-ro

===================== sdb1/efi/ubuntu/grub.cfg (filtered) ======================

search.fs_uuid 5f19573b-6799-4667-abe6-3993c95d3f00 root hd1,gpt2 
set prefix=($root)'/boot/grub'
configfile $prefix/grub.cfg

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

Ubuntu   5f19573b-6799-4667-abe6-3993c95d3f00
Ubuntu, avec Linux 5.4.0-48-generic   5f19573b-6799-4667-abe6-3993c95d3f00
Ubuntu, avec Linux 5.4.0-42-generic   5f19573b-6799-4667-abe6-3993c95d3f00
### END /etc/grub.d/30_os-prober ###
### END /etc/grub.d/30_uefi-firmware ###

========================== sdb2/etc/fstab (filtered) ===========================

# <file system> <mount point>   <type>  <options>       <dump>  <pass>
# / was on /dev/sdb2 during installation
UUID=5f19573b-6799-4667-abe6-3993c95d3f00 /               ext4    errors=remount-ro 0       1
# /boot/efi was on /dev/sdb1 during installation
UUID=20D2-7DAB  /boot/efi       vfat    umask=0077      0       1
/swapfile                                 none            swap    sw              0       0

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

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

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

           GiB - GB             File                                 Fragment(s)
   8,759746552 = 9,405706240    boot/grub/grub.cfg                             2
   6,175914764 = 6,631337984    boot/vmlinuz                                   1
   4,449337006 = 4,777439232    boot/vmlinuz-5.4.0-42-generic                  1
   6,175914764 = 6,631337984    boot/vmlinuz-5.4.0-48-generic                  1
   4,449337006 = 4,777439232    boot/vmlinuz.old                               1
   8,005725861 = 8,596082688    boot/initrd.img                                4
   7,442874908 = 7,991726080    boot/initrd.img-5.4.0-42-generic               2
   8,005725861 = 8,596082688    boot/initrd.img-5.4.0-48-generic               4
   7,442874908 = 7,991726080    boot/initrd.img.old                            2

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

-rwxr-xr-x 1 root root 17622 sept.  8 12:24 10_linux
-rwxr-xr-x 1 root root 42359 sept.  8 12:24 10_linux_zfs
-rwxr-xr-x 1 root root 12894 juil. 31 02:34 20_linux_xen
-rwxr-xr-x 1 root root 12059 juil. 31 02:34 30_os-prober
-rwxr-xr-x 1 root root  1424 juil. 31 02:34 30_uefi-firmware
-rwxr-xr-x 1 root root   214 juil. 31 02:34 40_custom
-rwxr-xr-x 1 root root   216 juil. 31 02:34 41_custom


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

sdc sdd sde sdf 

================================= User choice ==================================

Is sdb (ATA ST1000DM003-1CH1) a removable disk? no

Suggested repair: ______________________________________________________________

The default repair of the Boot-Repair utility would purge (in order to remove grub-efi) and reinstall the grub2 of
sdb2 into the MBRs of all disks (except live-disks and removable disks without OS).
Grub-efi would not be selected by default because: legacy-win no-win-efi 
Additional repair would be performed: unhide-bootmenu-10s      

Blockers in case of suggested repair: __________________________________________

LegacyWindows detected. Please enable BIOS-compatibility/CSM/Legacy mode in your UEFI firmware, and use this software from a live-CD (or live-USB). GPT detected. Please create a BIOS-Boot partition (>1MB, unformatted filesystem, bios_grub flag). This can be performed via tools such as Gparted. Then try again.
Alternatively, you can retry after activating the [Separate /boot/efi partition:] option.

Final advice in case of suggested repair: ______________________________________


Please do not forget to make your BIOS boot on sdb (ATA ST1000DM003-1CH1) disk!
The boot of your PC is in UEFI mode. You may want to retry after changing it to BIOS-compatibility/CSM/Legacy mode.

Hors ligne

#10 Le 04/10/2020, à 16:20

REDS301

Re : GRUB tout gris.

Désolé pour la réponse un peu tardive mais j'étais très occupé.

Quand je passe par le boot menu du BIOS aucun soucis, je peux aller aussi bien sur WIN10 que sur Ubuntu.

Par contre ce qui semble être le GRUB, j'ai toute la page en grisé et je le laisse faire et j'arrive sans  problème sur UBUNTU.

Hors ligne

#11 Le 04/10/2020, à 19:53

ikewdu

Re : GRUB tout gris.

Salut,

Tu as fait une installation bancale. Windows est sur sda qui est un disque MS-DOS, et il fonctionne donc en Legacy. Linux est sur sdb qui est un disque GPT et il fonctionne en uefi.

Soit tu convertis le disque sda en gpt, soit tu réinstalles Ubuntu en Legacy.

Un sujet proche de ton cas : https://forum.ubuntu-fr.org/viewtopic.p … #p22345082

Dernière modification par ikewdu (Le 04/10/2020, à 19:55)

Hors ligne

#12 Le 06/10/2020, à 14:24

REDS301

Re : GRUB tout gris.

Salut,

Merci pour ta réponse et pour le lien.

Hors ligne