Note : Ces instructions sont pour la version 0.12.0 de rEFInd. Si vous téléchargez une version différente, faites les substitutions appropriées pour la version que vous utilisez.
Le gestionnaire de démarrage REFInd : Obtenir rEFInd La page web contient un lien pour Un fichier image de clé USB . Par défaut, les fichiers téléchargés sont placés dans le dossier ~/Downloads/refind-flashdrive-0.12.0
. Le contenu de ce dossier est donné ci-dessous.
-rw-rw-r--@ 1 davidanderson staff 35147 Mar 13 2020 COPYING.txt
-rw-rw-r--@ 1 davidanderson staff 4891 Mar 13 2020 CREDITS.txt
-rw-rw-r--@ 1 davidanderson staff 2204 Mar 13 2020 LICENSE.txt
-rw-rw-r--@ 1 davidanderson staff 105344 Mar 13 2020 NEWS.txt
-rw-r--r--@ 1 davidanderson staff 1719 Mar 13 2020 README-flashdrive.txt
-rw-r--r--@ 1 davidanderson staff 2183 Mar 13 2020 SHELLS.txt
-rw-rw-r--@ 1 davidanderson staff 7372800 Mar 13 2020 refind-flashdrive-0.12.0.img
Note : Le fichier téléchargé refind-flashdrive-0.12.0.zip
est automatiquement décompressé.
Les instructions se trouvent dans le fichier nommé README-flashdrive.txt
. Le contenu est donné ci-dessous.
The .img file in this archive should be bootable on any EFI-based computer.
It launches the rEFInd boot manager, which in turn should be able to locate
boot loaders on the computer's EFI System Partition (ESP) or on other
partitions.
To use this disk image, you must copy it to a USB flash drive or similar
medium. Under Linux or Mac OS X, you can do this with dd as root, as in:
dd if=refind-flashdrive-{version}.img of=/dev/sdx
You must change {version} to the version number and set the target disk
(specified by "of=") correctly. BE VERY CAREFUL! If you set the output disk
incorrectly, you can seriously damage the data on your hard disk! (If this
happens, and if it's a GPT disk, you may be able to recover most of your
data by using GPT fdisk. See http://www.rodsbooks.com/gdisk/repairing.html
for details.)
Be aware that the disk image file uses GPT, and the GPT data structures are
sized for the disk image, which is very small by today's standards. Thus,
the backup GPT data structures will be placed early on the disk. Most OSes
cope well with this, but you may want to correct the problem if you want to
use the disk for other purposes in the future. You can do this with the "e"
option on the experts' menu of gdisk (http://www.rodsbooks.com/gdisk/). GNU
parted can also correct this problem; it will prompt you when you try to
view the partitions on the disk.
You can also install rEFInd from this disk image; however, it doesn't
contain an EFI/refind directory like the other installation files available
from the rEFInd Sourceforge page. Instead, you must copy the contents of
EFI/BOOT, and the rEFInd binary is called EFI/boot/bootx64.efi or
EFI/boot/bootia32.efi, depending on your architecture.
Étapes pour créer la clé USB amorçable
-
Insérez un lecteur flash et utilisez l'utilitaire de disque pour effacer le lecteur flash. Pour le nom, entrez MYREFIND
. Pour le format, entrez MS-DOS (FAT)
. Pour le schéma, entrez Master Boot Record
.
-
Ouvrez une fenêtre d'application Terminal et modifiez le répertoire de travail actuel pour qu'il corresponde à l'endroit où se trouve le fichier image. Vous trouverez ci-dessous la commande à utiliser lors du téléchargement à l'emplacement par défaut.
cd ~/Downloads/refind-flashdrive-0.12.0
-
Entrez la commande donnée ci-dessous pour obtenir l'identifiant de la clé USB.
diskutil info MYREFIND | grep "Part of Whole"
Dans mon cas, l'identifiant était disk2
. Si vous obtenez un identifiant différent, effectuez les substitutions appropriées dans les étapes suivantes.
-
Entrez la commande donnée ci-dessous pour démonter le lecteur flash.
diskutil unmountdisk disk2
-
Entrez la commande donnée ci-dessous pour copier l'image sur le lecteur flash.
sudo dd if=refind-flashdrive-0.12.0.img of=/dev/disk2
-
(Facultatif) Comme expliqué dans le README-flashdrive.txt
l'en-tête et la table de la partition GUID secondaire (de secours) ne sont pas stockés à la fin du lecteur flash. Si vous avez le gdisk
installé, alors vous pouvez entrer la commande ci-dessous pour réparer ce problème. La page d'accueil du projet GPT fdisk se trouve à l'adresse suivante aquí .
sudo gdisk /dev/disk2
El gdisk
est interactive. Vous trouverez ci-dessous les commandes correctes à saisir lorsque vous y êtes invité.
x
e
w
y
0 votes
À quelles instructions faites-vous référence ?