Cross-platform usable filesystem with large file support

37

9

What is the best filesystem to use cross-platform (Linux, Windows, OS X) which supports disk sizes of at least 2TB and file sizes >4GB?

I'm planning to use it on a USB drive on different computers.

Are there any filesystems that can be used on all the named OSes without installing additional drivers?

Zulakis

Posted 2013-05-19T19:20:00.713

Reputation: 1 316

More about the environment? Read write? One machine? Network shares? – Austin T French – 2013-05-19T19:22:10.543

read/write support would be great. used as a usb-drive on different computers. – Zulakis – 2013-05-19T19:22:53.490

3This question is not not constructive. There is a specific set of criteria, and filesystems support these criteria or don't. There's not an infinite set of answers either, and every answer will be backed up by facts, not opinion. – slhck – 2013-05-19T21:47:02.853

Answers

42

Look at this chart on Wikipedia and scroll down to the last table for "Supporting operating systems." This lists OS support by file system.

As you can see, there is no file system that is covers all OS platforms, the closest being FAT16. FAT32 is a close 2nd, requiring 3rd party driver support for z/OS.

Since you require read/write support and large files and file systems, the best option would be NTFS. Obviously, Windows OSs support NTFS. Modern Linux kernels (2.2+) can read and write NTFS natively. OS X supports reading NTFS natively and writing with NTFS-3G.

Keltari

Posted 2013-05-19T19:20:00.713

Reputation: 57 019

7I would avoid exFAT. There's no backup of the file allocation table like FAT32 has; with the lack of journaling, one unsafe removal, or system freeze, during a write operation is going to hose the entire drive. – joe – 2014-09-16T15:50:43.540

3+1 for the link to NFTS-3G. I didn't know there was an open-source NTFS driver for Mac OS. – spongessuck – 2016-03-14T19:38:22.597

2

@keltari while Linux 2.2+ has limited write support - see Linux can reliably read NTFS and can overwrite existing files, but the Linux kernel can’t write new files to an NTFS partition., an excerpt from this answer, which also explains how linux reads / writes to NTFS in modern times. it's definitely not the kernel driver though.

– stonecrusher – 2016-10-21T19:25:23.270

1NTFS is supported by linux, but performance is very poor. – RedEyed – 2019-01-05T13:44:24.717

I'm tempted to point out that that table omits AmigaOS :) (That said, I'm giving you +1) – a CVn – 2013-05-20T12:26:00.827

2I'd like to propose exFAT as another solid option, mainly because getting Linux to read/write exFAT is easier than getting OSX to read/write NTFS. – Joel E Salas – 2013-06-08T02:19:55.153

@JoelESalas Agreed. exFAT works out of the box with OSX and Windows, and on Ubuntu all that is required is a simple sudo apt-get -y install exfat-utils exfat-fuse – user72923 – 2014-06-15T20:03:10.237