OSDN Git Service

Make README.md more text-friendly.
[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 * FreeBSD
11 * OpenBSD
12
13 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.
14
15 Compiling
16 ---------
17
18 To build this project under GNU/Linux you need to install the following packages:
19
20 * git
21 * autoconf
22 * automake
23 * pkg-config
24 * fuse-devel (or libfuse-dev)
25 * gcc
26 * make
27
28 Get the source code, change directory and compile:
29
30     git clone https://github.com/relan/exfat.git
31     cd exfat
32     autoreconf --install
33     ./configure --prefix=/usr
34     make
35
36 Then install driver and utilities:
37
38     sudo make install
39
40 Mounting
41 --------
42
43 Modern GNU/Linux distributions will mount exFAT volumes automatically—util-linux-ng 2.18 (was renamed to util-linux in 2.19) is required for this. Anyway, you can mount manually (you will need root privileges):
44
45     sudo mount.exfat-fuse /dev/sdXn /mnt/exfat
46
47 where /dev/sdXn is the partition special file, /mnt/exfat is a mountpoint.
48
49 Feedback
50 --------
51
52 If you have any questions, issues, suggestions, bug reports, etc. please create an [issue][3]. Pull requests are also welcome!
53
54 [1]: http://en.wikipedia.org/wiki/ExFAT
55 [2]: http://en.wikipedia.org/wiki/Filesystem_in_Userspace
56 [3]: https://github.com/relan/exfat/issues