-
Notifications
You must be signed in to change notification settings - Fork 183
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
20 additions
and
26 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
# Parallel I/O | ||
|
||
## Striping example | ||
|
||
Different tools to setting and displaying stripe properties | ||
- `lfs setstripe` Set striping properties of a directory or new file | ||
- `lfs getstripe` Return information on current striping settings | ||
- `lfs df` Show disk usage of this file system | ||
|
||
|
||
``` | ||
touch first_file | ||
lfs getstripe first_file | ||
mkdir experiments | ||
lfs setstripe -c 4 experiments | ||
touch experiments/new_file | ||
lfs getstripe experiments/new_file | ||
``` | ||
|
This file was deleted.
Oops, something went wrong.