6

My external hard disk 2 TB NAS MyBookLive stopped working so I remove the drive and trying to format it in Ubuntu.

When I format, I get an error message as below

Error Formatting Volume:- Error wiping device. Failed to probe the device 'dev/sdc' (udisks-error-quark,0)

Is my disk dead? If not how to format it please? Many thanks

Assessment says - Disk is OK, but one bad sector.

Update:-

I am not worried to recover the data, as I already have the backup. I only wish to format it and bring the hard disk back to life to use it as another extra backup drive.

enter image description here enter image description here enter image description here enter image description here enter image description here enter image description here enter image description here

Jay
  • 161
  • 1
  • 1
  • 5

3 Answers3

2

When the S.M.A.R.T. overall assessment is OK (after running a new self-test), the disk is alive.

I think something else is wrong, for example some data in the partition table or a file system, that makes it corrupted.

Maybe you have connected some other USB device, that creates problems for this hard disk drive. Maybe the USB system of the computer has a problem. Maybe the power supply is not quite enough.

The following links can help you analyze the problem, and let us hope, solve the problem. The links may focus on USB pendrives, but the methods and tools can be used for hard disk drives, SSDs and memory cards too (all mass storage devices).

Can't format my usb drive. I have already tried with mkdosfs and gparted

Repair the partition table and file system of a pendrive

sudodus
  • 47,684
2

In similar cases, I've resolved the issue by reformatting in Windows. When a Mac cannot format, sometimes Windows can. When Windows cannot, sometimes Ubuntu can. Also try another partition manager (in Windows) like Aomei or EaseUs

1

You can try check hard disk for Bad Sectors by command-line in Ubuntu.

Step 1: First, let’s use the fdisk command to find out the hard disk partitions status.

sudo fdisk -l

Step 2: Next, let’s find if there are any Bad Sectors on the hard disk. We shall use badblocks command. Make sure to enter your hard disk info instead of /dev/sda in below command. My test PC has /dev/sda for the hard disk. This command will scan for bad blocks in the hard disk and then export the result to the file badsectors.txt in the ‘scan_result’ directory.

sudo badblocks -v /dev/sda > /scan_result/badsectors.txt

Step 3: Finally we shall use fsck command to tell Ubuntu not to use the bad sectors mentioned in the badsectors.txt file. That way life of the hard disk is increased a bit until you get a new one for replacement.

sudo fsck -l /scan_result/badsectors.txt /dev/sda

After that you can try format again.

Source: Check hard disk for Bad Sectors by command-line in Ubuntu - fosslinux