Skip to content

Commit 3a1fa7b

Browse files
Richard Regandpshelio
authored andcommitted
Add exercise to compare file systems
1 parent 39359a3 commit 3a1fa7b

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

_episodes/35-filesystem.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ questions:
66
- "How do I store a file on node so that another node can see it?"
77
- "How do I store a file on node so that another node cannot see it?"
88
- "Do I really need scp for all of the above?"
9+
- "Are all shared file systems the same?"
910
objectives:
1011
- "Submit a job that fills a file with arbitrary but known data and store it in the shared file system."
1112
- "Submit a job that fills a file with arbitrary but known data and store it in the local file system of the execution host."
@@ -135,3 +136,18 @@ Lola is happy. Before leaving, her colleague briefs her, that she should be caut
135136
> {: .solution}
136137
{: .challenge}
137138
139+
> ## Different file systems
140+
>
141+
> How do you know the properties of your file systems?
142+
>
143+
> > ## Solution
144+
> > Find such information on your HPC documentation
145+
> > additionally, you can try to use `rsync` to copy files and obtain a progress information.
146+
> > ~~~
147+
> > # Example to test
148+
> > rsync -a --info=progress2 /tmp/filetest /tmp/fileresult > /home/results_local
149+
> > rsync -a --info=progress2 /tmp/filetest /home/filereult > /home/results_home
150+
> > rsync -a --info=progress2 /tmp/filetest /lustre/fileresult > /home/results_lustre
151+
> > ~~~
152+
> {:.solution}
153+
{: .challenge}

0 commit comments

Comments
 (0)