https://doc.zih.tu-dresden.de/data_lifecycle/lustre/ should specify what to use instead of `find -name mydata`
The lfs find
command uses a different syntax than the normal linux find
command. Assuming that an HPC user should not use find
, there should be an example how to use lfs find
.
The following is an output of what it gave me (assuming you only have to prepend lfs
):
$ lfs find -name run
error: find: no filename|pathname
find files matching given attributes recursively in directory tree.
usage: find <directory|filename> ...
[[!] --atime|-A [+-]N] [[!] --ctime|-C [+-]N]
[[!] --mtime|-M [+-]N] [--maxdepth|-D N] [[!] --blocks|-b N]
[[!] --name|-n <pattern>] [[!] --ost|-O <uuid|index,...>]
[--print|-P] [--print0|-0] [[!] --size|-s [+-]N[bkMGTPE]]
[[!] --stripe-count|-c [+-]<stripes>]
[[!] --stripe-index|-i <index,...>]
[[!] --stripe-size|-S [+-]N[kMGT]] [[!] --type|-t <filetype>]
[[!] --gid|-g|--group|-G <gid>|<gname>]
[[!] --uid|-u|--user|-U <uid>|<uname>] [[!] --pool <pool>]
[[!] --projid <projid>]
[[!] --layout|-L released,raid0,mdt]
[[!] --component-count [+-]<comp_cnt>]
[[!] --component-start [+-]N[kMGTPE]]
[[!] --component-end|-E [+-]N[kMGTPE]]
[[!] --component-flags <comp_flags>]
[[!] --mirror-count|-N [+-]<n>]
[[!] --mirror-state <[^]state>]
[[!] --mdt-count|-T [+-]<stripes>]
[[!] --mdt-hash|-H <hashtype>
[[!] --mdt-index|-m <uuid|index,...>]
!: used before an option indicates 'NOT' requested attribute
-: used before a value indicates less than requested value
+: used before a value indicates more than requested value
hashtype: hash type of the striped directory.
fnv_1a_64 FNV-1a hash algorithm
all_char sum of characters % MDT_COUNT
Edited by Jan Frenzel