blob: 38586ca45dd3bb686e9db316d4526ff707b8e376 [file] [log] [blame]
Matt Mower09ef1e42015-12-13 11:29:45 -06001.\" Copyright (C) 2010-2015 Andrew Nayenko
bigbiff bigbiff9c754052013-01-09 09:09:08 -05002.\"
3.TH EXFAT-FUSE 8 "July 2010"
4.SH NAME
5mount.exfat-fuse \- mount an exFAT file system
6.SH SYNOPSIS
7.B mount.exfat-fuse
8[
9.B \-d
10]
11[
bigbiff bigbiff004e2df2013-07-03 14:52:12 -040012.B \-n
13]
14[
bigbiff bigbiff9c754052013-01-09 09:09:08 -050015.B \-o
16.I options
17]
18[
bigbiff bigbiff004e2df2013-07-03 14:52:12 -040019.B \-V
20]
21[
bigbiff bigbiff9c754052013-01-09 09:09:08 -050022.B \-v
23]
24.I device dir
25
26.SH DESCRIPTION
27.B mount.exfat-fuse
28is a free exFAT file system implementation with write support. exFAT is a
29simple file system created by Microsoft. It is intended to replace FAT32
bigbiff bigbiff004e2df2013-07-03 14:52:12 -040030removing some of its limitations. exFAT is a standard FS for SDXC memory
bigbiff bigbiff9c754052013-01-09 09:09:08 -050031cards.
32
33.SH COMMAND LINE OPTIONS
34Command line options available:
35.TP
36.BI \-d
37Enable debug logging and do not detach from shell.
38.TP
bigbiff bigbiff004e2df2013-07-03 14:52:12 -040039.BI \-n
40Ignored.
41.TP
bigbiff bigbiff9c754052013-01-09 09:09:08 -050042.BI \-o " options"
43File system specific options. For more details see
44.B FILE SYSTEM OPTIONS
45section below.
46.TP
bigbiff bigbiff004e2df2013-07-03 14:52:12 -040047.BI \-V
bigbiff bigbiff9c754052013-01-09 09:09:08 -050048Print version and copyright.
bigbiff bigbiff004e2df2013-07-03 14:52:12 -040049.TP
50.BI \-v
51Ignored.
bigbiff bigbiff9c754052013-01-09 09:09:08 -050052
53.SH FILE SYSTEM OPTIONS
54.TP
55.BI umask= value
56Set the umask (the bitmask of the permissions that are
57.B not
58present, in octal).
Matt Mower09ef1e42015-12-13 11:29:45 -060059The default is 0.
bigbiff bigbiff9c754052013-01-09 09:09:08 -050060.TP
61.BI dmask= value
62Set the umask for directories only.
63.TP
64.BI fmask= value
65Set the umask for files only.
66.TP
67.BI uid= n
68Set the owner for all files and directories.
69The default is the owner of the current process.
70.TP
71.BI gid= n
72Set the group for all files and directories.
73The default is the group of the current process.
74.TP
75.BI ro
76Mount the file system in read only mode.
77.TP
78.BI noatime
79Do not update access time when file is read.
80
81.SH EXIT CODES
82Zero is returned on successful mount. Any other code means an error.
83
Matt Mower09ef1e42015-12-13 11:29:45 -060084.SH BUGS
85exFAT is a case-insensitive file system. Some things can behave unexpectedly,
86e.g. directory renaming that changes only case of some characters:
87
88.B \t$ mv FOO Foo
89.br
90.B \tmv: cannot move \(cqFOO\(cq to a subdirectory of itself, \(cqFoo/FOO\(cq
91
92This happens because
93.B mv
94finds that destination exists (for case-insensitive file
95systems
96.B FOO
97and
98.B Foo
99are the same thing) and adds source basename to the destination. The file
100system gets
101.B rename(\(dqFOO\(dq,\ \(dqFoo/FOO\(dq)
102syscall and returns an error.
103
bigbiff bigbiff9c754052013-01-09 09:09:08 -0500104.SH AUTHOR
105Andrew Nayenko
106
107.SH SEE ALSO
108.BR mount (8)