From db16d37ff47867d5906fc8c56d32cd852749005c Mon Sep 17 00:00:00 2001 From: Fredrik Carlbom <45489326+fredrikcarlbom@users.noreply.github.com> Date: Mon, 10 Apr 2023 09:02:42 +0200 Subject: [PATCH] Fix quick start test (#767) The quick start test mounted to /mnt instead of a sub-directory to it which can cause problems. Co-authored-by: Fredrik Carlbom --- docs/Quick-Start-Guide/Quickstart.md | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/docs/Quick-Start-Guide/Quickstart.md b/docs/Quick-Start-Guide/Quickstart.md index 7910a05..9f3e9e9 100644 --- a/docs/Quick-Start-Guide/Quickstart.md +++ b/docs/Quick-Start-Guide/Quickstart.md @@ -222,14 +222,15 @@ be installed on the client machine, we will use one of the servers as a simple place to test first , as if it were that "client". ```console -mount -t glusterfs server1:/gv0 /mnt -for i in `seq -w 1 100`; do cp -rp /var/log/messages /mnt/copy-test-$i; done +mkdir /mnt/gluster-test +mount -t glusterfs server1:/gv0 /mnt/gluster-test +for i in `seq -w 1 100`; do cp -rp /var/log/messages /mnt/gluster-test/copy-test-$i; done ``` First, check the client mount point: ```console -ls -lA /mnt/copy* | wc -l +ls -lA /mnt/gluster-test/copy* | wc -l ``` You should see 100 files returned. Next, check the GlusterFS brick mount