OSDN Git Service

Exclude OpenBSD from the list of supported operating systems.
[android-x86/external-exfat.git] / README.md
1 About
2 -----
3
4 This project aims to provide a full-featured [exFAT][1] file system implementation for Unix-like systems. It consists of a [FUSE][2] module (fuse-exfat) and a set of utilities (exfat-utils).
5
6 Supported operating systems:
7
8 * GNU/Linux
9 * Mac OS X 10.5 or later
10
11 Most GNU/Linux distributions already have fuse-exfat and exfat-utils in their repositories, so you can just install and use them. The next chapter describes how to compile them from source.
12
13 Compiling
14 ---------
15
16 To build this project on GNU/Linux you need to install the following packages:
17
18 * [git][4]
19 * [autoconf][5]
20 * [automake][6]
21 * [pkg-config][7]
22 * fuse-devel (or libfuse-dev)
23 * [gcc][8]
24 * [make][9]
25
26 On Mac OS X:
27
28 * autoconf
29 * automake
30 * pkg-config
31 * [OSXFUSE][10]
32 * [Xcode][11] (legacy versions include autotools but their versions are too old)
33
34 On OpenBSD:
35
36 * git
37 * autoconf (set AUTOCONF_VERSION environment variable)
38 * automake (set AUTOMAKE_VERSION environment variable)
39
40 Get the source code, change directory and compile:
41
42     git clone https://github.com/relan/exfat.git
43     cd exfat
44     autoreconf --install
45     ./configure
46     make
47
48 Then install driver and utilities (from root):
49
50     make install
51
52 You can remove them using this command (from root):
53
54     make uninstall
55
56 Mounting
57 --------
58
59 Modern GNU/Linux distributions (with [util-linux][12] 2.18 or later) will mount exFAT volumes automatically. Anyway, you can mount manually (from root):
60
61     mount.exfat-fuse /dev/spec /mnt/exfat
62
63 where /dev/spec is the [device file][13], /mnt/exfat is a mountpoint.
64
65 Feedback
66 --------
67
68 If you have any questions, issues, suggestions, bug reports, etc. please create an [issue][3]. Pull requests are also welcome!
69
70 [1]: https://en.wikipedia.org/wiki/ExFAT
71 [2]: https://en.wikipedia.org/wiki/Filesystem_in_Userspace
72 [3]: https://github.com/relan/exfat/issues
73 [4]: https://www.git-scm.com/
74 [5]: https://www.gnu.org/software/autoconf/
75 [6]: https://www.gnu.org/software/automake/
76 [7]: http://www.freedesktop.org/wiki/Software/pkg-config/
77 [8]: https://gcc.gnu.org/
78 [9]: https://www.gnu.org/software/make/
79 [10]: https://osxfuse.github.io/
80 [11]: https://en.wikipedia.org/wiki/Xcode
81 [12]: https://www.kernel.org/pub/linux/utils/util-linux/
82 [13]: https://en.wikipedia.org/wiki/Device_file