Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions docs/knowledge-base/posts/import-centos-redhat.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
6 changes: 6 additions & 0 deletions docs/knowledge-base/posts/redhat-v9-clone-restore.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
Loading