1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51
|
.TH ORIFS "1" "September 2013" "Ori Project" "Ori Distributed File System"
.SH NAME
orifs \- Ori File System FUSE Driver
.SH SYNOPSIS
.B orifs
[\fIOPTIONS\fR...] \fIMOUNTPOINT\fR
.SH DESCRIPTION
orifs is the FUSE driver for the Ori distributed file system.
Currently, orifs is crash consistent up until the last snapshot. Users should
run \fBori snapshot\fR to guarantee data is saved persistently. When
recovering from a crash the tool reports an error message explaining where
unsaved data is located and how it may be recovered. You can destroy the
unsaved data by using the \fBori cleanup\fR command. In future releases this
bug will addressed.
.SH OPTIONS
.TP
\fB\-\-repo=[\fIFS-NAME\fR]\fR
Specify the path to the underlying repository. This parameter is optional and
by default orifs will search for a file system with the same name as the mount
point.
.TP
\fB\-\-clone=[\fIREMOTEPATH\fR]\fR
Replicate the file system from the specified repository.
.TP
\fB\-\-shallow\fR
Used in conjunction with \-\-clone to specify a shallow replica of the remote
repository.
.TP
\fB\-\-nocache\fR
Used in conjunction with \-\-clone to specify a non-caching replica of the remote
repository.
.TP
\fB\-\-no-threads\fR
Disable multithreading on FUSE.
.TP
\fB\-\-debug\fR
Enable debugging mode with verbose output. The file system will run much
slower, but is useful for reporting crashes.
.SH SUPPORTED COMMANDS
The file system can be controlled by the command line interface. Running
commands from anywhere inside the mounted file system should allow the command
line to detect and communicate with the file system. Not all commands are
supported on a running file system, and some hidden commands for debugging or
are not recommended. Additional commands will be added in future releases.
.SH "SEE ALSO"
.BR ori (1),
.BR ori_httpd (1)
|