commit | bb48a42dc7709272af7904a3d8841c7f7c9124dd | [log] [tgz] |
---|---|---|
author | relan <relan@users.noreply.github.com> | Mon Jul 27 21:41:20 2015 +0300 |
committer | relan <relan@users.noreply.github.com> | Mon Aug 24 08:43:32 2015 +0300 |
tree | 4dbc43cd3b65fd10afed4189ea9f590a08e3ab8c | |
parent | fcba4d92e7a78feb263f8ee0374ec5277341cdd3 [diff] |
Support musl libc that does not define __GLIBC__ macro. Looks like all libc implementations that support Linux (glibc, uClibc(-ng), musl and even Bionic) provide the requred defines. Consider Linux as a single platform. Signed-off-by: Brendan Heading <brendanheading@gmail.com>
This project aims to provide a full-featured exFAT file system implementation for Unix-like systems. It consists of a FUSE module (fuse-exfat) and a set of utilities (exfat-utils).
Supported operating systems:
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.
To build this project under GNU/Linux you need to install the following packages:
Get the source code, change directory and compile:
git clone https://github.com/relan/exfat.git cd exfat scons
Then install driver and utilities:
sudo scons install
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):
sudo mount.exfat-fuse /dev/sdXn /mnt/exfat
where /dev/sdXn is the partition special file, /mnt/exfat is a mountpoint.
If you have any questions, issues, suggestions, bug reports, etc. please create an issue. Pull requests are also welcome!