Android-x86
Fork
Donation

  • R/O
  • HTTP
  • SSH
  • HTTPS

external-exfat: Resumen Repositorio

external/exfat


Recent Commits RSS

Rev. Tiempo Autor Mensaje
bbf4594 2021-07-06 17:30:40 Chih-Wei Huang pie-x86 Merge branch 'master' of git://github.com/relan/exfat int...
02b793c 2021-04-10 16:46:32 relan Move match_option() to libexfat/utils.c. To be used in a...
0d4be1a 2021-04-10 16:35:13 relan CI: update osx image to macOS 10.15.7 (Xcode 12.2). The ...
02eba9a 2021-04-10 16:30:10 relan CI: define the build matrix explicitly.
66747e2 2020-11-25 02:46:02 dineshks1 CI: add Ubuntu 18.04 (amd64, ppc64le) jobs.
559c61f 2020-05-05 01:07:34 relan Add basic CI. Build and run mkfs and fsck on: * Ubuntu ...
4e6606b 2020-05-05 00:53:09 relan Fix cluster bitmap traversal on big endian machines. We ...
3fc0205 2020-05-05 00:53:09 relan Fix format warning. Found by clang 902.0.39.2.
f15b0e4 2020-05-05 00:53:09 relan Fix more comparisons between signed and unsigned values. ...
00cd408 2020-05-05 00:49:27 noctis Fix file contiguous judgement. Signed-off-by: noctis <no...

Recently edited Tags

Nombre Rev. Tiempo Autor
android-x86-9.0-r1 c165c4b 2019-04-29 13:14:26 Chih-Wei Huang
android-x86-9.0-r2 c165c4b 2019-04-29 13:14:26 Chih-Wei Huang
android-x86-8.1-r1 4a093bc 2017-12-11 01:12:53 Chih-Wei Huang
android-x86-8.1-r2 4a093bc 2017-12-11 01:12:53 Chih-Wei Huang
android-x86-8.1-r3 4a093bc 2017-12-11 01:12:53 Chih-Wei Huang
android-x86-8.1-r4 4a093bc 2017-12-11 01:12:53 Chih-Wei Huang
android-x86-8.1-r5 4a093bc 2017-12-11 01:12:53 Chih-Wei Huang
android-x86-8.1-r6 4a093bc 2017-12-11 01:12:53 Chih-Wei Huang
android-x86-7.1-r1 e6a58fa 2017-12-07 15:34:33 Chih-Wei Huang
android-x86-7.1-r2 e6a58fa 2017-12-07 15:34:33 Chih-Wei Huang
android-x86-7.1-r3 e6a58fa 2017-12-07 15:34:33 Chih-Wei Huang
android-x86-7.1-r4 e6a58fa 2017-12-07 15:34:33 Chih-Wei Huang
android-x86-7.1-r5 e6a58fa 2017-12-07 15:34:33 Chih-Wei Huang
android-x86-6.0-r3 49421bf 2017-03-23 23:52:59 Chih-Wei Huang
android-x86-6.0-r1 94181f2 2016-07-07 04:05:37 Chih-Wei Huang
android-x86-6.0-r2 94181f2 2016-07-07 04:05:37 Chih-Wei Huang

Branches

Nombre Rev. Tiempo Autor Mensaje
pie-x86 bbf4594 2021-07-06 17:30:40 Chih-Wei Huang Merge branch 'master' of gi...
q-x86 c165c4b 2019-04-29 13:14:26 Chih-Wei Huang Android: add mount.exfat T...
r-x86 c165c4b 2019-04-29 13:14:26 Chih-Wei Huang Android: add mount.exfat T...
oreo-x86 4a093bc 2017-12-11 01:12:53 Chih-Wei Huang Don't define modules for re...
nougat-x86 e6a58fa 2017-12-07 15:34:33 Chih-Wei Huang Merge branch 'master' of gi...
marshmallow-x86 49421bf 2017-03-23 23:52:59 Chih-Wei Huang Merge branch 'master' of gi...
lollipop-x86 96fa796 2015-08-21 21:39:31 Chih-Wei Huang Merge branch 'master' of ht...
kitkat-x86 d70ec0c 2014-04-17 18:56:54 Chih-Wei Huang Link libfuse-lite from ntfs...

README.md

About

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:

  • GNU/Linux
  • Mac OS X 10.5 or later
  • FreeBSD

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.

Compiling

To build this project on GNU/Linux you need to install the following packages:

On Mac OS X:

  • autoconf
  • automake
  • pkg-config
  • OSXFUSE
  • Xcode (legacy versions include autotools but their versions are too old)

On OpenBSD:

  • git
  • autoconf (set AUTOCONF_VERSION environment variable)
  • automake (set AUTOMAKE_VERSION environment variable)

Get the source code, change directory and compile:

git clone https://github.com/relan/exfat.git
cd exfat
autoreconf --install
./configure
make

Then install driver and utilities (from root):

make install

You can remove them using this command (from root):

make uninstall

Mounting

Modern GNU/Linux distributions (with util-linux 2.18 or later) will mount exFAT volumes automatically. Anyway, you can mount manually (from root):

mount.exfat-fuse /dev/spec /mnt/exfat

where /dev/spec is the device file, /mnt/exfat is a mountpoint.

Feedback

If you have any questions, issues, suggestions, bug reports, etc. please create an issue. Pull requests are also welcome!

Show on old repository browser