[LUDOC-413] lfs mkdir documentation should be fixed Created: 17/Sep/18 Updated: 02/Feb/21 |
|
| Status: | Open |
| Project: | Lustre Documentation |
| Component/s: | None |
| Affects Version/s: | None |
| Fix Version/s: | None |
| Type: | Bug | Priority: | Minor |
| Reporter: | Stephane Thiell | Assignee: | Lustre Manual Triage |
| Resolution: | Unresolved | Votes: | 0 |
| Labels: | None | ||
| Environment: |
CentOS 7.5, Lustre 2.11.55 |
||
| Issue Links: |
|
||||||||
| Severity: | 3 | ||||||||
| Rank (Obsolete): | 9223372036854775807 | ||||||||
| Description |
|
Hello, $ lfs mkdir lfs mkdir: DIR must be specified To create a striped directory on a specified MDT. This can only be done on MDT0 with the right of administrator. usage: mkdir [OPTION] <directory> [--mdt-count|-c stripe_count> [--mdt-index|-i mdt_index] [--mdt-hash|-H mdt_hash] [--default|-D] [--mode|-m mode] <dir> stripe_count: stripe count of the striped directory mdt_index: MDT index of first stripe mdt_hash: hash type of the striped directory. mdt types: fnv_1a_64 FNV-1a hash algorithm (default) all_char sum of characters % MDT_COUNT (not recommended) default_stripe: set default dirstripe of the directory mode: the mode of the directory This doesn't seem to be correct a striped directory can be created on other MDTs too, not only MDT0 right? # lfs mkdir -c 1 -i 3 mdt3 # cd mdt3 # lfs mkdir -c 4 dnewide # lfs getstripe --mdt-index dnewide 3 # cd dnewide # touch 1 2 3 4 # lfs getstripe --mdt-index * 3 2 3 0 Thanks, |