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 18/12/2023, à 21:12

GB_Informatics

Re : Réinstallation GRUB dual boot Windows 10 et Ubuntu 22.04.2 LTS(Résolu)

Je vais voir en le supprimant..

Est ce c'est possible d'afficher la fenetre GRUB, mais en cas de non selection, Windows se lance après 60 secondes d'attente ?

Hors ligne

#27 Le 18/12/2023, à 21:47

nany

Re : Réinstallation GRUB dual boot Windows 10 et Ubuntu 22.04.2 LTS(Résolu)

Bonjour,



GB_Informatics a écrit :

Est ce c'est possible d'afficher la fenetre GRUB, mais en cas de non selection, Windows se lance après 60 secondes d'attente ?

Oui,

en #18, GB_Informatics a écrit :
==================== nvme0n1p7/etc/default/grub (filtered) =====================

GRUB_DEFAULT=0
GRUB_TIMEOUT_STYLE=menu
GRUB_TIMEOUT=10
GRUB_DISTRIBUTOR=`lsb_release -i -s 2> /dev/null || echo Debian`
GRUB_CMDLINE_LINUX_DEFAULT="quiet splash resume=UUID=beebddc9-bea5-485b-909c-d1fb46d90b45 resume_offset=13899775"
GRUB_CMDLINE_LINUX=""
GRUB_DISABLE_OS_PROBER=false

en remplaçant « GRUB_DEFAULT=0 » par « GRUB_DEFAULT="Windows Boot Manager (on nvme0n1p2)" » et « GRUB_TIMEOUT=10 » par « GRUB_TIMEOUT=60 », puis en mettant à jour le menu avec

sudo update-grub

Dernière modification par nany (Le 18/12/2023, à 21:50)

En ligne

#28 Le 22/12/2023, à 20:05

GB_Informatics

Re : Réinstallation GRUB dual boot Windows 10 et Ubuntu 22.04.2 LTS(Résolu)

Bonjour ca donne ca ?
GRUB_DEFAULT="Windows Boot Manager (on nvme0n1p2)"
GRUB_TIMEOUT_STYLE=menu
GRUB_TIMEOUT=60
GRUB_DISTRIBUTOR=`lsb_release -i -s 2> /dev/null || echo Debian`
GRUB_CMDLINE_LINUX_DEFAULT="quiet splash resume=UUID=beebddc9-bea5-485b-909c-d1fb46d90b45 resume_offset=13899775"
GRUB_CMDLINE_LINUX=""
GRUB_DISABLE_OS_PROBER=false

Hors ligne

#29 Le 23/12/2023, à 06:37

nany

Re : Réinstallation GRUB dual boot Windows 10 et Ubuntu 22.04.2 LTS(Résolu)

Bonjour,



Oui, enfin ce que tu montres c’est ce que montrerait un nouveau boot-info après modification du fichier /etc/default/grub.
Et il ne faut pas oublier de faire un

sudo update-grub

sans quoi la modification ne serait pas prise en compte.

En ligne

#30 Le 23/12/2023, à 18:16

GB_Informatics

Re : Réinstallation GRUB dual boot Windows 10 et Ubuntu 22.04.2 LTS(Résolu)

Bonjour, la fênetre GRUB 2.06 s'affiche bien mais si après 60 secondes je ne fais rien ca démarre sur ubuntu.
Dans le bios en premier c'est Ubuntu sinon la fenêtre GRUB ne s'affiche pas au démarrage

Hors ligne

#31 Le 23/12/2023, à 18:23

nany

Re : Réinstallation GRUB dual boot Windows 10 et Ubuntu 22.04.2 LTS(Résolu)

Donne les retours de :

cat /etc/default/grub
cat /boot/grub/grub.cfg

En ligne

#32 Le 23/12/2023, à 19:26

GB_Informatics

Re : Réinstallation GRUB dual boot Windows 10 et Ubuntu 22.04.2 LTS(Résolu)

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="Windows Boot Manager (on nvme0n1p2)"
GRUB_TIMEOUT_STYLE=menu
GRUB_TIMEOUT=60
GRUB_DISTRIBUTOR=`lsb_release -i -s 2> /dev/null || echo Debian`
GRUB_CMDLINE_LINUX_DEFAULT="quiet splash resume=UUID=beebddc9-bea5-485b-909c-d1fb46d90b45 resume_offset=13899775"
GRUB_CMDLINE_LINUX=""

# Uncomment to enable BadRAM filtering, modify to suit your needs
# This works with Linux (no patch required) and with any kernel that obtains
# the memory map information from GRUB (GNU Mach, kernel of FreeBSD ...)
#GRUB_BADRAM="0x01234567,0xfefefefe,0x89abcdef,0xefefefef"

# Uncomment to disable graphical terminal (grub-pc only)
#GRUB_TERMINAL=console

# The resolution used on graphical terminal
# note that you can use only modes which your graphic card supports via VBE
# you can see them in real GRUB with the command `vbeinfo'
#GRUB_GFXMODE=640x480

# Uncomment if you don't want GRUB to pass "root=UUID=xxx" parameter to Linux
#GRUB_DISABLE_LINUX_UUID=true

# Uncomment to disable generation of recovery mode menu entries
#GRUB_DISABLE_RECOVERY="true"

# Uncomment to get a beep at grub start
#GRUB_INIT_TUNE="480 440 1"
GRUB_DISABLE_OS_PROBER=false
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 [ "${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="Windows Boot Manager (on nvme0n1p2)"
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
search --no-floppy --fs-uuid --set=root beebddc9-bea5-485b-909c-d1fb46d90b45
    font="/usr/share/grub/unicode.pf2"
fi

if loadfont $font ; then
  set gfxmode=auto
  load_video
  insmod gfxterm
  set locale_dir=$prefix/locale
  set lang=fr_FR
  insmod gettext
fi
terminal_output gfxterm
if [ "${recordfail}" = 1 ] ; then
  set timeout=30
else
  if [ x$feature_timeout_style = xy ] ; then
    set timeout_style=menu
    set timeout=60
  # Fallback normal timeout code in case the timeout_style feature is
  # unavailable.
  else
    set timeout=60
  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 [ ${grub_platform} != pc ]; then
      set linux_gfx_mode=keep
    elif 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-beebddc9-bea5-485b-909c-d1fb46d90b45' {
	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
	search --no-floppy --fs-uuid --set=root beebddc9-bea5-485b-909c-d1fb46d90b45
	linux	/boot/vmlinuz-6.2.0-39-generic root=UUID=beebddc9-bea5-485b-909c-d1fb46d90b45 ro  quiet splash resume=UUID=beebddc9-bea5-485b-909c-d1fb46d90b45 resume_offset=13899775 $vt_handoff
	initrd	/boot/initrd.img-6.2.0-39-generic
}
submenu 'Advanced options for Ubuntu' $menuentry_id_option 'gnulinux-advanced-beebddc9-bea5-485b-909c-d1fb46d90b45' {
	menuentry 'Ubuntu, with Linux 6.2.0-39-generic' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-6.2.0-39-generic-advanced-beebddc9-bea5-485b-909c-d1fb46d90b45' {
		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
		search --no-floppy --fs-uuid --set=root beebddc9-bea5-485b-909c-d1fb46d90b45
		echo	'Loading Linux 6.2.0-39-generic ...'
		linux	/boot/vmlinuz-6.2.0-39-generic root=UUID=beebddc9-bea5-485b-909c-d1fb46d90b45 ro  quiet splash resume=UUID=beebddc9-bea5-485b-909c-d1fb46d90b45 resume_offset=13899775 $vt_handoff
		echo	'Loading initial ramdisk ...'
		initrd	/boot/initrd.img-6.2.0-39-generic
	}
	menuentry 'Ubuntu, with Linux 6.2.0-39-generic (recovery mode)' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-6.2.0-39-generic-recovery-beebddc9-bea5-485b-909c-d1fb46d90b45' {
		recordfail
		load_video
		insmod gzio
		if [ x$grub_platform = xxen ]; then insmod xzio; insmod lzopio; fi
		insmod part_gpt
		insmod ext2
		search --no-floppy --fs-uuid --set=root beebddc9-bea5-485b-909c-d1fb46d90b45
		echo	'Loading Linux 6.2.0-39-generic ...'
		linux	/boot/vmlinuz-6.2.0-39-generic root=UUID=beebddc9-bea5-485b-909c-d1fb46d90b45 ro recovery nomodeset dis_ucode_ldr 
		echo	'Loading initial ramdisk ...'
		initrd	/boot/initrd.img-6.2.0-39-generic
	}
	menuentry 'Ubuntu, with Linux 6.2.0-37-generic' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-6.2.0-37-generic-advanced-beebddc9-bea5-485b-909c-d1fb46d90b45' {
		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
		search --no-floppy --fs-uuid --set=root beebddc9-bea5-485b-909c-d1fb46d90b45
		echo	'Loading Linux 6.2.0-37-generic ...'
		linux	/boot/vmlinuz-6.2.0-37-generic root=UUID=beebddc9-bea5-485b-909c-d1fb46d90b45 ro  quiet splash resume=UUID=beebddc9-bea5-485b-909c-d1fb46d90b45 resume_offset=13899775 $vt_handoff
		echo	'Loading initial ramdisk ...'
		initrd	/boot/initrd.img-6.2.0-37-generic
	}
	menuentry 'Ubuntu, with Linux 6.2.0-37-generic (recovery mode)' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-6.2.0-37-generic-recovery-beebddc9-bea5-485b-909c-d1fb46d90b45' {
		recordfail
		load_video
		insmod gzio
		if [ x$grub_platform = xxen ]; then insmod xzio; insmod lzopio; fi
		insmod part_gpt
		insmod ext2
		search --no-floppy --fs-uuid --set=root beebddc9-bea5-485b-909c-d1fb46d90b45
		echo	'Loading Linux 6.2.0-37-generic ...'
		linux	/boot/vmlinuz-6.2.0-37-generic root=UUID=beebddc9-bea5-485b-909c-d1fb46d90b45 ro recovery nomodeset dis_ucode_ldr 
		echo	'Loading initial ramdisk ...'
		initrd	/boot/initrd.img-6.2.0-37-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 ###
menuentry 'Windows Boot Manager (on /dev/nvme0n1p2)' --class windows --class os $menuentry_id_option 'osprober-efi-6A70-D7AA' {
	insmod part_gpt
	insmod fat
	search --no-floppy --fs-uuid --set=root 6A70-D7AA
	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 'UEFI Firmware Settings' $menuentry_id_option 'uefi-firmware' {
	fwsetup
}
### END /etc/grub.d/30_uefi-firmware ###

### BEGIN /etc/grub.d/35_fwupd ###
### END /etc/grub.d/35_fwupd ###

### 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

#33 Le 23/12/2023, à 19:40

nany

Re : Réinstallation GRUB dual boot Windows 10 et Ubuntu 22.04.2 LTS(Résolu)

Au temps pour moi, c’est « GRUB_DEFAULT="Windows Boot Manager (on /dev/nvme0n1p2)" » qu’il fallait mettre.

En ligne

#34 Le 23/12/2023, à 19:58

GB_Informatics

Re : Réinstallation GRUB dual boot Windows 10 et Ubuntu 22.04.2 LTS(Résolu)

C'est parfait merci
Vous connaissez une alternative fiable à GRUB avec un affichage plus développé ?

Hors ligne

#35 Le 23/12/2023, à 20:19

iznobe

Re : Réinstallation GRUB dual boot Windows 10 et Ubuntu 22.04.2 LTS(Résolu)


retour utilisable de commande
MSI Z490A-pro , i7 10700 , 32 GB RAM .

Hors ligne

#36 Le 23/12/2023, à 20:21

nany

Re : Réinstallation GRUB dual boot Windows 10 et Ubuntu 22.04.2 LTS(Résolu)

Dans le genre avec des icônes il y a rEFInd mais je ne sais pas le paramétrer.

Sinon tu peux choisir un thème pour grub2 sur gnome-look.org (voir le §5 de la page tutoriel/grub2_parametrage_manuel).

En ligne

#37 Le 23/12/2023, à 20:33

GB_Informatics

Re : Réinstallation GRUB dual boot Windows 10 et Ubuntu 22.04.2 LTS(Résolu)

je ne suis pas fan, c'est bien ca https://www.gnome-look.org/browse?cat=1 … ord=latest ?

Hors ligne

#38 Le 23/12/2023, à 20:55

nany

Re : Réinstallation GRUB dual boot Windows 10 et Ubuntu 22.04.2 LTS(Résolu)

Oui, enfin là tu nous montres la dixième page du classement par date.
Tu peux aussi parcourir par popularité.

Dernière modification par nany (Le 23/12/2023, à 20:59)

En ligne

#39 Le 23/12/2023, à 21:53

GB_Informatics

Re : Réinstallation GRUB dual boot Windows 10 et Ubuntu 22.04.2 LTS(Résolu)

Ah oui je n'ai pas fait attention
J'ai le grub et non le grub2, il va falloir que je fasse une mise à jour vers le grub2 ?

Hors ligne

#40 Le 24/12/2023, à 00:48

nany

Re : Réinstallation GRUB dual boot Windows 10 et Ubuntu 22.04.2 LTS(Résolu)

GB_Informatics a écrit :

J'ai le grub et non le grub2, il va falloir que je fasse une mise à jour vers le grub2 ?

GB_Informatics a écrit :

la fênetre GRUB 2.06 s'affiche bien

Tu as bel et bien Grub2.

En ligne

#41 Le 24/12/2023, à 11:37

geole

Re : Réinstallation GRUB dual boot Windows 10 et Ubuntu 22.04.2 LTS(Résolu)

nany a écrit :

Dans le genre avec des icônes il y a rEFInd mais je ne sais pas le paramétrer.

Bonjour.
Lors de l'installation, il y a dépot d'un fichier /boot/efi/EFI/refind/refind.conf.
Il est au format texte et auto-commenté Mais en anglais.
   On peut très facilement positionner la taille des icônes.
   On peut choisir d'utiliser la souris ou même le doigt si on dispose d'un écran tactile.
   On peut mettre une image d'arrière-plan personnelle. Attention à son choix: Les icônes peuvent devenir difficiles à voir.

Il exite une option pour booter  avec le dernier O.S. lancé c'est le signe +
Il existe une option pour booter avec l'O.S. en position N dans la liste des icônes c'est la valeur N. ( exactement la même logique que grub).
Il existe une option pour un choix de créneau horaire:   De telle heure à telle heure, lancer tel O.S
Mais malheureusement pas sur les jours. Pas de notion de férié non plus.

La difficulté relative est de reconnaitre à quoi les icônes correspondent . Astuce. Mettre des étiquettes dans les partitions

On peut masquer  Certaines partitions, certains répertoires, certains fichiers pour alléger la présentation.

On peut activer la recherche des O,S, installés en legacy.

Pour les cas oubliés, on peut définir le menu entry comme avec 40-custom. Il y a des exemples
fournis.

Le gros avantage en cas de multiples O.S. libres. Il est en un seul exemplaire et automatiquement à jour et sait détecter les installations BTRFS.

Dernière modification par geole (Le 24/12/2023, à 12:22)


Les grilles de l'installateur https://doc.ubuntu-fr.org/tutoriel/inst … _subiquity
"gedit admin:///etc/fstab" est proscrit,  utilisez "pkexec env DISPLAY=$DISPLAY XAUTHORITY=$XAUTHORITY xdg-open /etc/fstab" Voir  https://doc.ubuntu-fr.org/gedit
Les partitions EXT4 des disques externes => https://forum.ubuntu-fr.org/viewtopic.p … #p22697248

Hors ligne

#42 Le 24/12/2023, à 11:47

GB_Informatics

Re : Réinstallation GRUB dual boot Windows 10 et Ubuntu 22.04.2 LTS(Résolu)

j'ai confondu, merci ca fonctionne

Hors ligne

#43 Le 24/12/2023, à 12:07

GB_Informatics

Re : Réinstallation GRUB dual boot Windows 10 et Ubuntu 22.04.2 LTS(Résolu)

J'ai un doute, ce thème "https://www.gnome-look.org/p/1440862" est compatible avec le GRUB2 ?

Hors ligne

#44 Le 24/12/2023, à 12:47

nany

Re : Réinstallation GRUB dual boot Windows 10 et Ubuntu 22.04.2 LTS(Résolu)

Bonjour,



Oui c’est du Grub2 et en plus il y a un script d’installation. Il faut juste choisir la bonne résolution (4k, 2k ou 1080p).

Par exemple pour le thème Ubuntu en 1080p :

  • télécharger (dans ~/Téléchargements) le fichier xenlism-grub-1080p-ubuntu.tar.xz ;

  • extraire le contenu du fichier (toujours dans ~/Téléchargements) ;

  • cd ~/Téléchargements/xenlism-grub-1080p-ubuntu && sudo ./install.sh ; cd

    Et le tour est joué. Le répertoire xenlism-grub-1080p-ubuntu et le fichier xenlism-grub-1080p-ubuntu.tar.xz peuvent être supprimés de ~/Téléchargements.

En ligne