From c10a2d882fe71284ea28439ac5fbc19c2e71a6cd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=98=8E=E6=89=AC?= Date: Wed, 20 Sep 2017 21:06:20 +0800 Subject: [PATCH] Update Setting Up Volumes.md Run `# mkfs.xfs -f -i size=512 -n size=8192 -d su=128K,sw=10 DEVICE` command causes `data su must be a multiple of the sector size (512)`. Because `mkfs.xfs` parameter `` only accept lowercase letter "k" Update Setting Up Volumes.md Update Setting Up Volumes.md --- Administrator Guide/Setting Up Volumes.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Administrator Guide/Setting Up Volumes.md b/Administrator Guide/Setting Up Volumes.md index d9c841a..ac00f9c 100644 --- a/Administrator Guide/Setting Up Volumes.md +++ b/Administrator Guide/Setting Up Volumes.md @@ -79,7 +79,7 @@ To create a thinly provisioned logical volume, proceed with the following steps: Format bricks using the supported XFS configuration, mount the bricks, and verify the bricks are mounted correctly. - 1. Run `# mkfs.xfs -f -i size=512 -n size=8192 -d su=128K,sw=10 DEVICE` to format the bricks to the supported XFS file system format. Here, DEVICE is the thin LV. The inode size is set to 512 bytes to accommodate for the extended attributes used by GlusterFS. + 1. Run `# mkfs.xfs -f -i size=512 -n size=8192 -d su=128k,sw=10 DEVICE` to format the bricks to the supported XFS file system format. Here, DEVICE is the thin LV. The inode size is set to 512 bytes to accommodate for the extended attributes used by GlusterFS. Run `# mkdir /mountpoint` to create a directory to link the brick to.