I will be buying a 2TB hard drive soon, and would like to use it as media storage. I would like to be able to read/write from both Windows (version 7, 64bit) and Ubuntu Linux, and I need support for files greater than 4GB in size (so I think this rules out FAT32).

I'm using IFS drives at the moment to access my linux ext4 partitions, and I find it unstable. Does this mean NTFS? Is there something else I'm missing?

link|improve this question
feedback

7 Answers

up vote 6 down vote accepted

There are tools for using ext* under windows... but I would recommend NTFS as the *x-driver is quite stable nowadays.

link|improve this answer
What's the *x-driver ? – George Profenza Jan 8 '11 at 12:32
The package is called ntfs-3g. Depending on the Destribution you use you can find it in the repository. Or else: tuxera.com/community/ntfs-3g-download – fakemustache Jan 9 '11 at 6:30
feedback

First, there will be some problems of NTFS if you use it Linux:

  1. NTFS doesn't support file permission mode very well, so you'll lose the executable bit, setuid bit, etc.

  2. The ACL system in NTFS is not so comfortable with Linux, and YOU CAN'T DISABLE IT just like FAT32.

  3. Currently, the performance of NTFS implementation in Linux is a bit of slow. For example, I found it build a Maven project in NTFS is 3 more times slower then ext4.

Personally, I run Windows OS in VirtualBox, and make the virtual disk as a raw NTFS image, (see http://goo.gl/1I6gJ), Since the NTFS image now is in the raw format, rather then .VDI, you can access the NTFS by mount it directly, without power on the VM instance.

By using VirtualBox instead of Dual boots, there are several advantages:

  1. You don't have to convert your Linux partition to NTFS file system, in the VirtualBox, you can use Share Folder to access the host OS's file system. And it's very fast. Map to a drive letter if necessary.

  2. You can work on both OS concurrently, without restart to switch one to another.

  3. Your GRUB loader will never be overwritten by Windows. Windows always overwrite your boot record and never prompt you yes or no.

  4. You will pay more attention to Linux, and then you'll find the Linux way to do most of your work. In fact, I found it's rarely needed to turn on the Windows VM day after day. Because people are lazy to learn new things, if you installed dual systems, and Windows is just enough, why will you bother to boot into another OS?

I found this is the best way to make both Linux and Windows coexist. And now I have built several Windows VM instances for different usages, because I don't install too many softwares in each single VM, they are running fast and I don't feel too much difference then the non-virtual ones.

link|improve this answer
feedback

If you can't find a stable IFS driver then NTFS will be your only easy choice. NTFS is much more stable than it once was under Linux.

I've not used ext4 from Windows, but I've found IFS drivers stable enough for ext2/3 so you could try the older Linux filesystem variants.

link|improve this answer
feedback

Get the drive networked out from your PC. Build a cheap NAS from old h/w.

link|improve this answer
feedback

NTFS is probably the best solution at this point as it offers the best stability between the two operating systems with no additional things to do. NTFS isn't an as-awful filesystem that many believe it to be.

Another option is exFAT, which is natively supported by Windows 7 / Vista SP1 (and an update for all other Window's OSes). There has been a lot of promising work getting exFAT working in Linux distros.

link|improve this answer
exFAT is useless for the op until there are working, stable drivers for his OSes. Right now, only Windows and OS X 10.6 can use exFAT. – afrazier Dec 25 '10 at 2:36
feedback

NTFS would be the best option. Linux nowadays has pretty stable support for NTFS. I have been using all my windows disks from Ubuntu, and I havent faced any issues like data loss or corruption yet.

link|improve this answer
feedback

Thanks to this serverfault question I am know successfully using UDF for that. You only need to select the right options at format time and that's it.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.