après une installation sans problèmes je butte sur un dernier point : permettre le démarrage en W8
Partitionnement :
Code : Tout sélectionner
[root@ToshCM christian]# gdisk -l /dev/sda
GPT fdisk (gdisk) version 0.8.7
Partition table scan:
MBR: protective
BSD: not present
APM: not present
GPT: present
Found valid GPT with protective MBR; using GPT.
Disk /dev/sda: 1465149168 sectors, 698.6 GiB
Logical sector size: 512 bytes
Disk identifier (GUID): BAE3660C-FC6F-11E1-9C45-C6B1BB081CD7
Partition table holds up to 128 entries
First usable sector is 34, last usable sector is 1465149134
Partitions will be aligned on 2048-sector boundaries
Total free space is 3757 sectors (1.8 MiB)
Number Start (sector) End (sector) Size Code Name
1 2048 923647 450.0 MiB 2700 Basic data partition
2 923648 1456127 260.0 MiB EF00 Basic data partition
3 1456128 1718271 128.0 MiB 0C01 Basic data partition
4 1718272 1230518271 585.9 GiB 0700 Basic data partition
5 1445343232 1465147391 9.4 GiB 2700 Basic data partition
6 1230518272 1250998271 9.8 GiB 8200
7 1250998272 1291958271 19.5 GiB 8300
8 1291958272 1445343231 73.1 GiB 8300
4 = Windows (ntfs)
6 = swap (on est riche)
7 = /
8 = /home
la partition efi est montée dans /boot/efi
Code : Tout sélectionner
[root@ToshCM christian]# grep efi /etc/fstab
UUID=7CD3-EE8E /boot/efi vfat rw,relatime,fmask=0022,dmask=0022,codepage=437,iocharset=iso8859-1,shortname=mixed,errors=remount-ro 0 2
je me reporte maintenant à :cette page de wiki
Code : Tout sélectionner
[root@ToshCM christian]# grub-probe --target=fs_uuid /boot/efi/EFI/Microsoft/Boot/bootmgfw.efi
7CD3-EE8E
[root@ToshCM christian]# grub-probe --target=hints_string /boot/efi/EFI/Microsoft/Boot/bootmgfw.efi
--hint-bios=hd0,gpt2 --hint-efi=hd0,gpt2 --hint-baremetal=ahci0,gpt2
Code : Tout sélectionner
[root@ToshCM christian]# cat /etc/grub.d/40_custom
#!/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.
menuentry "Microsoft Windows Vista/7/8 x86_64 UEFI-GPT" {
insmod part_gpt
insmod fat
insmod search_fs_uuid
insmod chain
search --fs-uuid --set=root --hint-bios=hd0,gpt2 --hint-efi=hd0,gpt2 --hint-baremetal=ahci0,gpt2 7CD3-EE8E
chainloader /EFI/Microsoft/Boot/bootmgfw.efi
}
Code : Tout sélectionner
grub-mkconfig -o /boot/grub/grub.cfg
Code : Tout sélectionner
### 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.
menuentry "Microsoft Windows Vista/7/8 x86_64 UEFI-GPT" {
insmod part_gpt
insmod fat
insmod search_fs_uuid
insmod chain
search --fs-uuid --set=root --hint-bios=hd0,gpt2 --hint-efi=hd0,gpt2 --hint-baremetal=ahci0,gpt2 7CD3-EE8E
chainloader /EFI/Microsoft/Boot/bootmgfw.efi
}
### END /etc/grub.d/40_custom ###
le PC est un Toshiba Satellite C855-1TM
Dans la page Advanced du BIOS le Boot Mode est sur [UEFI Boot]
dans la page Security le Secure Boot est [Disabled]
Merci d'avance