|
 Posté le 11/12/2019 @ 16:06 |
Petit astucien
|
Normal
0
21
false
false
false
FR
X-NONE
X-NONE
/* Style Definitions */
table.MsoNormalTable
{mso-style-name:"Tableau Normal";
mso-tstyle-rowband-size:0;
mso-tstyle-colband-size:0;
mso-style-noshow:yes;
mso-style-priority:99;
mso-style-parent:"";
mso-padding-alt:0cm 5.4pt 0cm 5.4pt;
mso-para-margin-top:0cm;
mso-para-margin-right:0cm;
mso-para-margin-bottom:8.0pt;
mso-para-margin-left:0cm;
line-height:107%;
mso-pagination:widow-orphan;
font-size:11.0pt;
font-family:"Calibri",sans-serif;
mso-ascii-font-family:Calibri;
mso-ascii-theme-font:minor-latin;
mso-hansi-font-family:Calibri;
mso-hansi-theme-font:minor-latin;
mso-bidi-font-family:"Times New Roman";
mso-bidi-theme-font:minor-bidi;
mso-fareast-language:EN-US;}
Bonjour Je viens de monter et installer Linux Mint en dual boot avec W 10 19 09 en UEFI sur deux SSD M 2 de 500 Go chacun ; j'ai placé Grub sur le SSD où est installé Linux Mint; mais au démarrage Grub n’apparaît pas ; je peux cependant lancer chaque OS à partir du choix donné avec F11 au démarrage. et le tout est correct. Connaissant mal l'UEFI, j'ai dû zapper sur un paramétrage à l'installation. Mais lequel ? Merci de vos éclaircissements.
|
|
|
|
|
|
Posté le 11/12/2019 à 16:58 |
| 
Perso , je n'ai jamais eu de SSD donc jamais eu le besoin parametrer le Bios .. je ne peux donc pas t'aider pour ce parametrage ..
Perso , si j'aurais un SSD .. je lui mettrais une partition de ( /boot ) de 100 Mo ..
un cd/usb de depannage tres utile ( Rescatux ) ;

Lien de l'iso Rescatux 0.41b1
http://downloads.sourceforge.net/rescatux/rescatux-0.41b1.iso

En souhaitant pouvoir t'aider .. Modifié par m_n le 17/01/2020 16:43 |
|
Posté le 11/12/2019 à 17:49 |
Petit astucien
| Merci m_n
Je pense qu'il s'agit de super grub 2; je vais m'informer car ce site est en anglais que je ne maitrise pas.
ce n'est pas le ssd qui pose problème mais le paramétrage UEFI je pense.
D'autre part je vais aller voir sur le site de linux mint.
|
|
Posté le 11/12/2019 à 21:47 |
Astucien
| |
|
Posté le 11/12/2019 à 22:24 |
Petit astucien
| |
|
Posté le 11/12/2019 à 22:26 |
Petit astucien
| |
|
Posté le 11/12/2019 à 23:08 |
Astucien
| Re,
Boot-info a du mal à lire tes disques Nvme. Ton souci vient sûrement de là, car ton GRUB est dans la partition efi nvme1n1p2. Que donne le retour de
cat /boot/grub/grub.cfg Modifié par Ikewdu_ le 11/12/2019 23:09 |
|
Posté le 11/12/2019 à 23:17 |
Petit astucien
| max@PC-Max:~$ cat /boot/grub/grub.cfg # # DO NOT EDIT THIS FILE # # It is automatically generated by grub-mkconfig using templates # from /etc/grub.d and settings from /etc/default/grub #
### BEGIN /etc/grub.d/00_header ### if [ -s $prefix/grubenv ]; then set have_grubenv=true load_env fi if [ "${next_entry}" ] ; then set default="${next_entry}" set next_entry= save_env next_entry set boot_once=true else set default="0" fi
if [ x"${feature_menuentry_id}" = xy ]; then menuentry_id_option="--id" else menuentry_id_option="" fi
export menuentry_id_option
if [ "${prev_saved_entry}" ]; then set saved_entry="${prev_saved_entry}" save_env saved_entry set prev_saved_entry= save_env prev_saved_entry set boot_once=true fi
function savedefault { if [ -z "${boot_once}" ]; then saved_entry="${chosen}" save_env saved_entry fi } function recordfail { set recordfail=1 if [ -n "${have_grubenv}" ]; then if [ -z "${boot_once}" ]; then save_env recordfail; fi; fi } function load_video { if [ x$feature_all_video_module = xy ]; then insmod all_video else insmod efi_gop insmod efi_uga insmod ieee1275_fb insmod vbe insmod vga insmod video_bochs insmod video_cirrus fi }
if [ x$feature_default_font_path = xy ] ; then font=unicode else insmod part_gpt insmod ext2 if [ x$feature_platform_search_hint = xy ]; then search --no-floppy --fs-uuid --set=root 394100cd-e646-41e4-8233-9d12abca1b9d else search --no-floppy --fs-uuid --set=root 394100cd-e646-41e4-8233-9d12abca1b9d fi font="/usr/share/grub/unicode.pf2" fi
if loadfont $font ; then set gfxmode=auto load_video insmod gfxterm set locale_dir=$prefix/locale set lang=fr_FR insmod gettext fi terminal_output gfxterm if [ "${recordfail}" = 1 ] ; then set timeout=30 else if [ x$feature_timeout_style = xy ] ; then set timeout_style=hidden set timeout=10 # Fallback hidden-timeout code in case the timeout_style feature is # unavailable. elif sleep --interruptible 10 ; then set timeout=0 fi fi ### END /etc/grub.d/00_header ###
### BEGIN /etc/grub.d/05_debian_theme ### set menu_color_normal=white/black set menu_color_highlight=black/light-gray ### END /etc/grub.d/05_debian_theme ###
### BEGIN /etc/grub.d/10_linux ### function gfxmode { set gfxpayload="${1}" if [ "${1}" = "keep" ]; then set vt_handoff=vt.handoff=1 else set vt_handoff= fi } if [ "${recordfail}" != 1 ]; then if [ -e ${prefix}/gfxblacklist.txt ]; then if hwmatch ${prefix}/gfxblacklist.txt 3; then if [ ${match} = 0 ]; then set linux_gfx_mode=keep else set linux_gfx_mode=text fi else set linux_gfx_mode=text fi else set linux_gfx_mode=keep fi else set linux_gfx_mode=text fi export linux_gfx_mode menuentry 'Linux Mint 19 Cinnamon' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-simple-394100cd-e646-41e4-8233-9d12abca1b9d' { 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 if [ x$feature_platform_search_hint = xy ]; then search --no-floppy --fs-uuid --set=root 394100cd-e646-41e4-8233-9d12abca1b9d else search --no-floppy --fs-uuid --set=root 394100cd-e646-41e4-8233-9d12abca1b9d fi linux /boot/vmlinuz-4.15.0-72-generic root=UUID=394100cd-e646-41e4-8233-9d12abca1b9d ro quiet splash $vt_handoff initrd /boot/initrd.img-4.15.0-72-generic } submenu 'Options avancées pour Linux Mint 19 Cinnamon' $menuentry_id_option 'gnulinux-advanced-394100cd-e646-41e4-8233-9d12abca1b9d' { menuentry 'Linux Mint 19 Cinnamon, avec Linux 4.15.0-72-generic' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-4.15.0-72-generic-advanced-394100cd-e646-41e4-8233-9d12abca1b9d' { 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 if [ x$feature_platform_search_hint = xy ]; then search --no-floppy --fs-uuid --set=root 394100cd-e646-41e4-8233-9d12abca1b9d else search --no-floppy --fs-uuid --set=root 394100cd-e646-41e4-8233-9d12abca1b9d fi echo 'Chargement de Linux 4.15.0-72-generic…' linux /boot/vmlinuz-4.15.0-72-generic root=UUID=394100cd-e646-41e4-8233-9d12abca1b9d ro quiet splash $vt_handoff echo 'Chargement du disque mémoire initial…' initrd /boot/initrd.img-4.15.0-72-generic } menuentry 'Linux Mint 19 Cinnamon, with Linux 4.15.0-72-generic (recovery mode)' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-4.15.0-72-generic-recovery-394100cd-e646-41e4-8233-9d12abca1b9d' { recordfail load_video insmod gzio if [ x$grub_platform = xxen ]; then insmod xzio; insmod lzopio; fi insmod part_gpt insmod ext2 if [ x$feature_platform_search_hint = xy ]; then search --no-floppy --fs-uuid --set=root 394100cd-e646-41e4-8233-9d12abca1b9d else search --no-floppy --fs-uuid --set=root 394100cd-e646-41e4-8233-9d12abca1b9d fi echo 'Chargement de Linux 4.15.0-72-generic…' linux /boot/vmlinuz-4.15.0-72-generic root=UUID=394100cd-e646-41e4-8233-9d12abca1b9d ro recovery nomodeset echo 'Chargement du disque mémoire initial…' initrd /boot/initrd.img-4.15.0-72-generic } menuentry 'Linux Mint 19 Cinnamon, avec Linux 4.15.0-20-generic' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-4.15.0-20-generic-advanced-394100cd-e646-41e4-8233-9d12abca1b9d' { 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 if [ x$feature_platform_search_hint = xy ]; then search --no-floppy --fs-uuid --set=root 394100cd-e646-41e4-8233-9d12abca1b9d else search --no-floppy --fs-uuid --set=root 394100cd-e646-41e4-8233-9d12abca1b9d fi echo 'Chargement de Linux 4.15.0-20-generic…' linux /boot/vmlinuz-4.15.0-20-generic root=UUID=394100cd-e646-41e4-8233-9d12abca1b9d ro quiet splash $vt_handoff echo 'Chargement du disque mémoire initial…' initrd /boot/initrd.img-4.15.0-20-generic } menuentry 'Linux Mint 19 Cinnamon, with Linux 4.15.0-20-generic (recovery mode)' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-4.15.0-20-generic-recovery-394100cd-e646-41e4-8233-9d12abca1b9d' { recordfail load_video insmod gzio if [ x$grub_platform = xxen ]; then insmod xzio; insmod lzopio; fi insmod part_gpt insmod ext2 if [ x$feature_platform_search_hint = xy ]; then search --no-floppy --fs-uuid --set=root 394100cd-e646-41e4-8233-9d12abca1b9d else search --no-floppy --fs-uuid --set=root 394100cd-e646-41e4-8233-9d12abca1b9d fi echo 'Chargement de Linux 4.15.0-20-generic…' linux /boot/vmlinuz-4.15.0-20-generic root=UUID=394100cd-e646-41e4-8233-9d12abca1b9d ro recovery nomodeset echo 'Chargement du disque mémoire initial…' initrd /boot/initrd.img-4.15.0-20-generic } }
### END /etc/grub.d/10_linux ###
### BEGIN /etc/grub.d/20_linux_xen ###
### END /etc/grub.d/20_linux_xen ###
### BEGIN /etc/grub.d/20_memtest86+ ### ### END /etc/grub.d/20_memtest86+ ###
### BEGIN /etc/grub.d/30_os-prober ### menuentry 'Windows Boot Manager (sur /dev/nvme0n1p2)' --class windows --class os $menuentry_id_option 'osprober-efi-4C19-BBC8' { insmod part_gpt insmod fat if [ x$feature_platform_search_hint = xy ]; then search --no-floppy --fs-uuid --set=root 4C19-BBC8 else search --no-floppy --fs-uuid --set=root 4C19-BBC8 fi chainloader /EFI/Microsoft/Boot/bootmgfw.efi } set timeout_style=menu if [ "${timeout}" = 0 ]; then set timeout=10 fi ### END /etc/grub.d/30_os-prober ###
### BEGIN /etc/grub.d/30_uefi-firmware ### menuentry 'System setup' $menuentry_id_option 'uefi-firmware' { fwsetup } ### END /etc/grub.d/30_uefi-firmware ###
### BEGIN /etc/grub.d/40_custom ### # This file provides an easy way to add custom menu entries. Simply type the # menu entries you want to add after this comment. Be careful not to change # the 'exec tail' line above. ### END /etc/grub.d/40_custom ###
### BEGIN /etc/grub.d/41_custom ### if [ -f ${config_directory}/custom.cfg ]; then source ${config_directory}/custom.cfg elif [ -z "${config_directory}" -a -f $prefix/custom.cfg ]; then source $prefix/custom.cfg; fi ### END /etc/grub.d/41_custom ### max@PC-Max:~$ ^C max@PC-Max:~$ cat /boot/grub/grub.cfg
|
|
Posté le 11/12/2019 à 23:29 |
Astucien
| Re,
Pourtant, ton Grub voit bien Windows (bootmgfw.efi sur la partition efi qui a la bonne uuid) et propose une entrée :
menuentry 'Windows Boot Manager (sur /dev/nvme0n1p2)'
Que se passe-t-il exactement quand tu lances ton Ubuntu depuis F11 ?
Edit. Essaie d'éditer le fichier /etc/default/grub en mode administrateur (tente ainsi : gedit admin:///etc/default/grub )
Tu ajoutes un # devant : GRUB_TIMEOUT_STYLE=hidden
Puis tu enregistres, tu fermes et tu fais un
sudo update-grub
et tu réessaies. Modifié par Ikewdu_ le 11/12/2019 23:50 |
|
Posté le 11/12/2019 à 23:38 |
Petit astucien
| avec F11: j'ai 7 mentions dont les deux premières sont
-Windows boot manager(samsung EVO +)
-Ubuntu (samsung SSD970 EVO +)
suivent l'énumération des ssd et hdd externes.
Si je clique sur la ligne ubuntu je démarre Linux Mint sans problème.
Si je clique sur le ssd disue ssd M2 où est installé linux, j'ai le message de rebooter. |
|
Posté le 11/12/2019 à 23:45 |
Astucien
| Essaie les manips de mon "edit" du message précédent. On va forcer l'affichage de GRUB pour voir si on peut faire apparaitre l'entrée Windows. Après ça, en passant par F11, l'entrée Ubuntu un fois sélectionnée devrait s'afficher ton GRUB... Et une entrée Windows. Si oui, on verra comment passer tout ça en tête au démarrage. Modifié par Ikewdu_ le 11/12/2019 23:57 |
|
Posté le 11/12/2019 à 23:58 |
Petit astucien
| je reessaie de redémarrer?
|
|
Posté le 12/12/2019 à 00:00 |
| 
Si je clique sur la ligne ubuntu je démarre Linux Mint sans problème.
Aussi, tu peux faire sur cette distro ou une autre distro que tu desire avoir le Grub :
sudo grub-install /dev/sdX
(( X normalement est remplacer par a ou b ) qui fait comme ceci sudo grub-install /dev/sda -- ou b , ou autres .. 
sudo update-grub Modifié par m_n le 12/12/2019 00:36 |
|
Posté le 12/12/2019 à 00:00 |
Astucien
| Si tu as pu faire la modif, et que tu as fait un sudo update-grub, oui. Lance Ubuntu par F11 comme les fois précédentes. Dis-moi si GRUB s'affiche cette fois, avec une entrée Windows proposée.
==============
A m_n. Attention... Pas de sdX puisque c'est du Nvme (et pas d'efi sur sda, sdb et sdc,donc la commande échouerait)... Et grub est bien installé de toute manière. C'est son affichage qui est désactivé. Modifié par Ikewdu_ le 12/12/2019 00:05 |
|
Posté le 12/12/2019 à 00:06 |
Petit astucien
| Non grub ne s'affiche pas ; par contre comme avant il y a une entrée vers boot manager |
|
Posté le 12/12/2019 à 00:08 |
Astucien
| Depuis ubuntu donne le retour de
cat /etc/default/grub |
|
Posté le 12/12/2019 à 00:10 |
Petit astucien
| # 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" |
|
Posté le 12/12/2019 à 00:13 |
Astucien
| Ben, elle est où ma ligne modifiée ? Je ne vois que la fin... Moi, je veux ceci :
=================== /etc/default/grub :
# If you change this file, run 'update-grub' afterwards to update
# /boot/grub/grub.cfg.
# For full documentation of the options in this file, see:
# info -f grub -n 'Simple configuration'
GRUB_DEFAULT=0
#GRUB_TIMEOUT_STYLE=hidden
GRUB_TIMEOUT=10
GRUB_DISTRIBUTOR=`lsb_release -i -s 2> /dev/null || echo Debian`
GRUB_CMDLINE_LINUX_DEFAULT="quiet splash"
GRUB_CMDLINE_LINUX=""
Modifié par Ikewdu_ le 12/12/2019 00:15 |
|
Posté le 12/12/2019 à 00:16 |
Petit astucien
| Je l'ai modifiée pourtant; j'ai du installer gedit qui était absent; peut etre faut il que je recommence la manip; j'ai du l'enregistrer après!
|
|
Posté le 12/12/2019 à 00:16 |
| agrandi ta console ( terminal )  |
|
Posté le 12/12/2019 à 00:17 |
Astucien
| Refais la commande cat, mais copie tout cette fois.... |
|
Posté le 12/12/2019 à 00:19 |
Petit astucien
| max@PC-Max:~$ cat /etc/default/grub # If you change this file, run 'update-grub' afterwards to update # /boot/grub/grub.cfg. # For full documentation of the options in this file, see: # info -f grub -n 'Simple configuration'
GRUB_DEFAULT=0 #GRUB_TIMEOUT_STYLE=hidden GRUB_TIMEOUT=10 GRUB_DISTRIBUTOR=`lsb_release -i -s 2> /dev/null || echo Debian` GRUB_CMDLINE_LINUX_DEFAULT="quiet splash" GRUB_CMDLINE_LINUX=""
# Uncomment to enable BadRAM filtering, modify to suit your needs # This works with Linux (no patch required) and with any kernel that obtains # the memory map information from GRUB (GNU Mach, kernel of FreeBSD ...) #GRUB_BADRAM="0x01234567,0xfefefefe,0x89abcdef,0xefefefef"
# Uncomment to disable graphical terminal (grub-pc only) #GRUB_TERMINAL=console
# The resolution used on graphical terminal # note that you can use only modes which your graphic card supports via VBE # you can see them in real GRUB with the command `vbeinfo' #GRUB_GFXMODE=640x480
# Uncomment if you don't want GRUB to pass "root=UUID=xxx" parameter to Linux #GRUB_DISABLE_LINUX_UUID=true
# Uncomment to disable generation of recovery mode menu entries #GRUB_DISABLE_RECOVERY="true"
# Uncomment to get a beep at grub start #GRUB_INIT_TUNE="480 440 1" max@PC-Max:~$ ^C max@PC-Max:~$
|
|
Posté le 12/12/2019 à 00:21 |
Astucien
| OK... Refais un
sudo update-grub
Relance ton Ubuntu. Si GRUB ne s'affiche toujours pas, je n'aurai pas de solution. |
|
Posté le 12/12/2019 à 00:23 |
Petit astucien
| ok jje redémarre sur ubuntu; si je n'ai rien de nouveau, je quitte et merci pour l'aide. |
|
Posté le 12/12/2019 à 00:24 |
Astucien
| |
|
Posté le 12/12/2019 à 00:28 |
Petit astucien
| rien de changé; donc je quitte car il est tard.
J'eaaierai demain en choisissant le boot manager qui apparaît comme choix après "linux Mint cinnamon" pour vois ce que cela donne.
|
|
|
|
|
|