3-xen-orchestra-install #4

Merged
hygienic-books merged 84 commits from 3-xen-orchestra-install into main 2023-10-22 14:23:54 +00:00
Showing only changes of commit 2e39075273 - Show all commits

View File

@ -409,20 +409,20 @@ zfs create zpool/data/var/lib/docker
In case you want to mount your zpool on an external operating system such as an Arch Linux live CD ISO image do it like so: In case you want to mount your zpool on an external operating system such as an Arch Linux live CD ISO image do it like so:
``` ```
zpool import 'zpool' -d '/dev/disk/by-partuuid' -R '/mnt' -f -N zpool import zpool -d /dev/disk/by-partuuid -R /mnt -f -N
zfs load-key -L 'prompt' 'zpool' zfs load-key -L prompt zpool
zfs mount 'zpool/root/archlinux' zfs mount zpool/root/archlinux
zfs mount -a zfs mount -a
mount '/dev/sda1' '/mnt/efi' mount /dev/sda1 /mnt/efi
arch-chroot '/mnt' '/bin/bash' arch-chroot /mnt /bin/bash
``` ```
When done cleanly remove your work: When done cleanly remove your work:
``` ```
umount '/mnt/efi' umount /mnt/efi
zfs umount -a zfs umount -a
zpool export 'zpool' zpool export zpool
``` ```
Explanation: Explanation: