What is a file system which has r/w on all major OSes

2

Possible Duplicate:
Cross-platform filesystem

What is a file system which has r/w on all OSes like windows, linux and Mac.

Windows comes with FAT and NTFS support and EXT3 support can be added. Never heard about Mac OS Extended on Windows .

Linux comes with EXT3/4 support and FAT and NTFS support can be added. Mac OS Extended w/o journaled has support according to the documentation, but only works as root user.

Mac comes with FAT and Mac OS Extended Support. and experimental NTFS support can be added (which does not work quite well. Knew it first hand) . There is no ext4 support for Mac. Unsure about ext3 .

I would like to know the best file system I could use my external hard disks, so that it works with r/w capabilities on Windows, Linux and Mac or at least Linux and Mac.

Sairam

Posted 2010-02-06T07:21:52.123

Reputation: 232

Question was closed 2010-02-06T19:24:21.480

duplicate: http://superuser.com/questions/45130/cross-platform-filesystem

– quack quixote – 2010-02-06T17:46:28.113

Answers

10

FAT32 would probably be your best bet, compatibility-wise. The only restriction is the ~4GB file size limit. With that aside, NTFS would be the best option if you planned on using file sizes > ~4GB, as r/w support is easily achievable on each of these operating systems and removes the low file size limitation.

  • With Windows, you're already in the clear
  • With Linux, most newer distributions come with the ntfs-3g driver as it is included in kernels 2.6 and above
  • With Mac, you can install ntfs-3g

John T

Posted 2010-02-06T07:21:52.123

Reputation: 149 037

I would want to write files more than 10 Gigs and should also be secure/encryptable. For example: CoreDump's of my application – Sairam – 2010-02-06T07:24:10.780

Added a few more details. – John T – 2010-02-06T07:28:38.513

6and I want a million bucks. :) – Dan McGrath – 2010-02-06T07:28:58.297

You could use truecrypt on the volume: http://www.truecrypt.org/

– John T – 2010-02-06T07:33:15.267

Catacombe is just the combination of NTFS 3G and Mac Fuse. The combination already failed for me helping me clean wipe 2 backup disks – Sairam – 2010-02-06T07:35:39.960

Let me check out my luck with Catacombe . Thanks John. – Sairam – 2010-02-06T08:31:35.477

Let me know how it goes! :) – John T – 2010-02-06T08:37:17.900

If you go for FAT32, beware of problems with rsync (see http://ubuntuforums.org/showthread.php?t=451684 ).

– mrucci – 2010-02-06T12:54:32.727

@mrucci: Good point, even Microsoft's robocopy requires you to pass a special parameter to make it work correctly with FAT32 timestamps. – bk1e – 2010-02-06T16:55:30.823

NTFS 3G on Mac is very slow. It took 20min to copy a 8Gig file and on a Windows 7, it took close to 4min. I am going to stick with HFS and skip using Windows for now. – Sairam – 2010-02-07T09:14:22.167

1

FAT32 is a terrible choice due to its lack of security control and file system limitations

ntfs is generally r/w compliant by default in most linux distros these days im not 100% sure on mac but i know there is a tool called ntfs-3g you can download to do it which also fits the security requirements you were looking for

Chris McGrath

Posted 2010-02-06T07:21:52.123

Reputation: 308