docs(zfs): Fewer single quotes (#3)
This commit is contained in:
parent
4dab010efd
commit
2e39075273
14
README.md
14
README.md
@ -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:
|
||||
|
||||
```
|
||||
zpool import 'zpool' -d '/dev/disk/by-partuuid' -R '/mnt' -f -N
|
||||
zfs load-key -L 'prompt' 'zpool'
|
||||
zfs mount 'zpool/root/archlinux'
|
||||
zpool import zpool -d /dev/disk/by-partuuid -R /mnt -f -N
|
||||
zfs load-key -L prompt zpool
|
||||
zfs mount zpool/root/archlinux
|
||||
zfs mount -a
|
||||
mount '/dev/sda1' '/mnt/efi'
|
||||
arch-chroot '/mnt' '/bin/bash'
|
||||
mount /dev/sda1 /mnt/efi
|
||||
arch-chroot /mnt /bin/bash
|
||||
```
|
||||
|
||||
When done cleanly remove your work:
|
||||
|
||||
```
|
||||
umount '/mnt/efi'
|
||||
umount /mnt/efi
|
||||
zfs umount -a
|
||||
zpool export 'zpool'
|
||||
zpool export zpool
|
||||
```
|
||||
|
||||
Explanation:
|
||||
|
Loading…
x
Reference in New Issue
Block a user