[EFI] Problème installation boot (Résolu)

Questions et astuces concernant l'installation et la configuration d'archlinux
gael
yeomen
Messages : 251
Inscription : dim. 31 oct. 2010, 02:07

[EFI] Problème installation boot (Résolu)

Message par gael »

Bonjour
je n'arrive pas à booter en mode EFI
j'y suis arrivé à un moment et arpès un redémarrage plus rien
donc j'ai refais les manip suivantes mais au reboot j'ai grub en ligne de commande et je ne boote pas

j'ai un SSD
en /dev/sda1 ma partition GPT
en /dev/sda2 mon install archlinux


mkfs.vfat -F32 /dev/sda1
pacman -Syu grub efibootmgr

mount -t vfat /dev/sda1 /boot/efi
mkdir -p /boot/efi/EFI
grub-install --target=x86_64-efi --efi-directory=/boot/efi --bootloader-id=grub_arch
grub-mkconfig -o /boot/grub/grub.cfg

merci de votre aide
Dernière modification par gael le mer. 05 oct. 2016, 11:37, modifié 2 fois.
Avatar de l’utilisateur
benjarobin
Maître du Kyudo
Messages : 17187
Inscription : sam. 30 mai 2009, 15:48
Localisation : Lyon

Re: [EFI] Problème installation boot

Message par benjarobin »

Bonsoir,
As tu bien fait ces commandes depuis le chroot ?

Sinon /dev/sda1 est ta partition ESP (une "partition GPT" cela n'a pas de sens, c'est la table de partition qui au format GPT)
Zsh | KDE | PC fixe : core i7, carte nvidia
Titre d'un sujet : [Thème] Sujet (état) / Règles du forum
otacon
Chu Ko Nu
Messages : 466
Inscription : sam. 07 sept. 2013, 19:22
Localisation : Limousin

Re: [EFI] Problème installation boot

Message par otacon »

gael a écrit : mkfs.vfat -F32 /dev/sda1
pacman -Syu grub efibootmgr
mount -t vfat /dev/sda1 /boot/efi
mkdir -p /boot/efi/EFI
grub-install --target=x86_64-efi --efi-directory=/boot/efi --bootloader-id=grub_arch
grub-mkconfig -o /boot/grub/grub.cfg
s'assurer que la partition sda1 a les drapeaux "boot" et "esp".
sauf erreur de ma part, le dossier /boot/efi n'existe pas de base dans /boot.
ajouter sa création :

Code : Tout sélectionner

mkfs.vfat -F32 /dev/sda1
pacman -Syu grub efibootmgr
mkdir -p /boot/efi
mount -t vfat /dev/sda1 /boot/efi
mkdir -p /boot/efi/EFI
grub-install --target=x86_64-efi --efi-directory=/boot/efi --bootloader-id=grub_arch
grub-mkconfig -o /boot/grub/grub.cfg
gael
yeomen
Messages : 251
Inscription : dim. 31 oct. 2010, 02:07

Re: [EFI] Problème installation boot

Message par gael »

benjarobin a écrit :Bonsoir,
As tu bien fait ces commandes depuis le chroot ?

Sinon /dev/sda1 est ta partition ESP (une "partition GPT" cela n'a pas de sens, c'est la table de partition qui au format GPT)
Oui j'ai bien fait un chroot
j'ai fait ça

Code : Tout sélectionner

mount /dev/sda2 /mnt
puis

Code : Tout sélectionner

chroot /mnt
puis

Code : Tout sélectionner

mount /dev/sda1 /boot/efi
Avatar de l’utilisateur
benjarobin
Maître du Kyudo
Messages : 17187
Inscription : sam. 30 mai 2009, 15:48
Localisation : Lyon

Re: [EFI] Problème installation boot

Message par benjarobin »

Si tu as fait ceci, je crois que cela ne peut pas fonctionner...
Personnellement je monte tout en dehors du chroot (en ajoutant /mnt...)
Puis le chroot est fait via l'outil de Arch qui s'occupe de plein de choses
Zsh | KDE | PC fixe : core i7, carte nvidia
Titre d'un sujet : [Thème] Sujet (état) / Règles du forum
gael
yeomen
Messages : 251
Inscription : dim. 31 oct. 2010, 02:07

Re: [EFI] Problème installation boot

Message par gael »

oki je vais ressayer demain
donc si je résume
après le boot sur clé usb

Code : Tout sélectionner

mount /dev/sda2 /mnt
mount /dev/sda1 /mnt/boot/efi  ==> question pourquoi mnt/boot/efi et pas mnt/boot
donc après

Code : Tout sélectionner

arch-chroot /mnt
su -
grub-install --target=x86_64-efi --efi-directory=/boot/efi --bootloader-id=grub_arch
grub-mkconfig -o /boot/grub/grub.cfg
gael
yeomen
Messages : 251
Inscription : dim. 31 oct. 2010, 02:07

Re: [EFI] Problème installation boot

Message par gael »

Marche toujours pas
j'ai bien l'entrée dans le bios (grub_arch) mais j'arrive sur grub en ligne de commande

j'ai vérifié la configuration de la parttition

Code : Tout sélectionner

 parted /dev/sda print

Code : Tout sélectionner

 Modèle: ATA Samsung SSD 750 (scsi)
Disque /dev/sda : 500GB
Taille des secteurs (logiques/physiques): 512B/512B
Table de partitions : gpt
Disk Flags: 

Numéro  Début   Fin     Taille  Système de fichiers  Nom               Fanions
 1      1049kB  1075MB  1074MB  fat32                EFI System        démarrage, legacy_boot, esp
 2      1075MB  500GB   499GB   ext4                 Linux filesystem

avi3000
Chu Ko Nu
Messages : 404
Inscription : dim. 19 juin 2011, 18:53
Localisation : dans le neuf trois

Re: [EFI] Problème installation boot

Message par avi3000 »

Bonjour,

dans un premier temps, il faut vérifier la bonne installation de ton bootloader grubx64.efi.

Code : Tout sélectionner

mkdir /tmp/toto
sudo mount /dev/sda1 /tmp/toto
/bin/ls -l /tmp/toto
dans un deuxième temps, il faut vérifier tes entrées efi.

Code : Tout sélectionner

efibootmgr
efibootmgr -v
poste le résultat des 3 dernières commandes, on devrait y voir plus clair.
gael
yeomen
Messages : 251
Inscription : dim. 31 oct. 2010, 02:07

Re: [EFI] Problème installation boot

Message par gael »

/bin/ls -l /tmp/toto

Code : Tout sélectionner

total 4
drwxr-xr-x 3 root root 4096  4 oct.  20:09 EFI

Code : Tout sélectionner

efibootmgr
BootCurrent: 0003
Timeout: 1 seconds
BootOrder: 0001,0000,0003
Boot0000  Arch Linux
Boot0001* grub_arch
Boot0003  UEFI: SanDisk

Code : Tout sélectionner

efibootmgr -v
BootCurrent: 0003
Timeout: 1 seconds
BootOrder: 0001,0000,0003
Boot0000  Arch Linux	HD(1,GPT,49f24860-434f-4b1d-b054-edeaa027a1ef,0x800,0x200000)/File(\EFI\arch\vmlinuz-arch.efi)r.o.o.t.=./.d.e.v./.s.d.a.2. .r.o.o.t.f.s.t.y.p.e.=.e.x.t.4. .i.n.i.t.r.d.=.\.E.F.I.\.a.r.c.h.\.i.n.i.t.r.a.m.f.s.-.a.r.c.h...i.m.g. .r.w. .a.d.d._.e.f.i._.m.e.m.m.a.p.
Boot0001* grub_arch	HD(1,GPT,49f24860-434f-4b1d-b054-edeaa027a1ef,0x800,0x200000)/File(\EFI\grub_arch\grubx64.efi)
Boot0003  UEFI: SanDisk	PciRoot(0x0)/Pci(0x1d,0x0)/USB(1,0)/USB(4,0)/HD(1,MBR,0x8,0xac,0x14000)AMBO
gael
yeomen
Messages : 251
Inscription : dim. 31 oct. 2010, 02:07

Re: [EFI] Problème installation boot

Message par gael »

j'ai remarqué que j'avais un "legacy_boot" sru la partition /dev/sda1 mais je ne vois pas comment l’enlever avec parted
Avatar de l’utilisateur
Xorg
Maître du Kyudo
Messages : 1933
Inscription : dim. 22 janv. 2012, 19:25
Localisation : Entre le clavier et la chaise.

Re: [EFI] Problème installation boot

Message par Xorg »

gael a écrit :

Code : Tout sélectionner

mount /dev/sda1 /mnt/boot/efi  ==> question pourquoi mnt/boot/efi et pas mnt/boot
Car /boot correspond usuellement au répertoire où ton système d'exploitation va placer les fichiers nécessaires au boot.
Lors d'un boot EFI, l'UEFI va chercher les fichiers de boot dans sa partition (l'ESP) ; ici, l'UEFI va chercher à amorcer GRUB, qui doit donc être placé dans l'ESP. On monte généralement l'ESP dans /boot/efi. Donc spécifier /mnt/boot n'a pas la même effet.
gael a écrit :

Code : Tout sélectionner

su -
C'est inutile de faire un su - dans un chroot. Un chroot se fait (normalement) en tant que root, donc dans le chroot tu es déjà avec l'utilisateur root.

Donc tu arrives sur GRUB, il semble donc que l'UEFI démarre correctement dessus, mais GRUB n'arrive pas à trouver son fichier de configuration.
Peut-être essaye d'installer GRUB avec la méthode alternative ? Le esp qui apparaît dans le wiki correspond à /boot/efi.
Arch Linux x86_64 - Sway
AMD Ryzen 5 3600X - 32 Go de DDR4 - SSD NVMe 1 To + SSD SATA 250 Go - Sapphire NITRO+ Radeon RX 580
Image AUR___Image Wiki___Image GitHub
gael
yeomen
Messages : 251
Inscription : dim. 31 oct. 2010, 02:07

Re: [EFI] Problème installation boot

Message par gael »

voici ce que j'ai fait en suivant la méthode alternative

Code : Tout sélectionner

grub-install --target=x86_64-efi --efi-directory=/boot/efi --bootloader-id=grub --boot-directory=/boot/efi --debug
avi3000
Chu Ko Nu
Messages : 404
Inscription : dim. 19 juin 2011, 18:53
Localisation : dans le neuf trois

Re: [EFI] Problème installation boot

Message par avi3000 »

gael a écrit :j'ai remarqué que j'avais un "legacy_boot" sru la partition /dev/sda1 mais je ne vois pas comment l’enlever avec parted
parted /dev/sda set 1 legacy_boot off
c'est dans le man pdf à récupérer ici https://www.gnu.org/software/parted/manual/parted.pdf

poste le résultat de

Code : Tout sélectionner

/bin/ls -l /tmp/toto/EFI/*
Avatar de l’utilisateur
benjarobin
Maître du Kyudo
Messages : 17187
Inscription : sam. 30 mai 2009, 15:48
Localisation : Lyon

Re: [EFI] Problème installation boot

Message par benjarobin »

C'est quoi cette entrée Boot0000 ? Il faudrait la supprimer je pense...
Peux tu donner la sortie de :

Code : Tout sélectionner

gdisk -l /dev/sda
mount /dev/sda2 /mnt
mount /dev/sda1 /mnt/boot/efi
ls -lR /mnt/boot
Sur une table de partiton GPT il n'y a pas de flag de boot, parted embrouille plus que tout, utilise gdisk pour voir

Si tu as suivi la méthode alternative, il faut copier le fichier grub.cfg ailleurs...
Zsh | KDE | PC fixe : core i7, carte nvidia
Titre d'un sujet : [Thème] Sujet (état) / Règles du forum
gael
yeomen
Messages : 251
Inscription : dim. 31 oct. 2010, 02:07

Re: [EFI] Problème installation boot

Message par gael »

Code : Tout sélectionner

 gdisk -l /dev/sda
GPT fdisk (gdisk) version 1.0.1

Partition table scan:
  MBR: protective
  BSD: not present
  APM: not present
  GPT: present

Found valid GPT with protective MBR; using GPT.
Disk /dev/sda: 976773168 sectors, 465.8 GiB
Logical sector size: 512 bytes
Disk identifier (GUID): F9E5D2DE-30AF-467F-A837-99E9E55B86C7
Partition table holds up to 128 entries
First usable sector is 34, last usable sector is 976773134
Partitions will be aligned on 2048-sector boundaries
Total free space is 2014 sectors (1007.0 KiB)

Number  Start (sector)    End (sector)  Size       Code  Name
   1            2048         2099199   1024.0 MiB  EF00  EFI System
   2         2099200       976773134   464.8 GiB   8300  Linux filesystem
et le ls

Code : Tout sélectionner

/boot:
total 12
drwxr-xr-x 4 root root 4096  1 janv.  1970 efi
drwxr-xr-x 3 root root 4096  5 oct.  09:59 esp
drwxr-xr-x 6 root root 4096  5 oct.  09:04 grub

/boot/efi:
total 8
drwxr-xr-x 4 root root 4096  5 oct.  10:00 EFI
drwxr-xr-x 6 root root 4096  5 oct.  10:00 grub

/boot/efi/EFI:
total 8
drwxr-xr-x 2 root root 4096  5 oct.  10:00 grub
drwxr-xr-x 2 root root 4096  4 oct.  20:09 grub_arch

/boot/efi/EFI/grub:
total 120
-rwxr-xr-x 1 root root 122368  5 oct.  10:00 grubx64.efi

/boot/efi/EFI/grub_arch:
total 120
-rwxr-xr-x 1 root root 122368  5 oct.  09:03 grubx64.efi

/boot/efi/grub:
total 36
drwxr-xr-x 2 root root  4096  5 oct.  10:00 fonts
-rwxr-xr-x 1 root root  1024  5 oct.  10:00 grubenv
drwxr-xr-x 2 root root  4096  5 oct.  10:00 locale
drwxr-xr-x 3 root root  4096  5 oct.  10:00 themes
drwxr-xr-x 2 root root 20480  5 oct.  10:00 x86_64-efi

/boot/efi/grub/fonts:
total 2352
-rwxr-xr-x 1 root root 2405293  5 oct.  10:00 unicode.pf2

/boot/efi/grub/locale:
total 3732
-rwxr-xr-x 1 root root  18327  5 oct.  10:00 ast.mo
-rwxr-xr-x 1 root root 130571  5 oct.  10:00 ca.mo
-rwxr-xr-x 1 root root  96104  5 oct.  10:00 da.mo
-rwxr-xr-x 1 root root 124745  5 oct.  10:00 de.mo
-rwxr-xr-x 1 root root 186874  5 oct.  10:00 de@hebrew.mo
-rwxr-xr-x 1 root root 124748  5 oct.  10:00 de_CH.mo
-rwxr-xr-x 1 root root 163425  5 oct.  10:00 en@arabic.mo
-rwxr-xr-x 1 root root 176973  5 oct.  10:00 en@hebrew.mo
-rwxr-xr-x 1 root root 136590  5 oct.  10:00 en@piglatin.mo
-rwxr-xr-x 1 root root 120616  5 oct.  10:00 en@quot.mo
-rwxr-xr-x 1 root root  44138  5 oct.  10:00 eo.mo
-rwxr-xr-x 1 root root 131077  5 oct.  10:00 es.mo
-rwxr-xr-x 1 root root 128358  5 oct.  10:00 fi.mo
-rwxr-xr-x 1 root root 134453  5 oct.  10:00 fr.mo
-rwxr-xr-x 1 root root 108616  5 oct.  10:00 gl.mo
-rwxr-xr-x 1 root root 131988  5 oct.  10:00 hu.mo
-rwxr-xr-x 1 root root  28583  5 oct.  10:00 id.mo
-rwxr-xr-x 1 root root 125211  5 oct.  10:00 it.mo
-rwxr-xr-x 1 root root  23262  5 oct.  10:00 ja.mo
-rwxr-xr-x 1 root root 102642  5 oct.  10:00 lt.mo
-rwxr-xr-x 1 root root 122626  5 oct.  10:00 nb.mo
-rwxr-xr-x 1 root root 124661  5 oct.  10:00 nl.mo
-rwxr-xr-x 1 root root  65182  5 oct.  10:00 pa.mo
-rwxr-xr-x 1 root root 127875  5 oct.  10:00 pl.mo
-rwxr-xr-x 1 root root  80705  5 oct.  10:00 pt_BR.mo
-rwxr-xr-x 1 root root 164342  5 oct.  10:00 ru.mo
-rwxr-xr-x 1 root root  98859  5 oct.  10:00 sl.mo
-rwxr-xr-x 1 root root 162234  5 oct.  10:00 sr.mo
-rwxr-xr-x 1 root root 123124  5 oct.  10:00 sv.mo
-rwxr-xr-x 1 root root  70695  5 oct.  10:00 tr.mo
-rwxr-xr-x 1 root root 170155  5 oct.  10:00 uk.mo
-rwxr-xr-x 1 root root 139466  5 oct.  10:00 vi.mo
-rwxr-xr-x 1 root root  30123  5 oct.  10:00 zh_CN.mo
-rwxr-xr-x 1 root root  30882  5 oct.  10:00 zh_TW.mo

/boot/efi/grub/themes:
total 4
drwxr-xr-x 2 root root 4096  5 oct.  10:00 starfield

/boot/efi/grub/themes/starfield:
total 2864
-rwxr-xr-x 1 root root   19890  5 oct.  10:00 COPYING.CC-BY-SA-3.0
-rwxr-xr-x 1 root root    1191  5 oct.  10:00 README
-rwxr-xr-x 1 root root     836  5 oct.  10:00 blob_w.png
-rwxr-xr-x 1 root root     178  5 oct.  10:00 boot_menu_c.png
-rwxr-xr-x 1 root root     193  5 oct.  10:00 boot_menu_e.png
-rwxr-xr-x 1 root root     103  5 oct.  10:00 boot_menu_n.png
-rwxr-xr-x 1 root root     193  5 oct.  10:00 boot_menu_ne.png
-rwxr-xr-x 1 root root     184  5 oct.  10:00 boot_menu_nw.png
-rwxr-xr-x 1 root root     102  5 oct.  10:00 boot_menu_s.png
-rwxr-xr-x 1 root root     198  5 oct.  10:00 boot_menu_se.png
-rwxr-xr-x 1 root root     196  5 oct.  10:00 boot_menu_sw.png
-rwxr-xr-x 1 root root      96  5 oct.  10:00 boot_menu_w.png
-rwxr-xr-x 1 root root  153143  5 oct.  10:00 dejavu_10.pf2
-rwxr-xr-x 1 root root  168565  5 oct.  10:00 dejavu_12.pf2
-rwxr-xr-x 1 root root  184623  5 oct.  10:00 dejavu_14.pf2
-rwxr-xr-x 1 root root  203763  5 oct.  10:00 dejavu_16.pf2
-rwxr-xr-x 1 root root  192047  5 oct.  10:00 dejavu_bold_14.pf2
-rwxr-xr-x 1 root root     197  5 oct.  10:00 slider_c.png
-rwxr-xr-x 1 root root     265  5 oct.  10:00 slider_n.png
-rwxr-xr-x 1 root root     269  5 oct.  10:00 slider_s.png
-rwxr-xr-x 1 root root 1897028  5 oct.  10:00 starfield.png
-rwxr-xr-x 1 root root     178  5 oct.  10:00 terminal_box_c.png
-rwxr-xr-x 1 root root      94  5 oct.  10:00 terminal_box_e.png
-rwxr-xr-x 1 root root     194  5 oct.  10:00 terminal_box_n.png
-rwxr-xr-x 1 root root     128  5 oct.  10:00 terminal_box_ne.png
-rwxr-xr-x 1 root root     210  5 oct.  10:00 terminal_box_nw.png
-rwxr-xr-x 1 root root     101  5 oct.  10:00 terminal_box_s.png
-rwxr-xr-x 1 root root     126  5 oct.  10:00 terminal_box_se.png
-rwxr-xr-x 1 root root     123  5 oct.  10:00 terminal_box_sw.png
-rwxr-xr-x 1 root root      97  5 oct.  10:00 terminal_box_w.png
-rwxr-xr-x 1 root root    2249  5 oct.  10:00 theme.txt

/boot/efi/grub/x86_64-efi:
total 3156
-rwxr-xr-x 1 root root  15336  5 oct.  10:00 acpi.mod
-rwxr-xr-x 1 root root   1928  5 oct.  10:00 adler32.mod
-rwxr-xr-x 1 root root   7960  5 oct.  10:00 affs.mod
-rwxr-xr-x 1 root root   8176  5 oct.  10:00 afs.mod
-rwxr-xr-x 1 root root  22744  5 oct.  10:00 ahci.mod
-rwxr-xr-x 1 root root   1024  5 oct.  10:00 all_video.mod
-rwxr-xr-x 1 root root   1488  5 oct.  10:00 aout.mod
-rwxr-xr-x 1 root root   5176  5 oct.  10:00 appleldr.mod
-rwxr-xr-x 1 root root   4496  5 oct.  10:00 archelp.mod
-rwxr-xr-x 1 root root   6944  5 oct.  10:00 at_keyboard.mod
-rwxr-xr-x 1 root root   8888  5 oct.  10:00 ata.mod
-rwxr-xr-x 1 root root   2504  5 oct.  10:00 backtrace.mod
-rwxr-xr-x 1 root root   9312  5 oct.  10:00 bfs.mod
-rwxr-xr-x 1 root root   3144  5 oct.  10:00 bitmap.mod
-rwxr-xr-x 1 root root   5368  5 oct.  10:00 bitmap_scale.mod
-rwxr-xr-x 1 root root   3152  5 oct.  10:00 blocklist.mod
-rwxr-xr-x 1 root root   3248  5 oct.  10:00 boot.mod
-rwxr-xr-x 1 root root   1992  5 oct.  10:00 boottime.mod
-rwxr-xr-x 1 root root  47784  5 oct.  10:00 bsd.mod
-rwxr-xr-x 1 root root   3344  5 oct.  10:00 bswap_test.mod
-rwxr-xr-x 1 root root  19464  5 oct.  10:00 btrfs.mod
-rwxr-xr-x 1 root root   2848  5 oct.  10:00 bufio.mod
-rwxr-xr-x 1 root root   2192  5 oct.  10:00 cacheinfo.mod
-rwxr-xr-x 1 root root   4360  5 oct.  10:00 cat.mod
-rwxr-xr-x 1 root root   5704  5 oct.  10:00 cbfs.mod
-rwxr-xr-x 1 root root   6184  5 oct.  10:00 cbls.mod
-rwxr-xr-x 1 root root   3832  5 oct.  10:00 cbmemc.mod
-rwxr-xr-x 1 root root   1432  5 oct.  10:00 cbtable.mod
-rwxr-xr-x 1 root root   4512  5 oct.  10:00 cbtime.mod
-rwxr-xr-x 1 root root   8600  5 oct.  10:00 chain.mod
-rwxr-xr-x 1 root root   4712  5 oct.  10:00 cmdline_cat_test.mod
-rwxr-xr-x 1 root root   2888  5 oct.  10:00 cmp.mod
-rwxr-xr-x 1 root root   6696  5 oct.  10:00 cmp_test.mod
-rwxr-xr-x 1 root root   3617  5 oct.  10:00 command.lst
-rwxr-xr-x 1 root root   3512  5 oct.  10:00 configfile.mod
-rwxr-xr-x 1 root root 122368  5 oct.  10:00 core.efi
-rwxr-xr-x 1 root root   4360  5 oct.  10:00 cpio.mod
-rwxr-xr-x 1 root root   4360  5 oct.  10:00 cpio_be.mod
-rwxr-xr-x 1 root root   2576  5 oct.  10:00 cpuid.mod
-rwxr-xr-x 1 root root   2160  5 oct.  10:00 crc64.mod
-rwxr-xr-x 1 root root    936  5 oct.  10:00 crypto.lst
-rwxr-xr-x 1 root root   6840  5 oct.  10:00 crypto.mod
-rwxr-xr-x 1 root root  15776  5 oct.  10:00 cryptodisk.mod
-rwxr-xr-x 1 root root   3864  5 oct.  10:00 cs5536.mod
-rwxr-xr-x 1 root root   2688  5 oct.  10:00 ctz_test.mod
-rwxr-xr-x 1 root root   3176  5 oct.  10:00 date.mod
-rwxr-xr-x 1 root root   3008  5 oct.  10:00 datehook.mod
-rwxr-xr-x 1 root root   1912  5 oct.  10:00 datetime.mod
-rwxr-xr-x 1 root root   3096  5 oct.  10:00 disk.mod
-rwxr-xr-x 1 root root  14608  5 oct.  10:00 diskfilter.mod
-rwxr-xr-x 1 root root   1384  5 oct.  10:00 div.mod
-rwxr-xr-x 1 root root   8280  5 oct.  10:00 div_test.mod
-rwxr-xr-x 1 root root   2744  5 oct.  10:00 dm_nv.mod
-rwxr-xr-x 1 root root   3040  5 oct.  10:00 echo.mod
-rwxr-xr-x 1 root root  13264  5 oct.  10:00 efi_gop.mod
-rwxr-xr-x 1 root root   7376  5 oct.  10:00 efi_uga.mod
-rwxr-xr-x 1 root root   2280  5 oct.  10:00 efifwsetup.mod
-rwxr-xr-x 1 root root   6912  5 oct.  10:00 efinet.mod
-rwxr-xr-x 1 root root  25848  5 oct.  10:00 ehci.mod
-rwxr-xr-x 1 root root   6264  5 oct.  10:00 elf.mod
-rwxr-xr-x 1 root root   2192  5 oct.  10:00 eval.mod
-rwxr-xr-x 1 root root   8024  5 oct.  10:00 exfat.mod
-rwxr-xr-x 1 root root   2280  5 oct.  10:00 exfctest.mod
-rwxr-xr-x 1 root root   8424  5 oct.  10:00 ext2.mod
-rwxr-xr-x 1 root root   6960  5 oct.  10:00 extcmd.mod
-rwxr-xr-x 1 root root   8176  5 oct.  10:00 fat.mod
-rwxr-xr-x 1 root root  24296  5 oct.  10:00 file.mod
-rwxr-xr-x 1 root root   3000  5 oct.  10:00 fixvideo.mod
-rwxr-xr-x 1 root root  17384  5 oct.  10:00 font.mod
-rwxr-xr-x 1 root root    214  5 oct.  10:00 fs.lst
-rwxr-xr-x 1 root root   4480  5 oct.  10:00 fshelp.mod
-rwxr-xr-x 1 root root  46760  5 oct.  10:00 functional_test.mod
-rwxr-xr-x 1 root root   2408  5 oct.  10:00 gcry_arcfour.mod
-rwxr-xr-x 1 root root   9264  5 oct.  10:00 gcry_blowfish.mod
-rwxr-xr-x 1 root root  28664  5 oct.  10:00 gcry_camellia.mod
-rwxr-xr-x 1 root root  14904  5 oct.  10:00 gcry_cast5.mod
-rwxr-xr-x 1 root root   3920  5 oct.  10:00 gcry_crc.mod
-rwxr-xr-x 1 root root  16936  5 oct.  10:00 gcry_des.mod
-rwxr-xr-x 1 root root   3424  5 oct.  10:00 gcry_dsa.mod
-rwxr-xr-x 1 root root   4088  5 oct.  10:00 gcry_idea.mod
-rwxr-xr-x 1 root root   4200  5 oct.  10:00 gcry_md4.mod
-rwxr-xr-x 1 root root   4624  5 oct.  10:00 gcry_md5.mod
-rwxr-xr-x 1 root root   3264  5 oct.  10:00 gcry_rfc2268.mod
-rwxr-xr-x 1 root root  20792  5 oct.  10:00 gcry_rijndael.mod
-rwxr-xr-x 1 root root   7952  5 oct.  10:00 gcry_rmd160.mod
-rwxr-xr-x 1 root root   3400  5 oct.  10:00 gcry_rsa.mod
-rwxr-xr-x 1 root root  15480  5 oct.  10:00 gcry_seed.mod
-rwxr-xr-x 1 root root  16736  5 oct.  10:00 gcry_serpent.mod
-rwxr-xr-x 1 root root   7872  5 oct.  10:00 gcry_sha1.mod
-rwxr-xr-x 1 root root   5464  5 oct.  10:00 gcry_sha256.mod
-rwxr-xr-x 1 root root   7080  5 oct.  10:00 gcry_sha512.mod
-rwxr-xr-x 1 root root  13600  5 oct.  10:00 gcry_tiger.mod
-rwxr-xr-x 1 root root  33760  5 oct.  10:00 gcry_twofish.mod
-rwxr-xr-x 1 root root  22848  5 oct.  10:00 gcry_whirlpool.mod
-rwxr-xr-x 1 root root   9272  5 oct.  10:00 geli.mod
-rwxr-xr-x 1 root root   8400  5 oct.  10:00 gettext.mod
-rwxr-xr-x 1 root root  59256  5 oct.  10:00 gfxmenu.mod
-rwxr-xr-x 1 root root  17576  5 oct.  10:00 gfxterm.mod
-rwxr-xr-x 1 root root   4504  5 oct.  10:00 gfxterm_background.mod
-rwxr-xr-x 1 root root   7808  5 oct.  10:00 gfxterm_menu.mod
-rwxr-xr-x 1 root root   5152  5 oct.  10:00 gptsync.mod
-rwxr-xr-x 1 root root 122368  5 oct.  10:00 grub.efi
-rwxr-xr-x 1 root root  11424  5 oct.  10:00 gzio.mod
-rwxr-xr-x 1 root root   6664  5 oct.  10:00 halt.mod
-rwxr-xr-x 1 root root   8576  5 oct.  10:00 hashsum.mod
-rwxr-xr-x 1 root root  11272  5 oct.  10:00 hdparm.mod
-rwxr-xr-x 1 root root   1856  5 oct.  10:00 hello.mod
-rwxr-xr-x 1 root root   3928  5 oct.  10:00 help.mod
-rwxr-xr-x 1 root root   4456  5 oct.  10:00 hexdump.mod
-rwxr-xr-x 1 root root   9968  5 oct.  10:00 hfs.mod
-rwxr-xr-x 1 root root  10664  5 oct.  10:00 hfsplus.mod
-rwxr-xr-x 1 root root   4304  5 oct.  10:00 hfspluscomp.mod
-rwxr-xr-x 1 root root   8776  5 oct.  10:00 http.mod
-rwxr-xr-x 1 root root   4504  5 oct.  10:00 iorw.mod
-rwxr-xr-x 1 root root  12112  5 oct.  10:00 iso9660.mod
-rwxr-xr-x 1 root root   8680  5 oct.  10:00 jfs.mod
-rwxr-xr-x 1 root root   8696  5 oct.  10:00 jpeg.mod
-rwxr-xr-x 1 root root   6376  5 oct.  10:00 keylayouts.mod
-rwxr-xr-x 1 root root   3048  5 oct.  10:00 keystatus.mod
-rwxr-xr-x 1 root root   8128  5 oct.  10:00 ldm.mod
-rwxr-xr-x 1 root root  15912  5 oct.  10:00 legacy_password_test.mod
-rwxr-xr-x 1 root root  44592  5 oct.  10:00 legacycfg.mod
-rwxr-xr-x 1 root root  19768  5 oct.  10:00 linux.mod
-rwxr-xr-x 1 root root  12456  5 oct.  10:00 linux16.mod
-rwxr-xr-x 1 root root   4632  5 oct.  10:00 loadbios.mod
-rwxr-xr-x 1 root root   9424  5 oct.  10:00 loadenv.mod
-rwxr-xr-x 1 root root   4728  5 oct.  10:00 loopback.mod
-rwxr-xr-x 1 root root   6656  5 oct.  10:00 ls.mod
-rwxr-xr-x 1 root root   7160  5 oct.  10:00 lsacpi.mod
-rwxr-xr-x 1 root root   5256  5 oct.  10:00 lsefi.mod
-rwxr-xr-x 1 root root   3640  5 oct.  10:00 lsefimmap.mod
-rwxr-xr-x 1 root root   4200  5 oct.  10:00 lsefisystab.mod
-rwxr-xr-x 1 root root   2928  5 oct.  10:00 lsmmap.mod
-rwxr-xr-x 1 root root   7192  5 oct.  10:00 lspci.mod
-rwxr-xr-x 1 root root   3808  5 oct.  10:00 lssal.mod
-rwxr-xr-x 1 root root   9704  5 oct.  10:00 luks.mod
-rwxr-xr-x 1 root root   9680  5 oct.  10:00 lvm.mod
-rwxr-xr-x 1 root root   7384  5 oct.  10:00 lzopio.mod
-rwxr-xr-x 1 root root   4896  5 oct.  10:00 macbless.mod
-rwxr-xr-x 1 root root  10704  5 oct.  10:00 macho.mod
-rwxr-xr-x 1 root root   2768  5 oct.  10:00 mdraid09.mod
-rwxr-xr-x 1 root root   2768  5 oct.  10:00 mdraid09_be.mod
-rwxr-xr-x 1 root root   2656  5 oct.  10:00 mdraid1x.mod
-rwxr-xr-x 1 root root   3160  5 oct.  10:00 memdisk.mod
-rwxr-xr-x 1 root root   4520  5 oct.  10:00 memrw.mod
-rwxr-xr-x 1 root root   5552  5 oct.  10:00 minicmd.mod
-rwxr-xr-x 1 root root   5464  5 oct.  10:00 minix.mod
-rwxr-xr-x 1 root root   5584  5 oct.  10:00 minix2.mod
-rwxr-xr-x 1 root root   5656  5 oct.  10:00 minix2_be.mod
-rwxr-xr-x 1 root root   5616  5 oct.  10:00 minix3.mod
-rwxr-xr-x 1 root root   5688  5 oct.  10:00 minix3_be.mod
-rwxr-xr-x 1 root root   5560  5 oct.  10:00 minix_be.mod
-rwxr-xr-x 1 root root   9384  5 oct.  10:00 mmap.mod
-rwxr-xr-x 1 root root   5036  5 oct.  10:00 moddep.lst
-rwxr-xr-x 1 root root   2390  5 oct.  10:00 modinfo.sh
-rwxr-xr-x 1 root root   3352  5 oct.  10:00 morse.mod
-rwxr-xr-x 1 root root  43320  5 oct.  10:00 mpi.mod
-rwxr-xr-x 1 root root   3712  5 oct.  10:00 msdospart.mod
-rwxr-xr-x 1 root root   2592  5 oct.  10:00 mul_test.mod
-rwxr-xr-x 1 root root  18248  5 oct.  10:00 multiboot.mod
-rwxr-xr-x 1 root root  19944  5 oct.  10:00 multiboot2.mod
-rwxr-xr-x 1 root root   6608  5 oct.  10:00 nativedisk.mod
-rwxr-xr-x 1 root root  74808  5 oct.  10:00 net.mod
-rwxr-xr-x 1 root root   4528  5 oct.  10:00 newc.mod
-rwxr-xr-x 1 root root   9656  5 oct.  10:00 nilfs2.mod
-rwxr-xr-x 1 root root 173264  5 oct.  10:00 normal.mod
-rwxr-xr-x 1 root root  15072  5 oct.  10:00 ntfs.mod
-rwxr-xr-x 1 root root   5800  5 oct.  10:00 ntfscomp.mod
-rwxr-xr-x 1 root root   4328  5 oct.  10:00 odc.mod
-rwxr-xr-x 1 root root   2208  5 oct.  10:00 offsetio.mod
-rwxr-xr-x 1 root root  15784  5 oct.  10:00 ohci.mod
-rwxr-xr-x 1 root root   2280  5 oct.  10:00 part_acorn.mod
-rwxr-xr-x 1 root root   2592  5 oct.  10:00 part_amiga.mod
-rwxr-xr-x 1 root root   3016  5 oct.  10:00 part_apple.mod
-rwxr-xr-x 1 root root   4184  5 oct.  10:00 part_bsd.mod
-rwxr-xr-x 1 root root   2640  5 oct.  10:00 part_dfly.mod
-rwxr-xr-x 1 root root   2168  5 oct.  10:00 part_dvh.mod
-rwxr-xr-x 1 root root   3224  5 oct.  10:00 part_gpt.mod
-rwxr-xr-x 1 root root   2984  5 oct.  10:00 part_msdos.mod
-rwxr-xr-x 1 root root   2488  5 oct.  10:00 part_plan.mod
-rwxr-xr-x 1 root root   2232  5 oct.  10:00 part_sun.mod
-rwxr-xr-x 1 root root   2488  5 oct.  10:00 part_sunpc.mod
-rwxr-xr-x 1 root root    111  5 oct.  10:00 partmap.lst
-rwxr-xr-x 1 root root     17  5 oct.  10:00 parttool.lst
-rwxr-xr-x 1 root root   7264  5 oct.  10:00 parttool.mod
-rwxr-xr-x 1 root root   2936  5 oct.  10:00 password.mod
-rwxr-xr-x 1 root root   4440  5 oct.  10:00 password_pbkdf2.mod
-rwxr-xr-x 1 root root   7320  5 oct.  10:00 pata.mod
-rwxr-xr-x 1 root root   2024  5 oct.  10:00 pbkdf2.mod
-rwxr-xr-x 1 root root   3464  5 oct.  10:00 pbkdf2_test.mod
-rwxr-xr-x 1 root root   3520  5 oct.  10:00 pcidump.mod
-rwxr-xr-x 1 root root   4048  5 oct.  10:00 play.mod
-rwxr-xr-x 1 root root  10152  5 oct.  10:00 png.mod
-rwxr-xr-x 1 root root   2208  5 oct.  10:00 priority_queue.mod
-rwxr-xr-x 1 root root   4336  5 oct.  10:00 probe.mod
-rwxr-xr-x 1 root root   3808  5 oct.  10:00 procfs.mod
-rwxr-xr-x 1 root root   3088  5 oct.  10:00 progress.mod
-rwxr-xr-x 1 root root   1976  5 oct.  10:00 raid5rec.mod
-rwxr-xr-x 1 root root   3328  5 oct.  10:00 raid6rec.mod
-rwxr-xr-x 1 root root   3624  5 oct.  10:00 random.mod
-rwxr-xr-x 1 root root   2264  5 oct.  10:00 read.mod
-rwxr-xr-x 1 root root   1848  5 oct.  10:00 reboot.mod
-rwxr-xr-x 1 root root  76472  5 oct.  10:00 regexp.mod
-rwxr-xr-x 1 root root  13976  5 oct.  10:00 reiserfs.mod
-rwxr-xr-x 1 root root  25464  5 oct.  10:00 relocator.mod
-rwxr-xr-x 1 root root   5632  5 oct.  10:00 romfs.mod
-rwxr-xr-x 1 root root   7096  5 oct.  10:00 scsi.mod
-rwxr-xr-x 1 root root   5432  5 oct.  10:00 search.mod
-rwxr-xr-x 1 root root   4888  5 oct.  10:00 search_fs_file.mod
-rwxr-xr-x 1 root root   4824  5 oct.  10:00 search_fs_uuid.mod
-rwxr-xr-x 1 root root   4776  5 oct.  10:00 search_label.mod
-rwxr-xr-x 1 root root  14608  5 oct.  10:00 serial.mod
-rwxr-xr-x 1 root root   1032  5 oct.  10:00 setjmp.mod
-rwxr-xr-x 1 root root   2616  5 oct.  10:00 setjmp_test.mod
-rwxr-xr-x 1 root root   8328  5 oct.  10:00 setpci.mod
-rwxr-xr-x 1 root root   7552  5 oct.  10:00 sfs.mod
-rwxr-xr-x 1 root root   3104  5 oct.  10:00 shift_test.mod
-rwxr-xr-x 1 root root   8736  5 oct.  10:00 signature_test.mod
-rwxr-xr-x 1 root root   3264  5 oct.  10:00 sleep.mod
-rwxr-xr-x 1 root root   3424  5 oct.  10:00 sleep_test.mod
-rwxr-xr-x 1 root root   3192  5 oct.  10:00 spkmodem.mod
-rwxr-xr-x 1 root root   9568  5 oct.  10:00 squash4.mod
-rwxr-xr-x 1 root root  29720  5 oct.  10:00 syslinuxcfg.mod
-rwxr-xr-x 1 root root   4896  5 oct.  10:00 tar.mod
-rwxr-xr-x 1 root root    162  5 oct.  10:00 terminal.lst
-rwxr-xr-x 1 root root   6528  5 oct.  10:00 terminal.mod
-rwxr-xr-x 1 root root  18904  5 oct.  10:00 terminfo.mod
-rwxr-xr-x 1 root root   7632  5 oct.  10:00 test.mod
-rwxr-xr-x 1 root root   2048  5 oct.  10:00 test_blockarg.mod
-rwxr-xr-x 1 root root   3800  5 oct.  10:00 testload.mod
-rwxr-xr-x 1 root root   3432  5 oct.  10:00 testspeed.mod
-rwxr-xr-x 1 root root   8336  5 oct.  10:00 tftp.mod
-rwxr-xr-x 1 root root   6376  5 oct.  10:00 tga.mod
-rwxr-xr-x 1 root root   2344  5 oct.  10:00 time.mod
-rwxr-xr-x 1 root root   3640  5 oct.  10:00 tr.mod
-rwxr-xr-x 1 root root   2080  5 oct.  10:00 trig.mod
-rwxr-xr-x 1 root root   1864  5 oct.  10:00 true.mod
-rwxr-xr-x 1 root root  11248  5 oct.  10:00 udf.mod
-rwxr-xr-x 1 root root   7640  5 oct.  10:00 ufs1.mod
-rwxr-xr-x 1 root root   7800  5 oct.  10:00 ufs1_be.mod
-rwxr-xr-x 1 root root   7640  5 oct.  10:00 ufs2.mod
-rwxr-xr-x 1 root root  10032  5 oct.  10:00 uhci.mod
-rwxr-xr-x 1 root root  17856  5 oct.  10:00 usb.mod
-rwxr-xr-x 1 root root   5928  5 oct.  10:00 usb_keyboard.mod
-rwxr-xr-x 1 root root  11288  5 oct.  10:00 usbms.mod
-rwxr-xr-x 1 root root   2888  5 oct.  10:00 usbserial_common.mod
-rwxr-xr-x 1 root root   3424  5 oct.  10:00 usbserial_ftdi.mod
-rwxr-xr-x 1 root root   3784  5 oct.  10:00 usbserial_pl2303.mod
-rwxr-xr-x 1 root root   2336  5 oct.  10:00 usbserial_usbdebug.mod
-rwxr-xr-x 1 root root   5576  5 oct.  10:00 usbtest.mod
-rwxr-xr-x 1 root root  20080  5 oct.  10:00 verify.mod
-rwxr-xr-x 1 root root     41  5 oct.  10:00 video.lst
-rwxr-xr-x 1 root root   8928  5 oct.  10:00 video.mod
-rwxr-xr-x 1 root root   9016  5 oct.  10:00 video_bochs.mod
-rwxr-xr-x 1 root root   9592  5 oct.  10:00 video_cirrus.mod
-rwxr-xr-x 1 root root  10016  5 oct.  10:00 video_colors.mod
-rwxr-xr-x 1 root root  29792  5 oct.  10:00 video_fb.mod
-rwxr-xr-x 1 root root   5312  5 oct.  10:00 videoinfo.mod
-rwxr-xr-x 1 root root   5456  5 oct.  10:00 videotest.mod
-rwxr-xr-x 1 root root   3808  5 oct.  10:00 videotest_checksum.mod
-rwxr-xr-x 1 root root  10416  5 oct.  10:00 xfs.mod
-rwxr-xr-x 1 root root  41480  5 oct.  10:00 xnu.mod
-rwxr-xr-x 1 root root   3256  5 oct.  10:00 xnu_uuid.mod
-rwxr-xr-x 1 root root   3296  5 oct.  10:00 xnu_uuid_test.mod
-rwxr-xr-x 1 root root  20176  5 oct.  10:00 xzio.mod
-rwxr-xr-x 1 root root  57520  5 oct.  10:00 zfs.mod
-rwxr-xr-x 1 root root   8584  5 oct.  10:00 zfscrypt.mod
-rwxr-xr-x 1 root root  10648  5 oct.  10:00 zfsinfo.mod

/boot/esp:
total 4
drwxr-xr-x 2 root root 4096  5 oct.  09:59 grub

/boot/esp/grub:
total 0

/boot/grub:
total 36
drwxr-xr-x 2 root root  4096  4 oct.  20:09 fonts
-rw------- 1 root root  2687  5 oct.  09:04 grub.cfg
-rw------- 1 root root  2687  4 oct.  20:08 grub.cfg.example
-rw-r--r-- 1 root root  1024  4 oct.  20:09 grubenv
drwxr-xr-x 2 root root  4096  5 oct.  09:03 locale
drwxr-xr-x 3 root root  4096  4 oct.  20:09 themes
drwxr-xr-x 2 root root 12288  5 oct.  09:03 x86_64-efi

/boot/grub/fonts:
total 2352
-rw-r--r-- 1 root root 2405293  5 oct.  09:03 unicode.pf2

/boot/grub/locale:
total 3732
-rw-r--r-- 1 root root  18327  5 oct.  09:03 ast.mo
-rw-r--r-- 1 root root 130571  5 oct.  09:03 ca.mo
-rw-r--r-- 1 root root  96104  5 oct.  09:03 da.mo
-rw-r--r-- 1 root root 124745  5 oct.  09:03 de.mo
-rw-r--r-- 1 root root 186874  5 oct.  09:03 de@hebrew.mo
-rw-r--r-- 1 root root 124748  5 oct.  09:03 de_CH.mo
-rw-r--r-- 1 root root 163425  5 oct.  09:03 en@arabic.mo
-rw-r--r-- 1 root root 176973  5 oct.  09:03 en@hebrew.mo
-rw-r--r-- 1 root root 136590  5 oct.  09:03 en@piglatin.mo
-rw-r--r-- 1 root root 120616  5 oct.  09:03 en@quot.mo
-rw-r--r-- 1 root root  44138  5 oct.  09:03 eo.mo
-rw-r--r-- 1 root root 131077  5 oct.  09:03 es.mo
-rw-r--r-- 1 root root 128358  5 oct.  09:03 fi.mo
-rw-r--r-- 1 root root 134453  5 oct.  09:03 fr.mo
-rw-r--r-- 1 root root 108616  5 oct.  09:03 gl.mo
-rw-r--r-- 1 root root 131988  5 oct.  09:03 hu.mo
-rw-r--r-- 1 root root  28583  5 oct.  09:03 id.mo
-rw-r--r-- 1 root root 125211  5 oct.  09:03 it.mo
-rw-r--r-- 1 root root  23262  5 oct.  09:03 ja.mo
-rw-r--r-- 1 root root 102642  5 oct.  09:03 lt.mo
-rw-r--r-- 1 root root 122626  5 oct.  09:03 nb.mo
-rw-r--r-- 1 root root 124661  5 oct.  09:03 nl.mo
-rw-r--r-- 1 root root  65182  5 oct.  09:03 pa.mo
-rw-r--r-- 1 root root 127875  5 oct.  09:03 pl.mo
-rw-r--r-- 1 root root  80705  5 oct.  09:03 pt_BR.mo
-rw-r--r-- 1 root root 164342  5 oct.  09:03 ru.mo
-rw-r--r-- 1 root root  98859  5 oct.  09:03 sl.mo
-rw-r--r-- 1 root root 162234  5 oct.  09:03 sr.mo
-rw-r--r-- 1 root root 123124  5 oct.  09:03 sv.mo
-rw-r--r-- 1 root root  70695  5 oct.  09:03 tr.mo
-rw-r--r-- 1 root root 170155  5 oct.  09:03 uk.mo
-rw-r--r-- 1 root root 139466  5 oct.  09:03 vi.mo
-rw-r--r-- 1 root root  30123  5 oct.  09:03 zh_CN.mo
-rw-r--r-- 1 root root  30882  5 oct.  09:03 zh_TW.mo

/boot/grub/themes:
total 4
drwxr-xr-x 2 root root 4096  4 oct.  20:09 starfield

/boot/grub/themes/starfield:
total 2864
-rw-r--r-- 1 root root   19890  5 oct.  09:03 COPYING.CC-BY-SA-3.0
-rw-r--r-- 1 root root    1191  5 oct.  09:03 README
-rw-r--r-- 1 root root     836  5 oct.  09:03 blob_w.png
-rw-r--r-- 1 root root     178  5 oct.  09:03 boot_menu_c.png
-rw-r--r-- 1 root root     193  5 oct.  09:03 boot_menu_e.png
-rw-r--r-- 1 root root     103  5 oct.  09:03 boot_menu_n.png
-rw-r--r-- 1 root root     193  5 oct.  09:03 boot_menu_ne.png
-rw-r--r-- 1 root root     184  5 oct.  09:03 boot_menu_nw.png
-rw-r--r-- 1 root root     102  5 oct.  09:03 boot_menu_s.png
-rw-r--r-- 1 root root     198  5 oct.  09:03 boot_menu_se.png
-rw-r--r-- 1 root root     196  5 oct.  09:03 boot_menu_sw.png
-rw-r--r-- 1 root root      96  5 oct.  09:03 boot_menu_w.png
-rw-r--r-- 1 root root  153143  5 oct.  09:03 dejavu_10.pf2
-rw-r--r-- 1 root root  168565  5 oct.  09:03 dejavu_12.pf2
-rw-r--r-- 1 root root  184623  5 oct.  09:03 dejavu_14.pf2
-rw-r--r-- 1 root root  203763  5 oct.  09:03 dejavu_16.pf2
-rw-r--r-- 1 root root  192047  5 oct.  09:03 dejavu_bold_14.pf2
-rw-r--r-- 1 root root     197  5 oct.  09:03 slider_c.png
-rw-r--r-- 1 root root     265  5 oct.  09:03 slider_n.png
-rw-r--r-- 1 root root     269  5 oct.  09:03 slider_s.png
-rw-r--r-- 1 root root 1897028  5 oct.  09:03 starfield.png
-rw-r--r-- 1 root root     178  5 oct.  09:03 terminal_box_c.png
-rw-r--r-- 1 root root      94  5 oct.  09:03 terminal_box_e.png
-rw-r--r-- 1 root root     194  5 oct.  09:03 terminal_box_n.png
-rw-r--r-- 1 root root     128  5 oct.  09:03 terminal_box_ne.png
-rw-r--r-- 1 root root     210  5 oct.  09:03 terminal_box_nw.png
-rw-r--r-- 1 root root     101  5 oct.  09:03 terminal_box_s.png
-rw-r--r-- 1 root root     126  5 oct.  09:03 terminal_box_se.png
-rw-r--r-- 1 root root     123  5 oct.  09:03 terminal_box_sw.png
-rw-r--r-- 1 root root      97  5 oct.  09:03 terminal_box_w.png
-rw-r--r-- 1 root root    2249  5 oct.  09:03 theme.txt

/boot/grub/x86_64-efi:
total 3156
-rw-r--r-- 1 root root  15336  5 oct.  09:03 acpi.mod
-rw-r--r-- 1 root root   1928  5 oct.  09:03 adler32.mod
-rw-r--r-- 1 root root   7960  5 oct.  09:03 affs.mod
-rw-r--r-- 1 root root   8176  5 oct.  09:03 afs.mod
-rw-r--r-- 1 root root  22744  5 oct.  09:03 ahci.mod
-rw-r--r-- 1 root root   1024  5 oct.  09:03 all_video.mod
-rw-r--r-- 1 root root   1488  5 oct.  09:03 aout.mod
-rw-r--r-- 1 root root   5176  5 oct.  09:03 appleldr.mod
-rw-r--r-- 1 root root   4496  5 oct.  09:03 archelp.mod
-rw-r--r-- 1 root root   6944  5 oct.  09:03 at_keyboard.mod
-rw-r--r-- 1 root root   8888  5 oct.  09:03 ata.mod
-rw-r--r-- 1 root root   2504  5 oct.  09:03 backtrace.mod
-rw-r--r-- 1 root root   9312  5 oct.  09:03 bfs.mod
-rw-r--r-- 1 root root   3144  5 oct.  09:03 bitmap.mod
-rw-r--r-- 1 root root   5368  5 oct.  09:03 bitmap_scale.mod
-rw-r--r-- 1 root root   3152  5 oct.  09:03 blocklist.mod
-rw-r--r-- 1 root root   3248  5 oct.  09:03 boot.mod
-rw-r--r-- 1 root root   1992  5 oct.  09:03 boottime.mod
-rw-r--r-- 1 root root  47784  5 oct.  09:03 bsd.mod
-rw-r--r-- 1 root root   3344  5 oct.  09:03 bswap_test.mod
-rw-r--r-- 1 root root  19464  5 oct.  09:03 btrfs.mod
-rw-r--r-- 1 root root   2848  5 oct.  09:03 bufio.mod
-rw-r--r-- 1 root root   2192  5 oct.  09:03 cacheinfo.mod
-rw-r--r-- 1 root root   4360  5 oct.  09:03 cat.mod
-rw-r--r-- 1 root root   5704  5 oct.  09:03 cbfs.mod
-rw-r--r-- 1 root root   6184  5 oct.  09:03 cbls.mod
-rw-r--r-- 1 root root   3832  5 oct.  09:03 cbmemc.mod
-rw-r--r-- 1 root root   1432  5 oct.  09:03 cbtable.mod
-rw-r--r-- 1 root root   4512  5 oct.  09:03 cbtime.mod
-rw-r--r-- 1 root root   8600  5 oct.  09:03 chain.mod
-rw-r--r-- 1 root root   4712  5 oct.  09:03 cmdline_cat_test.mod
-rw-r--r-- 1 root root   2888  5 oct.  09:03 cmp.mod
-rw-r--r-- 1 root root   6696  5 oct.  09:03 cmp_test.mod
-rw-r--r-- 1 root root   3617  5 oct.  09:03 command.lst
-rw-r--r-- 1 root root   3512  5 oct.  09:03 configfile.mod
-rw-r--r-- 1 root root 122368  5 oct.  09:03 core.efi
-rw-r--r-- 1 root root   4360  5 oct.  09:03 cpio.mod
-rw-r--r-- 1 root root   4360  5 oct.  09:03 cpio_be.mod
-rw-r--r-- 1 root root   2576  5 oct.  09:03 cpuid.mod
-rw-r--r-- 1 root root   2160  5 oct.  09:03 crc64.mod
-rw-r--r-- 1 root root    936  5 oct.  09:03 crypto.lst
-rw-r--r-- 1 root root   6840  5 oct.  09:03 crypto.mod
-rw-r--r-- 1 root root  15776  5 oct.  09:03 cryptodisk.mod
-rw-r--r-- 1 root root   3864  5 oct.  09:03 cs5536.mod
-rw-r--r-- 1 root root   2688  5 oct.  09:03 ctz_test.mod
-rw-r--r-- 1 root root   3176  5 oct.  09:03 date.mod
-rw-r--r-- 1 root root   3008  5 oct.  09:03 datehook.mod
-rw-r--r-- 1 root root   1912  5 oct.  09:03 datetime.mod
-rw-r--r-- 1 root root   3096  5 oct.  09:03 disk.mod
-rw-r--r-- 1 root root  14608  5 oct.  09:03 diskfilter.mod
-rw-r--r-- 1 root root   1384  5 oct.  09:03 div.mod
-rw-r--r-- 1 root root   8280  5 oct.  09:03 div_test.mod
-rw-r--r-- 1 root root   2744  5 oct.  09:03 dm_nv.mod
-rw-r--r-- 1 root root   3040  5 oct.  09:03 echo.mod
-rw-r--r-- 1 root root  13264  5 oct.  09:03 efi_gop.mod
-rw-r--r-- 1 root root   7376  5 oct.  09:03 efi_uga.mod
-rw-r--r-- 1 root root   2280  5 oct.  09:03 efifwsetup.mod
-rw-r--r-- 1 root root   6912  5 oct.  09:03 efinet.mod
-rw-r--r-- 1 root root  25848  5 oct.  09:03 ehci.mod
-rw-r--r-- 1 root root   6264  5 oct.  09:03 elf.mod
-rw-r--r-- 1 root root   2192  5 oct.  09:03 eval.mod
-rw-r--r-- 1 root root   8024  5 oct.  09:03 exfat.mod
-rw-r--r-- 1 root root   2280  5 oct.  09:03 exfctest.mod
-rw-r--r-- 1 root root   8424  5 oct.  09:03 ext2.mod
-rw-r--r-- 1 root root   6960  5 oct.  09:03 extcmd.mod
-rw-r--r-- 1 root root   8176  5 oct.  09:03 fat.mod
-rw-r--r-- 1 root root  24296  5 oct.  09:03 file.mod
-rw-r--r-- 1 root root   3000  5 oct.  09:03 fixvideo.mod
-rw-r--r-- 1 root root  17384  5 oct.  09:03 font.mod
-rw-r--r-- 1 root root    214  5 oct.  09:03 fs.lst
-rw-r--r-- 1 root root   4480  5 oct.  09:03 fshelp.mod
-rw-r--r-- 1 root root  46760  5 oct.  09:03 functional_test.mod
-rw-r--r-- 1 root root   2408  5 oct.  09:03 gcry_arcfour.mod
-rw-r--r-- 1 root root   9264  5 oct.  09:03 gcry_blowfish.mod
-rw-r--r-- 1 root root  28664  5 oct.  09:03 gcry_camellia.mod
-rw-r--r-- 1 root root  14904  5 oct.  09:03 gcry_cast5.mod
-rw-r--r-- 1 root root   3920  5 oct.  09:03 gcry_crc.mod
-rw-r--r-- 1 root root  16936  5 oct.  09:03 gcry_des.mod
-rw-r--r-- 1 root root   3424  5 oct.  09:03 gcry_dsa.mod
-rw-r--r-- 1 root root   4088  5 oct.  09:03 gcry_idea.mod
-rw-r--r-- 1 root root   4200  5 oct.  09:03 gcry_md4.mod
-rw-r--r-- 1 root root   4624  5 oct.  09:03 gcry_md5.mod
-rw-r--r-- 1 root root   3264  5 oct.  09:03 gcry_rfc2268.mod
-rw-r--r-- 1 root root  20792  5 oct.  09:03 gcry_rijndael.mod
-rw-r--r-- 1 root root   7952  5 oct.  09:03 gcry_rmd160.mod
-rw-r--r-- 1 root root   3400  5 oct.  09:03 gcry_rsa.mod
-rw-r--r-- 1 root root  15480  5 oct.  09:03 gcry_seed.mod
-rw-r--r-- 1 root root  16736  5 oct.  09:03 gcry_serpent.mod
-rw-r--r-- 1 root root   7872  5 oct.  09:03 gcry_sha1.mod
-rw-r--r-- 1 root root   5464  5 oct.  09:03 gcry_sha256.mod
-rw-r--r-- 1 root root   7080  5 oct.  09:03 gcry_sha512.mod
-rw-r--r-- 1 root root  13600  5 oct.  09:03 gcry_tiger.mod
-rw-r--r-- 1 root root  33760  5 oct.  09:03 gcry_twofish.mod
-rw-r--r-- 1 root root  22848  5 oct.  09:03 gcry_whirlpool.mod
-rw-r--r-- 1 root root   9272  5 oct.  09:03 geli.mod
-rw-r--r-- 1 root root   8400  5 oct.  09:03 gettext.mod
-rw-r--r-- 1 root root  59256  5 oct.  09:03 gfxmenu.mod
-rw-r--r-- 1 root root  17576  5 oct.  09:03 gfxterm.mod
-rw-r--r-- 1 root root   4504  5 oct.  09:03 gfxterm_background.mod
-rw-r--r-- 1 root root   7808  5 oct.  09:03 gfxterm_menu.mod
-rw-r--r-- 1 root root   5152  5 oct.  09:03 gptsync.mod
-rw-r--r-- 1 root root 122368  5 oct.  09:03 grub.efi
-rw-r--r-- 1 root root  11424  5 oct.  09:03 gzio.mod
-rw-r--r-- 1 root root   6664  5 oct.  09:03 halt.mod
-rw-r--r-- 1 root root   8576  5 oct.  09:03 hashsum.mod
-rw-r--r-- 1 root root  11272  5 oct.  09:03 hdparm.mod
-rw-r--r-- 1 root root   1856  5 oct.  09:03 hello.mod
-rw-r--r-- 1 root root   3928  5 oct.  09:03 help.mod
-rw-r--r-- 1 root root   4456  5 oct.  09:03 hexdump.mod
-rw-r--r-- 1 root root   9968  5 oct.  09:03 hfs.mod
-rw-r--r-- 1 root root  10664  5 oct.  09:03 hfsplus.mod
-rw-r--r-- 1 root root   4304  5 oct.  09:03 hfspluscomp.mod
-rw-r--r-- 1 root root   8776  5 oct.  09:03 http.mod
-rw-r--r-- 1 root root   4504  5 oct.  09:03 iorw.mod
-rw-r--r-- 1 root root  12112  5 oct.  09:03 iso9660.mod
-rw-r--r-- 1 root root   8680  5 oct.  09:03 jfs.mod
-rw-r--r-- 1 root root   8696  5 oct.  09:03 jpeg.mod
-rw-r--r-- 1 root root   6376  5 oct.  09:03 keylayouts.mod
-rw-r--r-- 1 root root   3048  5 oct.  09:03 keystatus.mod
-rw-r--r-- 1 root root   8128  5 oct.  09:03 ldm.mod
-rw-r--r-- 1 root root  15912  5 oct.  09:03 legacy_password_test.mod
-rw-r--r-- 1 root root  44592  5 oct.  09:03 legacycfg.mod
-rw-r--r-- 1 root root  19768  5 oct.  09:03 linux.mod
-rw-r--r-- 1 root root  12456  5 oct.  09:03 linux16.mod
-rw-r--r-- 1 root root   4632  5 oct.  09:03 loadbios.mod
-rw-r--r-- 1 root root   9424  5 oct.  09:03 loadenv.mod
-rw-r--r-- 1 root root   4728  5 oct.  09:03 loopback.mod
-rw-r--r-- 1 root root   6656  5 oct.  09:03 ls.mod
-rw-r--r-- 1 root root   7160  5 oct.  09:03 lsacpi.mod
-rw-r--r-- 1 root root   5256  5 oct.  09:03 lsefi.mod
-rw-r--r-- 1 root root   3640  5 oct.  09:03 lsefimmap.mod
-rw-r--r-- 1 root root   4200  5 oct.  09:03 lsefisystab.mod
-rw-r--r-- 1 root root   2928  5 oct.  09:03 lsmmap.mod
-rw-r--r-- 1 root root   7192  5 oct.  09:03 lspci.mod
-rw-r--r-- 1 root root   3808  5 oct.  09:03 lssal.mod
-rw-r--r-- 1 root root   9704  5 oct.  09:03 luks.mod
-rw-r--r-- 1 root root   9680  5 oct.  09:03 lvm.mod
-rw-r--r-- 1 root root   7384  5 oct.  09:03 lzopio.mod
-rw-r--r-- 1 root root   4896  5 oct.  09:03 macbless.mod
-rw-r--r-- 1 root root  10704  5 oct.  09:03 macho.mod
-rw-r--r-- 1 root root   2768  5 oct.  09:03 mdraid09.mod
-rw-r--r-- 1 root root   2768  5 oct.  09:03 mdraid09_be.mod
-rw-r--r-- 1 root root   2656  5 oct.  09:03 mdraid1x.mod
-rw-r--r-- 1 root root   3160  5 oct.  09:03 memdisk.mod
-rw-r--r-- 1 root root   4520  5 oct.  09:03 memrw.mod
-rw-r--r-- 1 root root   5552  5 oct.  09:03 minicmd.mod
-rw-r--r-- 1 root root   5464  5 oct.  09:03 minix.mod
-rw-r--r-- 1 root root   5584  5 oct.  09:03 minix2.mod
-rw-r--r-- 1 root root   5656  5 oct.  09:03 minix2_be.mod
-rw-r--r-- 1 root root   5616  5 oct.  09:03 minix3.mod
-rw-r--r-- 1 root root   5688  5 oct.  09:03 minix3_be.mod
-rw-r--r-- 1 root root   5560  5 oct.  09:03 minix_be.mod
-rw-r--r-- 1 root root   9384  5 oct.  09:03 mmap.mod
-rw-r--r-- 1 root root   5036  5 oct.  09:03 moddep.lst
-rw-r--r-- 1 root root   2390  5 oct.  09:03 modinfo.sh
-rw-r--r-- 1 root root   3352  5 oct.  09:03 morse.mod
-rw-r--r-- 1 root root  43320  5 oct.  09:03 mpi.mod
-rw-r--r-- 1 root root   3712  5 oct.  09:03 msdospart.mod
-rw-r--r-- 1 root root   2592  5 oct.  09:03 mul_test.mod
-rw-r--r-- 1 root root  18248  5 oct.  09:03 multiboot.mod
-rw-r--r-- 1 root root  19944  5 oct.  09:03 multiboot2.mod
-rw-r--r-- 1 root root   6608  5 oct.  09:03 nativedisk.mod
-rw-r--r-- 1 root root  74808  5 oct.  09:03 net.mod
-rw-r--r-- 1 root root   4528  5 oct.  09:03 newc.mod
-rw-r--r-- 1 root root   9656  5 oct.  09:03 nilfs2.mod
-rw-r--r-- 1 root root 173264  5 oct.  09:03 normal.mod
-rw-r--r-- 1 root root  15072  5 oct.  09:03 ntfs.mod
-rw-r--r-- 1 root root   5800  5 oct.  09:03 ntfscomp.mod
-rw-r--r-- 1 root root   4328  5 oct.  09:03 odc.mod
-rw-r--r-- 1 root root   2208  5 oct.  09:03 offsetio.mod
-rw-r--r-- 1 root root  15784  5 oct.  09:03 ohci.mod
-rw-r--r-- 1 root root   2280  5 oct.  09:03 part_acorn.mod
-rw-r--r-- 1 root root   2592  5 oct.  09:03 part_amiga.mod
-rw-r--r-- 1 root root   3016  5 oct.  09:03 part_apple.mod
-rw-r--r-- 1 root root   4184  5 oct.  09:03 part_bsd.mod
-rw-r--r-- 1 root root   2640  5 oct.  09:03 part_dfly.mod
-rw-r--r-- 1 root root   2168  5 oct.  09:03 part_dvh.mod
-rw-r--r-- 1 root root   3224  5 oct.  09:03 part_gpt.mod
-rw-r--r-- 1 root root   2984  5 oct.  09:03 part_msdos.mod
-rw-r--r-- 1 root root   2488  5 oct.  09:03 part_plan.mod
-rw-r--r-- 1 root root   2232  5 oct.  09:03 part_sun.mod
-rw-r--r-- 1 root root   2488  5 oct.  09:03 part_sunpc.mod
-rw-r--r-- 1 root root    111  5 oct.  09:03 partmap.lst
-rw-r--r-- 1 root root     17  5 oct.  09:03 parttool.lst
-rw-r--r-- 1 root root   7264  5 oct.  09:03 parttool.mod
-rw-r--r-- 1 root root   2936  5 oct.  09:03 password.mod
-rw-r--r-- 1 root root   4440  5 oct.  09:03 password_pbkdf2.mod
-rw-r--r-- 1 root root   7320  5 oct.  09:03 pata.mod
-rw-r--r-- 1 root root   2024  5 oct.  09:03 pbkdf2.mod
-rw-r--r-- 1 root root   3464  5 oct.  09:03 pbkdf2_test.mod
-rw-r--r-- 1 root root   3520  5 oct.  09:03 pcidump.mod
-rw-r--r-- 1 root root   4048  5 oct.  09:03 play.mod
-rw-r--r-- 1 root root  10152  5 oct.  09:03 png.mod
-rw-r--r-- 1 root root   2208  5 oct.  09:03 priority_queue.mod
-rw-r--r-- 1 root root   4336  5 oct.  09:03 probe.mod
-rw-r--r-- 1 root root   3808  5 oct.  09:03 procfs.mod
-rw-r--r-- 1 root root   3088  5 oct.  09:03 progress.mod
-rw-r--r-- 1 root root   1976  5 oct.  09:03 raid5rec.mod
-rw-r--r-- 1 root root   3328  5 oct.  09:03 raid6rec.mod
-rw-r--r-- 1 root root   3624  5 oct.  09:03 random.mod
-rw-r--r-- 1 root root   2264  5 oct.  09:03 read.mod
-rw-r--r-- 1 root root   1848  5 oct.  09:03 reboot.mod
-rw-r--r-- 1 root root  76472  5 oct.  09:03 regexp.mod
-rw-r--r-- 1 root root  13976  5 oct.  09:03 reiserfs.mod
-rw-r--r-- 1 root root  25464  5 oct.  09:03 relocator.mod
-rw-r--r-- 1 root root   5632  5 oct.  09:03 romfs.mod
-rw-r--r-- 1 root root   7096  5 oct.  09:03 scsi.mod
-rw-r--r-- 1 root root   5432  5 oct.  09:03 search.mod
-rw-r--r-- 1 root root   4888  5 oct.  09:03 search_fs_file.mod
-rw-r--r-- 1 root root   4824  5 oct.  09:03 search_fs_uuid.mod
-rw-r--r-- 1 root root   4776  5 oct.  09:03 search_label.mod
-rw-r--r-- 1 root root  14608  5 oct.  09:03 serial.mod
-rw-r--r-- 1 root root   1032  5 oct.  09:03 setjmp.mod
-rw-r--r-- 1 root root   2616  5 oct.  09:03 setjmp_test.mod
-rw-r--r-- 1 root root   8328  5 oct.  09:03 setpci.mod
-rw-r--r-- 1 root root   7552  5 oct.  09:03 sfs.mod
-rw-r--r-- 1 root root   3104  5 oct.  09:03 shift_test.mod
-rw-r--r-- 1 root root   8736  5 oct.  09:03 signature_test.mod
-rw-r--r-- 1 root root   3264  5 oct.  09:03 sleep.mod
-rw-r--r-- 1 root root   3424  5 oct.  09:03 sleep_test.mod
-rw-r--r-- 1 root root   3192  5 oct.  09:03 spkmodem.mod
-rw-r--r-- 1 root root   9568  5 oct.  09:03 squash4.mod
-rw-r--r-- 1 root root  29720  5 oct.  09:03 syslinuxcfg.mod
-rw-r--r-- 1 root root   4896  5 oct.  09:03 tar.mod
-rw-r--r-- 1 root root    162  5 oct.  09:03 terminal.lst
-rw-r--r-- 1 root root   6528  5 oct.  09:03 terminal.mod
-rw-r--r-- 1 root root  18904  5 oct.  09:03 terminfo.mod
-rw-r--r-- 1 root root   7632  5 oct.  09:03 test.mod
-rw-r--r-- 1 root root   2048  5 oct.  09:03 test_blockarg.mod
-rw-r--r-- 1 root root   3800  5 oct.  09:03 testload.mod
-rw-r--r-- 1 root root   3432  5 oct.  09:03 testspeed.mod
-rw-r--r-- 1 root root   8336  5 oct.  09:03 tftp.mod
-rw-r--r-- 1 root root   6376  5 oct.  09:03 tga.mod
-rw-r--r-- 1 root root   2344  5 oct.  09:03 time.mod
-rw-r--r-- 1 root root   3640  5 oct.  09:03 tr.mod
-rw-r--r-- 1 root root   2080  5 oct.  09:03 trig.mod
-rw-r--r-- 1 root root   1864  5 oct.  09:03 true.mod
-rw-r--r-- 1 root root  11248  5 oct.  09:03 udf.mod
-rw-r--r-- 1 root root   7640  5 oct.  09:03 ufs1.mod
-rw-r--r-- 1 root root   7800  5 oct.  09:03 ufs1_be.mod
-rw-r--r-- 1 root root   7640  5 oct.  09:03 ufs2.mod
-rw-r--r-- 1 root root  10032  5 oct.  09:03 uhci.mod
-rw-r--r-- 1 root root  17856  5 oct.  09:03 usb.mod
-rw-r--r-- 1 root root   5928  5 oct.  09:03 usb_keyboard.mod
-rw-r--r-- 1 root root  11288  5 oct.  09:03 usbms.mod
-rw-r--r-- 1 root root   2888  5 oct.  09:03 usbserial_common.mod
-rw-r--r-- 1 root root   3424  5 oct.  09:03 usbserial_ftdi.mod
-rw-r--r-- 1 root root   3784  5 oct.  09:03 usbserial_pl2303.mod
-rw-r--r-- 1 root root   2336  5 oct.  09:03 usbserial_usbdebug.mod
-rw-r--r-- 1 root root   5576  5 oct.  09:03 usbtest.mod
-rw-r--r-- 1 root root  20080  5 oct.  09:03 verify.mod
-rw-r--r-- 1 root root     41  5 oct.  09:03 video.lst
-rw-r--r-- 1 root root   8928  5 oct.  09:03 video.mod
-rw-r--r-- 1 root root   9016  5 oct.  09:03 video_bochs.mod
-rw-r--r-- 1 root root   9592  5 oct.  09:03 video_cirrus.mod
-rw-r--r-- 1 root root  10016  5 oct.  09:03 video_colors.mod
-rw-r--r-- 1 root root  29792  5 oct.  09:03 video_fb.mod
-rw-r--r-- 1 root root   5312  5 oct.  09:03 videoinfo.mod
-rw-r--r-- 1 root root   5456  5 oct.  09:03 videotest.mod
-rw-r--r-- 1 root root   3808  5 oct.  09:03 videotest_checksum.mod
-rw-r--r-- 1 root root  10416  5 oct.  09:03 xfs.mod
-rw-r--r-- 1 root root  41480  5 oct.  09:03 xnu.mod
-rw-r--r-- 1 root root   3256  5 oct.  09:03 xnu_uuid.mod
-rw-r--r-- 1 root root   3296  5 oct.  09:03 xnu_uuid_test.mod
-rw-r--r-- 1 root root  20176  5 oct.  09:03 xzio.mod
-rw-r--r-- 1 root root  57520  5 oct.  09:03 zfs.mod
-rw-r--r-- 1 root root   8584  5 oct.  09:03 zfscrypt.mod
-rw-r--r-- 1 root root  10648  5 oct.  09:03 zfsinfo.mod
gael
yeomen
Messages : 251
Inscription : dim. 31 oct. 2010, 02:07

Re: [EFI] Problème installation boot

Message par gael »

pour grub j'ai fait ça
grub-mkconfig -o esp/grub/grub.cfg
mais je doute que ce soit la bonne chose à faire
les fichiers devrait arriver dans : /boot/esp/grub ? mais il n'y a rien dans ce dossier ...

d'ailleurs souvent il est question d'initialiser la variable esp mais comment faire ?
Avatar de l’utilisateur
benjarobin
Maître du Kyudo
Messages : 17187
Inscription : sam. 30 mai 2009, 15:48
Localisation : Lyon

Re: [EFI] Problème installation boot

Message par benjarobin »

Ouch, c'est quoi tout ce "bordel"... Il est ou le kernel et l'initramfs ? Alors on va nettoyer tout ceci... Rien ne va dans ton installation...
Ne touche plus à rien.

Fait ceci en dehors du chroot après avoir démarré du CD d'installation (redémarre sur le CD si tu avais déjà fait des modifications) :

On nettoie un peu tout...

Code : Tout sélectionner

mount /dev/sda2 /mnt
rm -rf /mnt/boot/*
mkdir /mnt/boot/efi
mount /dev/sda1 /mnt/boot/efi
rm -rf /mnt/boot/efi/*
On nettoie les entrées EFI :

Code : Tout sélectionner

efibootmgr -B 0000
efibootmgr -B 0001
On va dans le chroot et on installe tout proprement :

Code : Tout sélectionner

arch-chroot /mnt
pacman -S linux
grub-install --target=x86_64-efi --efi-directory=/boot/efi --bootloader-id=grub --boot-directory=/boot/efi --recheck
grub-mkconfig -o /boot/efi/grub/grub.cfg
Zsh | KDE | PC fixe : core i7, carte nvidia
Titre d'un sujet : [Thème] Sujet (état) / Règles du forum
avi3000
Chu Ko Nu
Messages : 404
Inscription : dim. 19 juin 2011, 18:53
Localisation : dans le neuf trois

Re: [EFI] Problème installation boot

Message par avi3000 »

benjarobin a écrit : Sur une table de partiton GPT il n'y a pas de flag de boot, parted embrouille plus que tout, utilise gdisk pour voir
Parted n'embrouille rien et ne positionne pas de flags tout seul, sans qu'on lui demande de le faire.

Il ne faut surtout pas supprimer l'entrée boot0000, elle peut-être utilisée en efistub.
Que Gaël peut tester de suite en choisissant l'entrée "Arch Linux" dans le menu bios.

En l'état c'est l'entrée boot0001 qui est utilisée, puisque la premère dans le bootorder.

J'ai testé l'installation de gael, elle fonctionne chez moi.
gael
yeomen
Messages : 251
Inscription : dim. 31 oct. 2010, 02:07

Re: [EFI] Problème installation boot

Message par gael »

je viens de retester et le pire c'est que à un moment ça avait fonctionné ...
pouvez vous m'indiquer comment completement reformater et appliquer les flags sur la partition /dev/sda1, c'est peut etre le problème ?
Avatar de l’utilisateur
benjarobin
Maître du Kyudo
Messages : 17187
Inscription : sam. 30 mai 2009, 15:48
Localisation : Lyon

Re: [EFI] Problème installation boot

Message par benjarobin »

Les flags n'existent pas sur GPT, c'est une invention de parted !!! Sur une table de partition GPT il n'y a que le code de la partition, chose que parted n'affiche pas, mais il le convertie en une liste incompréhensible de flag.
Son entrée efistub ne peut pas fonctionner car il faudrait monter la partition ESP en tant que partition de boot (chose qui n'est pas faite ici) !

@gael Le code (ef00) de ta partition ESP est bon, ceci n'est pas le problème surtout que tu voyais un Grub se lancer !
Merci de suivre à la lettre : viewtopic.php?p=156220#p156220
Zsh | KDE | PC fixe : core i7, carte nvidia
Titre d'un sujet : [Thème] Sujet (état) / Règles du forum
Répondre