Jump to content

Partitioning New 3TB Hard Drive

pancoon
Go to solution Solved by FizzyFantom,

In Windows you can use DiskPart to change the partition table.

This will delete all the data on the drive.

Open and elevated command prompt and run DiskPart:

C:\> Diskpart

 

List you drives:
DISKPART> list disk

 

Make sure to select the right one:
DISKPART> select disk 0

 

Make sure the disk is online:
DISKPART> online disk

 

Clear any readonly settings from the drive:
DISKPART> attributes disk clear readonly

 

Clean the partition table:
DISKPART> clean

 

Convert the drive partition table
DISKPART> convert gpt

 

Then format the partitions you want in Disk Management

OR
Make the partition(s) in DiskPart:
DISKPART> create partition primary

DISKPART> select part 1

DISKPART> format fs=ntfs label="System" unit=512 quick compress

DISKPART> assign letter d

 

I hope this helps. If you need any more help feel free to ask :)

Hi guys, I just got a new 3TB hard drive, but when I went to partition it, Windows seemed to split the Hard Drive. Why is that? Can I combine them. Is there a 2TB Hard Drive max?

http://i.imgur.com/Q0F3InS.png

I also can't partition the other 746 GB drive.

Link to comment
Share on other sites

Link to post
Share on other sites

Hi guys, I just got a new 3TB hard drive, but when I went to partition it, Windows seemed to split the Hard Drive. Why is that? Can I combine them. Is there a 2TB Hard Drive max?

http://i.imgur.com/Q0F3InS.png

When you use MBR, there is such a limit, yes. Use GPT instead.

[Main rig "ToXxXiC":]
CPU: Intel Core i7-4790K | MB: ASUS Maximus VII Formula | RAM: G.Skill TridentX 32GB 2400MHz (DDR-3) | GPU: EVGA GTX980 Hydro Copper | Storage: Samsung 850 Pro 256GB SSD + Samsung 850 EVO 1TB SSD (+NAS) | Sound: OnBoard | PSU: XFX Black Edition Pro 1050W 80+ Gold | Case: Cooler Master Cosmos II | Cooling: Full Custom Watercooling Loop (CPU+GPU+MB) | OS: Windows 7 Professional (64-Bit)

Link to comment
Share on other sites

Link to post
Share on other sites

When you use MBR, there is such a limit, yes. Use GPT instead.

N00b Here, what is MBR and GPT?

Link to comment
Share on other sites

Link to post
Share on other sites

N00b Here, what is MBR and GPT?

Two different methods of partitioning. MBR = Master Boot Record, GPT = GUID Partition Table

GPT is more modern and does not have that limit.

[Main rig "ToXxXiC":]
CPU: Intel Core i7-4790K | MB: ASUS Maximus VII Formula | RAM: G.Skill TridentX 32GB 2400MHz (DDR-3) | GPU: EVGA GTX980 Hydro Copper | Storage: Samsung 850 Pro 256GB SSD + Samsung 850 EVO 1TB SSD (+NAS) | Sound: OnBoard | PSU: XFX Black Edition Pro 1050W 80+ Gold | Case: Cooler Master Cosmos II | Cooling: Full Custom Watercooling Loop (CPU+GPU+MB) | OS: Windows 7 Professional (64-Bit)

Link to comment
Share on other sites

Link to post
Share on other sites

In Windows you can use DiskPart to change the partition table.

This will delete all the data on the drive.

Open and elevated command prompt and run DiskPart:

C:\> Diskpart

 

List you drives:
DISKPART> list disk

 

Make sure to select the right one:
DISKPART> select disk 0

 

Make sure the disk is online:
DISKPART> online disk

 

Clear any readonly settings from the drive:
DISKPART> attributes disk clear readonly

 

Clean the partition table:
DISKPART> clean

 

Convert the drive partition table
DISKPART> convert gpt

 

Then format the partitions you want in Disk Management

OR
Make the partition(s) in DiskPart:
DISKPART> create partition primary

DISKPART> select part 1

DISKPART> format fs=ntfs label="System" unit=512 quick compress

DISKPART> assign letter d

 

I hope this helps. If you need any more help feel free to ask :)

"PSU brands are meaningless, look up the OEM."

Link to comment
Share on other sites

Link to post
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now

×