X-Git-Url: https://code.delx.au/refind/blobdiff_plain/c4de209cd373b17a155ddb692046d0251e669e3e..99a75c0d391580161f651db61bb43afb46f4e5cd:/docs/refind/installing.html diff --git a/docs/refind/installing.html b/docs/refind/installing.html index 03f54cc..3ce06e1 100644 --- a/docs/refind/installing.html +++ b/docs/refind/installing.html @@ -224,8 +224,9 @@ Installation has completed successfully.

In addition to these quirks, you should be aware of some options that install.sh supports to enable you to customize your installation in various ways. The syntax for install.sh is as follows:

-install.sh [--esp | --usedefault device-file] [--nodrivers | --alldrivers] \
-           [--shim shim-filename] [--localkeys]
+install.sh [--esp | --usedefault device-file | --root mount-point ] \
+           [--nodrivers | --alldrivers] [--shim shim-filename] \
+           [--localkeys]
 

The details of the options are summarized in Table 1. Using some of these options in unusual conditions can generate warnings and prompts to confirm your actions. In particular, using --shim or --localkeys when you're not booted in Secure Boot mode, or failing to use --shim when you are booted in Secure Boot mode, will generate a query and a request to confirm your installation. Consult the Managing Secure Boot page for more on this topic.

@@ -241,7 +242,11 @@ install.sh [--esp | --usedefault device-file] [--nodri --usedefault device-file - You can install rEFInd to a disk using the default/fallback filename of EFI/BOOT/bootx64.efi (and EFI/BOOT/bootia32.efi, if the 32-bit build is available) using this option. The device-file should be an unmounted ESP, or at least a FAT partition, as in --usedefault /dev/sdc1. Your computer's NVRAM entries will not be modified when installing in this way. The intent is that you can create a bootable USB flash drive or install rEFInd on a computer that tends to "forget" its NVRAM settings with this option. This option is mutually exclusive with --esp. + You can install rEFInd to a disk using the default/fallback filename of EFI/BOOT/bootx64.efi (and EFI/BOOT/bootia32.efi, if the 32-bit build is available) using this option. The device-file should be an unmounted ESP, or at least a FAT partition, as in --usedefault /dev/sdc1. Your computer's NVRAM entries will not be modified when installing in this way. The intent is that you can create a bootable USB flash drive or install rEFInd on a computer that tends to "forget" its NVRAM settings with this option. This option is mutually exclusive with --esp and --root (except for implicit use of --esp on Linux). + + + --root /mount-point + This option is intended to help install rEFInd from a "live CD" or other emergency system. To use it, you should mount your regular Linux installation at /mount-point, including your /boot directory (if it's separate) at /mount-point/boot and your ESP at that location or at /mount-point/boot/efi. The install.sh script then installs rEFInd to the appropriate location—/mount-point/boot/EFI/refind or /mount-point/boot/efi/EFI/refind, depending on where you've mounted your ESP. The script also adds an entry to your NVRAM for rEFInd at this location. You cannot use this option with either --esp or --usedefault, except for implicit use of --esp on Linux. --nodrivers