• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

3TB drives and Server 2008 R2

Chiefcrowe

Diamond Member
Before I buy one, i was wondering, would a 3TB external USB drive work as is in Server 2008 R2 or does anything have to be done beforehand to make it work?
 
Most 3 TB USB drives come pre-formatted in MBR, and use 4k sector emulation (rather than the more frequently seen 512 byte sector emulation). These drives because of their special emulating controller will probably work at full capacity in MBR mode (unlike a regular hard drive), even though this is not a 'normal' configuration.

For optimal reliability - you should reformat the drive in GPT mode.
 
Most 3 TB USB drives come pre-formatted in MBR, and use 4k sector emulation (rather than the more frequently seen 512 byte sector emulation). These drives because of their special emulating controller will probably work at full capacity in MBR mode (unlike a regular hard drive), even though this is not a 'normal' configuration.

For optimal reliability - you should reformat the drive in GPT mode.

If the drive has 4K sectors and uses those for addressing, then maybe but there would be other compatibility issues to deal with. But no amount of emulation software can change how large of a number the 4-bytes of the BIOS partition table entry can hold.
 
Yes in GPT mode:

Code:
DISKPART> list disk

  Disk ###  Status         Size     Free     Dyn  Gpt
  --------  -------------  -------  -------  ---  ---
  Disk 0    Online          136 GB    16 MB        *
  Disk 1    Online         7450 GB      0 B        *
  Disk 2    No Media           0 B      0 B
  Disk 3    No Media           0 B      0 B
  Disk 4    Online         1000 GB  4096 KB
  Disk 5    Online         1700 GB  6144 KB
  Disk 6    Online         1115 GB  6144 KB
  Disk 7    Online         1118 GB      0 B
  Disk 8    Online         1024 GB  4096 KB
 
Back
Top