15
4
How can I check whether there are any bad sectors on an externally connected USB hard disk drive?
15
4
How can I check whether there are any bad sectors on an externally connected USB hard disk drive?
4
It's sometimes inappropriate to use the automatic sector relocation capabilities of a drive, so the question raised by ohho becomes distinctive:
If there's a defective sector, then you'll either:
– consider this before performing any action that may cause relocation (or remapping or sparing, or whatever you call it).
Whilst SpinRite 6 is not for Macs, a 2003 page for version 5 is enlightening:
Note the section about auto-relocation and the associated risk of dataloss.
SpinRite aside, fast forward a decade from 2003 to 2013:
To the question here …
For Mac – for OS X – I don't know of anything as capable and careful as SpinRite (nothing to disable auto-relocation).
So, as things stand: to verify the sectors of a disk on USB with OS X, we're probably limited to using utilities that may cause relocation. I can't estimate the degree of risk of associated dataloss, but if that risk is acceptable then I should steer first towards:
Hint: what's under related question (1) is more immediately user-friendly.
The OS alone can not use S.M.A.R.T. technologies on drives that are external on buses such as USB 2.0 and FireWire.
Elsewhere there's a wealth of information ( and misunderstanding ;) so I'll focus this part of the answer on just one point:
kasbert / OS-X-SAT-SMART-Driver on GitHub:
… a kernel driver for Mac OS X external USB or FireWire drives. It extends the standard driver behaviour by providing access to drive SMART data. The interface to SMART data is same as with ATA family driver, so most existing applications should work. The driver requires a SAT (SCSI ATA Translation) capable external drive enclosure. …
If you try this KEXT with Lion then – as with any third party kernel extension – proceed with caution.
13
The OS X built in command fsck_hfs
has an option -S
that apparently will check whether there is bad block on a USB hard disk on OS X.
From the official man page:
-S Cause fsck_hfs to scan the entire device looking for I/O errors. It will attempt to map the blocks with errors to names, similar to the -B option.
Example:
fsck_hfs -fy -S /dev/disk3s11
It seems to be doing that when run on partitions without bad blocks but I've yet to check/document what it does when there are bad blocks.
1In addition, we can obtain the available disk paths with diskutil list – Freeman – 2017-09-23T19:42:01.763
Yes. Or df. I prefer it's output for this! – Matthew Elvey – 2018-02-24T03:49:50.977
2
Open the Terminal.app in Applications/Utilities.
Cut and paste this inside to install Brew:
/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
Install e2fsprogs with brew:
brew install e2fsprogs
Type diskutil list
to find your device (/dev/diskX)
Run badblocks
on your device: (replace the X with your device number)
/usr/local/Cellar/e2fsprogs/1.44.3/sbin/badblocks -v /dev/diskX
You might want to adjust with your version number (1.44.3 here) in the line: '/usr/local/Cellar/e2fsprogs/1.44.3/sbin/badblocks -v /dev/diskX' – brunobhr – 2019-06-28T12:57:55.637
On macOS High Sierra 10.13.6: Operation not permitted while trying to determine device size
(with/without sudo) – bonh – 2019-07-01T03:06:24.737
Could it be linked to the SIP protection? http://osxdaily.com/2015/10/05/disable-rootless-system-integrity-protection-mac-os-x/
– brunobhr – 2019-07-01T12:05:16.7500
Depending on the filesystem on the drive you could run
fsck_msdos /dev/disk1s1
This would check an FAT FS. Maybe that's what you want? Possible commands are:
fsck_cs
fsck_exfat
fsck_hfs
fsck_msdos
fsck_udf
1fsck_hfs -S
scans the entire filesystem contents and maps blocks with I/O errors to names. – siefca – 2017-12-26T16:30:40.353
3These commands check (and optionally repair) the volume data structures, they don't scan the disk for readability/writability of the disk surface. – Gordon Davisson – 2012-02-27T15:48:08.850
0
Only way to really know is to write to each sector and read it back to see if you get the same thing back, checking for errors on the way.
badblocks
under Linux does this. badblocks
has a nondestructive read/write test mode.
Under Windows, I believe if you invoke chkdsk
with the /F
, /B
, and /R
options it will test each sector for bad sectors. It is also non-destructive but I'm not sure if it actually writes to each sector to test.
This Superuser answer suggests that SpinRite 6 may also do the same thing but I haven't tested.
possible duplicate of Fix bad blocks on Mac hard disk
– slhck – 2012-02-27T09:48:44.780