I need to store on an android tablet or phone some big file : about 30G. To be read by an app as a database.
but because of Fat32 simple copy just fail after 2G.
Could I format my external SD under linux ext2 ? is NTFS format recognized ? Do I have a chance to carry such a file on an external SD ?
exFAT
? On which Android version and ROM you are?exFAT
was natively added to Android Pie (not through FUSE): https://android.googlesource.com/platform/system/vold/+/refs/heads/master/fs (kernel must have exFAT support). Some custom ROMs do have NTFS support added to vold through FUSE. If your device doesn't support exFAT, you can try this module which replaces stockvold
binary with a custom one: https://github.com/Magisk-Modules-Repo/vold-posix (requires Magisk root). Also with root access you can manually mount any removable storage withext4
filesystem. – Irfan Latif Jun 18 '19 at 06:56