forked from jblumsch/fuse-ufs2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfuse-ufs.1
125 lines (124 loc) · 2.57 KB
/
fuse-ufs.1
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
.TH FUSE-UFS "1" "March 2013" "FUSE/UMFUSE modules" "User Commands"
.SH NAME
FUSE-UFS \- FUSE module for UFS-2 filesystem
.SH SYNOPSIS
.B fuse-ufs
.RI [ OPTION ]...\&
.I imagefile mountpoint
.LP
.B fuse-ufs
.I imagefile mountpoint
.RI [ OPTION ]...
.SH DESCRIPTION
Fuse-ufs mounts an ufs2 partition or image file. It uses Fuse support
(Filesystem in Userspace) included in modern Linux kernels.
.SH OPTIONS
.SS "General options"
.TP
\fB\-o\fR opt,[opt...]
mount options
.TP
\fB\-h\fR \fB\-\-help\fR
print help
.TP
\fB\-V\fR \fB\-\-version\fR
print version
.SS "FUSE-UFS options:"
.TP
\fB\-o\fR force
force read-write mount (\fBEXPERIMENTAL\fR, the option \fBrw\fR without \fBforce\fR
mounts the file system in read-only mode, with a warning).
.TP
\fB\-o\fR rw+
enable read-write mount (\fBEXPERIMENTAL\fR, is a shortcut for -o rw,force)
.SS "FUSE options:"
.TP
\fB\-d, \-o debug\fR
enable debug output (implies \fB\-f\fR)
.TP
\fB\-f\fR
foreground operation
.TP
\fB\-s\fR
disable multi\-threaded operation
.TP
\fB\-o allow_other\fR
allow access to other users
.TP
\fB\-o allow_root\fR
allow access to root
.TP
\fB\-o nonempty\fR
allow mounts over non\-empty file/dir
.TP
\fB\-o default_permissions\fR
enable permission checking by kernel
.TP
\fB\-o fsname=\fINAME\fR
set filesystem name
.TP
\fB\-o large_read\fR
issue large read requests (2.4 only)
.TP
\fB\-o max_read=\fIN\fR
set maximum size of read requests
.TP
\fB\-o hard_remove\fR
immediate removal (don't hide files)
.TP
\fB\-o use_ino\fR
let filesystem set inode numbers
.TP
\fB\-o readdir_ino\fR
try to fill in d_ino in readdir
.TP
\fB\-o direct_io\fR
use direct I/O
.TP
\fB\-o kernel_cache\fR
cache files in kernel
.TP
\fB\-o [no]auto_cache\fR
enable caching based on modification times
.TP
\fB\-o umask=\fIM\fR
set file permissions (octal)
.TP
\fB\-o uid=\fIN\fR
set file owner
.TP
\fB\-o gid=\fIN\fR
set file group
.TP
\fB\-o entry_timeout=\fIT\fR
cache timeout for names (1.0s)
.TP
\fB\-o negative_timeout=\fIT\fR
cache timeout for deleted names (0.0s)
.TP
\fB\-o attr_timeout=\fIT\fR
cache timeout for attributes (1.0s)
.TP
\fB\-o ac_attr_timeout=\fIT\fR
auto cache timeout for attributes (attr_timeout)
.TP
\fB\-o intr\fR
allow requests to be interrupted
.TP
\fB\-o intr_signal=\fINUM\fR
signal to send on interrupt (10)
.TP
\fB\-o max_write=\fIN\fR
set maximum size of write requests
.TP
\fB\-o max_readahead=\fIN\fR
set maximum readahead
.TP
\fB\-o async_read\fR
perform reads asynchronously (default)
.TP
\fB\-o sync_read\fR
perform reads synchronously
.SH AUTHORS
Manish Katiyar <[email protected]>
See \fIhttp://sourceforge.net/projects/fuse-ufs/ \fR.