0

I have a 2TB USB drive plugged into CentOS 5.5 that will be formatted with ext3 and will only be used for file-level backups.

I've always partitioned my drives but a while ago when I had setup Amazon EBS the docs said to just format the whole device (eg. mkfs /dev/sdf instead of /dev/sdf1) and ext3 would warn you but allow you to do so, which it did.

As I understand it, partitioning in this case will only be necessary if I want to boot from the USB drive which will not be happening and I really want to save those 512 bytes.

Skip or keep the single partition? Why?

Thanks

Rob Olmos
  • 2,220
  • 1
  • 15
  • 25

1 Answers1

5

Use a partition. One day, somebody needs a USB drive fast, take one from a box and think it is empty because there is not even a partition created and all your data is lost.. There will always be an OS which cannot handle filesystems without partitions on hard drives

Even if the chance of this is small, the price is even smaller ;)

krissi
  • 3,317
  • 1
  • 18
  • 22
  • 1
    Plus, many tools will automatically attempt to read a disk's partition table and automatically mount / notify you of what it finds or worse mislead the hapless admin into thinking a paritionless disk is empty. – Mark Wagner Sep 16 '10 at 07:00
  • I was thinking this partition-less (ie. unused) appearance would be a security benefit but I like the perspective of keeping other admins in mind. Thanks – Rob Olmos Nov 02 '10 at 05:02