vote up 0 vote down star

I have bought a new maxtor usb external hard disk (320GB). My friends suggested creating atlest 4 partitions, so that file access will be faster and will be more fault tolerent (even if one partition fails, others remain intact) in their opinion. But I intend to keep it as one big partition (NTFS). My question is, is there any truth in the above statement? Does keeping the entire disk as one partition restrict the usage of the disk anyway?

thanks in advance.

flag
Not programming related. – Ben Alpert Feb 9 at 6:37
No, no truth in it, now ask a programming question or go away :-) – paxdiablo Feb 9 at 6:58
segmentation has very very very few benefits, they only protect against filesystem corruption, and its rather iffy. You'll get annoyed by running out of space faster and not being able to share it much sooner than you'll see corruption. – Kent Fredric Feb 9 at 8:42
I did it for years with ext3/reiserfs. Then I discovered JFS which is bulletproof as a mountain and after it surviving drives being powered off unexpectedly while being used, I just stopped segmenting needlessly. – Kent Fredric Feb 9 at 8:44

closed as not programming related by Brian Rasmussen, Evan Teran, paxdiablo, Jon Skeet Feb 9 at 7:09

2 Answers

vote up 2 vote down check

In my opinion creating a single partition across the entire disk is the best way to go. I fail to see how multiple partitions can speed access when they are on the same physical disk. The heads still have to move to areas that must be read and surely having multiple partitions possibly competing for head movement would actually slow things down. Likewise disk failure will affect the entire physical disk, regardless of how many partitions are on it, not just a single partition.

link|flag
vote up 2 vote down

Not really, no. This might have been true in the days when 2GB drives were "huge," but no longer.

Edit: As to the idea that it is somehow more "fault tolerant" with multiple partitions, that is horribly false: Modern drives have few platters, and even in the case of head failure, you're more likely to lose the whole drive than just one or two partitions.

link|flag

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