Matt Mower | 09ef1e4 | 2015-12-13 11:29:45 -0600 | [diff] [blame] | 1 | .\" Copyright (C) 2010-2015 Andrew Nayenko |
bigbiff bigbiff | 9c75405 | 2013-01-09 09:09:08 -0500 | [diff] [blame] | 2 | .\" |
| 3 | .TH EXFAT-FUSE 8 "July 2010" |
| 4 | .SH NAME |
| 5 | mount.exfat-fuse \- mount an exFAT file system |
| 6 | .SH SYNOPSIS |
| 7 | .B mount.exfat-fuse |
| 8 | [ |
| 9 | .B \-d |
| 10 | ] |
| 11 | [ |
bigbiff bigbiff | 004e2df | 2013-07-03 14:52:12 -0400 | [diff] [blame] | 12 | .B \-n |
| 13 | ] |
| 14 | [ |
bigbiff bigbiff | 9c75405 | 2013-01-09 09:09:08 -0500 | [diff] [blame] | 15 | .B \-o |
| 16 | .I options |
| 17 | ] |
| 18 | [ |
bigbiff bigbiff | 004e2df | 2013-07-03 14:52:12 -0400 | [diff] [blame] | 19 | .B \-V |
| 20 | ] |
| 21 | [ |
bigbiff bigbiff | 9c75405 | 2013-01-09 09:09:08 -0500 | [diff] [blame] | 22 | .B \-v |
| 23 | ] |
| 24 | .I device dir |
| 25 | |
| 26 | .SH DESCRIPTION |
| 27 | .B mount.exfat-fuse |
| 28 | is a free exFAT file system implementation with write support. exFAT is a |
| 29 | simple file system created by Microsoft. It is intended to replace FAT32 |
bigbiff bigbiff | 004e2df | 2013-07-03 14:52:12 -0400 | [diff] [blame] | 30 | removing some of its limitations. exFAT is a standard FS for SDXC memory |
bigbiff bigbiff | 9c75405 | 2013-01-09 09:09:08 -0500 | [diff] [blame] | 31 | cards. |
| 32 | |
| 33 | .SH COMMAND LINE OPTIONS |
| 34 | Command line options available: |
| 35 | .TP |
| 36 | .BI \-d |
| 37 | Enable debug logging and do not detach from shell. |
| 38 | .TP |
bigbiff bigbiff | 004e2df | 2013-07-03 14:52:12 -0400 | [diff] [blame] | 39 | .BI \-n |
| 40 | Ignored. |
| 41 | .TP |
bigbiff bigbiff | 9c75405 | 2013-01-09 09:09:08 -0500 | [diff] [blame] | 42 | .BI \-o " options" |
| 43 | File system specific options. For more details see |
| 44 | .B FILE SYSTEM OPTIONS |
| 45 | section below. |
| 46 | .TP |
bigbiff bigbiff | 004e2df | 2013-07-03 14:52:12 -0400 | [diff] [blame] | 47 | .BI \-V |
bigbiff bigbiff | 9c75405 | 2013-01-09 09:09:08 -0500 | [diff] [blame] | 48 | Print version and copyright. |
bigbiff bigbiff | 004e2df | 2013-07-03 14:52:12 -0400 | [diff] [blame] | 49 | .TP |
| 50 | .BI \-v |
| 51 | Ignored. |
bigbiff bigbiff | 9c75405 | 2013-01-09 09:09:08 -0500 | [diff] [blame] | 52 | |
| 53 | .SH FILE SYSTEM OPTIONS |
| 54 | .TP |
| 55 | .BI umask= value |
| 56 | Set the umask (the bitmask of the permissions that are |
| 57 | .B not |
| 58 | present, in octal). |
Matt Mower | 09ef1e4 | 2015-12-13 11:29:45 -0600 | [diff] [blame] | 59 | The default is 0. |
bigbiff bigbiff | 9c75405 | 2013-01-09 09:09:08 -0500 | [diff] [blame] | 60 | .TP |
| 61 | .BI dmask= value |
| 62 | Set the umask for directories only. |
| 63 | .TP |
| 64 | .BI fmask= value |
| 65 | Set the umask for files only. |
| 66 | .TP |
| 67 | .BI uid= n |
| 68 | Set the owner for all files and directories. |
| 69 | The default is the owner of the current process. |
| 70 | .TP |
| 71 | .BI gid= n |
| 72 | Set the group for all files and directories. |
| 73 | The default is the group of the current process. |
| 74 | .TP |
| 75 | .BI ro |
| 76 | Mount the file system in read only mode. |
| 77 | .TP |
| 78 | .BI noatime |
| 79 | Do not update access time when file is read. |
| 80 | |
| 81 | .SH EXIT CODES |
| 82 | Zero is returned on successful mount. Any other code means an error. |
| 83 | |
Matt Mower | 09ef1e4 | 2015-12-13 11:29:45 -0600 | [diff] [blame] | 84 | .SH BUGS |
| 85 | exFAT is a case-insensitive file system. Some things can behave unexpectedly, |
| 86 | e.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 | |
| 92 | This happens because |
| 93 | .B mv |
| 94 | finds that destination exists (for case-insensitive file |
| 95 | systems |
| 96 | .B FOO |
| 97 | and |
| 98 | .B Foo |
| 99 | are the same thing) and adds source basename to the destination. The file |
| 100 | system gets |
| 101 | .B rename(\(dqFOO\(dq,\ \(dqFoo/FOO\(dq) |
| 102 | syscall and returns an error. |
| 103 | |
bigbiff bigbiff | 9c75405 | 2013-01-09 09:09:08 -0500 | [diff] [blame] | 104 | .SH AUTHOR |
| 105 | Andrew Nayenko |
| 106 | |
| 107 | .SH SEE ALSO |
| 108 | .BR mount (8) |