Hardware HDD format error.

river4ever

river4ever
Joined
Jun 2, 2016
Messages
2,094
Reaction score
2,054
Location
El Monumental
Having issue formatting HDD.
I've formatted many HDD but this one is giving me problems.
Currently it is NTFS on 2TB (2.0)

After 15 mins into format it stops and says "bad disk"
Im using the same formatting tool as I've always used without issues.
Is there away to fix this?
Im trying to format it to "EXT4"
 
You could see if the manufacturer has a diagnostic tool for it. It might not fix it but it could tell you what's went wrong.
 
if you're trying to format it to ext4 I'm assuming you have a linux distro. try formatting using the linux terminal.

-use the command lsblk to list the block devices. you should see your 2tb drive in there, something like /dev/sdx

then use the fdisk command to format the drive.

sudo fdisk /dev/sdx
then do
d (deletes partitions on drive) [enter key]
o (creates new dos label) [enter key]
n (creates new partition) [enter key]
p (creates new primary partition) [enter key]
itll ask you about disk size, just hit enter a couple times to do the whole disk.
finally, hit w to write the changes and hit enter to confirm the write.

then use the mkfs command to format the drive.

sudo mkfs.ext4 -LBLANK /dev/sdx [where x is your 2tb drive (usually b or c)]

and reboot so the system can save changes.

Now you should have your 2tb drive in ext4 :D

if you have issues after that, its probably hardware related and i'd get a replacement
 
Having issue formatting HDD.
I've formatted many HDD but this one is giving me problems.
Currently it is NTFS on 2TB (2.0)

After 15 mins into format it stops and says "bad disk"
Im using the same formatting tool as I've always used without issues.
Is there away to fix this?
Im trying to format it to "EXT4"

Did you try Partition Wizard? You can format to ext2, ext3 and ext4. Which software do you use???
 
Sounds odd. Have you used a utility to do a surface/physical scan for bad sectors? Check the SMART data as well. Hopefully the drive is not damaged.
 
by any chance are you formatting this disk for a set top box or something using a 3rd party tool in windows? if you are using a linux distro did you try what jpcompsol mentioned? if so and that failed let me know what flavor of linux you are using and I will see if I can help. :)
 
Sounds odd. Have you used a utility to do a surface/physical scan for bad sectors? Check the SMART data as well. Hopefully the drive is not damaged.

Seems like another bad HDD - Do you have another PC you can try adding it as a secondary disk and running a quick format?
 
You should check the smart status of your hdd, hdtune free version will tell if you have some unrecoverable errors on your hard drive.
 
try active killdisk it will defo erase anything and then let you set it back up however you want. its free too
 
Back
Top