Possible Duplicate:
Advantages/Disadvantages of Partitioning a Drive

Be it an external hard disk or an internal one running an Operating System; is there any benefit to partitioning a hard disk other than to organize files? If there are, please list them.

link|improve this question

the duplicate does list advantages for partitioning an internal hard disk running an OS. Are there any advantages for partitioning an external hard disk? – Thomas Sep 28 '11 at 16:39
1  
In that case, the question is a duplicate of superuser.com/q/98335/494 and superuser.com/q/197501/494 – sblair Sep 28 '11 at 16:45
@sblair ...thanks for them links ... – Thomas Sep 28 '11 at 16:46
feedback

closed as exact duplicate by sblair, Sathya Sep 28 '11 at 16:39

This question covers exactly the same ground as earlier questions on this topic; its answers may be merged with another identical question. See the FAQ for guidance on how to improve it.

3 Answers

up vote 1 down vote accepted

of course,

  1. you can format partitions independently
  2. you can mount, unmount partititions (mostly in Unix environment)
  3. you can use different file systems for different partitions
  4. easier recovery
  5. you can use encryption for certain partition.

It's always good idea to use one partition for OS (system files) another for data etc. In unix/linux systems there is also so called swap partition, it's used for virtual drive (in case when there is not enough RAM)

In case you have large external Hard Drive you can use LVM if you familiar. Or just one huge partition, why not?

link|improve this answer
feedback
  1. Preventing overflowing data from killing your OS.
  2. Using different filesystems for different purposes (e.g. raw for DBMS).
  3. Using different filesystems for multibooting various operating systems.
  4. Ditto VMs.
  5. Hiding things (a little bit).
link|improve this answer
Well yea it should be! It should be surely discussed it a FAQ actually – aibk01 Sep 28 '11 at 16:38
feedback

Partitioning your HD allows you to mount different volumes off the same HD. No benefits other that separating your system files from user files.

link|improve this answer
feedback

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