From: Emmanuel Kasper Date: Thu, 23 Mar 2017 10:57:32 +0000 (+0100) Subject: Fix path to block device when creating a file system on a thin volume X-Git-Url: https://git.proxmox.com/?p=pve-docs.git;a=commitdiff_plain;h=188b4dc562e072fc81013b28e83a77015795e9e1;ds=sidebyside Fix path to block device when creating a file system on a thin volume The path component following /dev/ should be the volume group where the thin pool exists, not the name of the thin pool itself. (the fstab example underneath has this right) --- diff --git a/local-lvm.adoc b/local-lvm.adoc index 8ebc123..1abd6fc 100644 --- a/local-lvm.adoc +++ b/local-lvm.adoc @@ -104,7 +104,7 @@ A real world example: Now a filesystem must be created on the LV. - # mkfs.ext4 /dev/data/vz + # mkfs.ext4 /dev/pve/vz At last this has to be mounted.