docs(zfs): Correctly umount after maintenance (#6)

This commit is contained in:
hygienic-books 2023-11-04 00:00:03 +01:00
parent 7d5075a543
commit 305e4191f1

View File

@ -498,7 +498,12 @@ arch-chroot /mnt /bin/bash
When done exit `chroot` and cleanly remove your work:
```
# UEFI system ...
umount /mnt/efi
# ... or legacy BIOS system
umount /mnt/boot/syslinux
zfs umount -a
zpool export zpool
```