1PVFS2-MKDIR(1) General Commands Manual PVFS2-MKDIR(1)
2
3
4
6 pvfs2-mkdir – create directory in an OrangeFS volume
7
9 pvfs2-mkdir [-m mode] [-i initial] [-x maximum] [-s split] [-pVvh]
10 directory
11
13 The pvfs2-mkdir utility creates a directory in an OrangeFS volume at
14 directory.
15
16 The options are as follows:
17
18 -m Set permission mode as three or four digit octal number mode.
19
20 -i Set initial number of dirdata handles.
21
22 -x Set maximum number of dirdata handles.
23
24 -s Set number of directory entries stored before split.
25
26 -p Create parent directories as needed within OrangeFS.
27
28 -V Display verbose messages.
29
30 -v Print version number and exit.
31
32 -h Display synopsis.
33
35 PVFS2_DEBUGFILE
36 If set to the path of a local file, redirect debug output to it.
37
38 PVFS2_DEBUGMASK
39 Set the OrangeFS debug mask. Possible masks are documented in
40 pvfs2-set-debugmask(1).
41
42 PVFS2TAB_FILE
43 If set, the full pathname for an alternate pvfs2tab file
44
46 /etc/pvfs2tab
47
49 Create a directory.
50
51 pvfs2-mkdir /mnt/foo
52
53 Create a directory whose entries are always distributed across 4
54 servers. In this case a split will never need to occur, so the split
55 size is irrelevant.
56
57 pvfs2-mkdir -i 4 -x 4 /mnt/foo
58
59 Create a directory whose entries initially reside on 1 server, but may
60 eventually grow so that entries are distributed across 4 servers. When
61 any single server reaches the maximum of 10,000 directory entries,
62 another of the available servers becomes active and entries are split
63 across active servers, up to a maximum of 4 servers.
64
65 pvfs2-mkdir -i 1 -x 4 -s 10000 /mnt/foo
66
68 Please submit bug reports to pvfs2-developers@beowulf-underground.org
69
71 mkdir(1), pvfs2-touch(1), pvfs2tab(5)
72
73
74
75 2017-07-03 PVFS2-MKDIR(1)