diff --git a/docs/knowledge-base/posts/import-centos-redhat.md b/docs/knowledge-base/posts/import-centos-redhat.md index 3ca250ca..688baed4 100644 --- a/docs/knowledge-base/posts/import-centos-redhat.md +++ b/docs/knowledge-base/posts/import-centos-redhat.md @@ -149,6 +149,12 @@ Once booted into rescue mode, log in as root and mount the root filesystem. mount --rbind /run /mnt/run ``` + For EFI/UEFI systems, also mount the EFI partition: + ```bash + mount /dev/sdX1 /mnt/boot/efi + ``` + Replace /dev/sdX1 with your actual EFI partition (check with lsblk or fdisk -l). + 5. **Chroot into the mounted filesystem**: ```bash diff --git a/docs/knowledge-base/posts/redhat-v9-clone-restore.md b/docs/knowledge-base/posts/redhat-v9-clone-restore.md index 79cb031f..611505eb 100644 --- a/docs/knowledge-base/posts/redhat-v9-clone-restore.md +++ b/docs/knowledge-base/posts/redhat-v9-clone-restore.md @@ -160,6 +160,12 @@ If the GRUB menu is unreachable or the VM won't get that far: `mount --rbind /dev /mnt/dev` `mount --rbind /run /mnt/run` + For EFI/UEFI systems, also mount the EFI partition: + ```bash + mount /dev/sdX1 /mnt/boot/efi + ``` + Replace /dev/sdX1 with your actual EFI partition (check with lsblk or fdisk -l). + ### 4. Chroot into the Installed System and mount additional filesystems