91
28
How to check the health status of a USB stick?
How do I know that a USB is broken beyond repair, or repairable?
91
28
How to check the health status of a USB stick?
How do I know that a USB is broken beyond repair, or repairable?
74
There is no way to query a USB memory stick for SMART-like parameters; I'm not aware of any memory sticks which support doing so even via publicly-available proprietary software. The best you can do is to check that you can successfully read+write to the entire device using badblocks.
https://en.wikipedia.org/wiki/Badblocks
You want to specify one of the write tests, which will wipe all data on the stick; make a backup first.
Find the device by looking at dmesg after plugging in the USB stick; you'll see a device name (most likely sd_, ie sdc, sdd, etc.) and manufacturer information. Make sure you're using the proper device!
If the stick is formatted with a valid filesystem, you may have to unmount it first.
Example syntax, for a USB stick enumerated as /dev/sdz, outputting progress information, with a data-destructive write test and error log written to usbstick.log:
sudo badblocks -w -s -o usbstick.log /dev/sdz
You'll need to repartition and reformat the stick afterwards, assuming it passes; this test will wipe everything on the stick. Any failures indicate a failure of the device's memory controller, or it has run out of spare blocks to remap failed blocks. In that case, no area of the device can be trusted.
2as pointed out in the wikipedia article linked, there's also e2fsck -c that uses badblocks and effectively hides those badblocks from the filesystem, thus avoiding corrupted writes. It should be noted however that, if the disk got new badblocks it's probably getting damaged and new ones may arrise later, meaning its life is shortening and you should consider replacing it. – igorsantos07 – 2014-08-13T04:19:05.213
1I suggest adding the -v flag as well do see the error in the terminal windows. (if you let it run over night for example. The logfile is not that helpful for a quick view how bad it is. – Tilo – 2014-12-17T15:49:54.337
@BeeDee, should we use whole device or just some partition or it does not matter? I mean /dev/sdz or /dev/sdz1? – Mr. P – 2015-02-13T08:45:36.927
1@Pisek you ought to use whole device, because it is the device failing, not just a partition. – Hi-Angel – 2015-04-05T22:03:51.747
Wouldn't it be better to use -b block_size? USB sticks have different internal block size. Would keeping the default 1024 bytes as block size cause a block to be read-written multiple times? Also, I'd use -e parameter because the full process would take a few days for a near-death usb stick. – Tankman六四 – 2015-06-25T23:21:58.513
23badblocks is probably the best option. the comments that say "not worth it" completely miss several cases when this can be very needed (for example, a company might have purchased merchandise flashdrives, and would like to see how badly they got scammed...) – Richlv – 2012-07-25T17:18:34.937
21
Via [ubuntu] Error Check USB Flash Drive, I eventually found this, which could be helpful:
I arrived at the blogs Fight Flash Fraud and SOSFakeFlash, which recomend the software H2testw (see here or here) to test flash memories. I downloaded H2testw and found two issues with it: (1) it is for Windows only, and (2) it is not open source. However, its author was kind enough to include a text file that explains what it does; this page is about my GPLv3 implementation of that algorithm.
My implementation is simple and reliable, and I don't know exactly how F3 compares to H2testw since I've never run H2testw. I call my implementation F3, what is short for Fight Flash Fraud, or Fight Fake Flash.
Addendum by @pbhj: F3 is in the Ubuntu repos. It has two part, f3write writes 1GB files to the device and f3read attempts to read them afterwards. This way capacity and ability to write and effectively read data are tested.
4Is there any advantage to F3 over badblocks? – Zaz – 2014-07-15T13:41:36.417
5 @Zaz As best as I understand it, badblocks isn't designed for detecting fake flash drives and may not report any errors for them.
14
It depends on the failure mode, I suppose. They're cheap for a reason.
As a USB device, watching the bus via device manager in Windows or the output of dmesg in Linux will tell you if the device is even recognized as being plugged in. If it isn't, then either the controller on board or the physical connections are broken.
If the device is recognized as being plugged in, but doesn't get identified as a disk controller (and I don't know how that could happen, but...) then the controller is shot.
If it's recognized as a disk drive, but you can't mount it, you might be able to repair it via fdisk and rewrite the partition table, then make another filesystem.
If you're looking for the equivalent of S.M.A.R.T., then you won't find it. Thumbdrive controllers are cheap. They're commodity storage, and not meant to have the normal failsafes and intelligence that modern drives have.
4
Along the way to today, this thread raised some questions.
-How long will this take (implied by discussion of letting it run overnight).
I'm currently testing a USB 3.0 128G Sandisk using sudo badblocks -w -s -o, it is connected to my USB 3/USBC PCIe card in an older Athlon 64x2. So, USB3 into USB3 on PCIe should be quite fast.
Here is my console command line at 33% completion:
Testing with pattern 0xaa: 33.35% done, 49:47 elapsed. (0/0/0 errors)
and again later:
Testing with pattern 0xaa: 54.10% done, 1:17:04 elapsed. (0/0/0 errors)
Next came this segment:
Reading and comparing: 43.42% done, 2:23:44 elapsed. (0/0/0 errors)
This process repeats with oxaa, then 0x55, 0xff, and finally 0x00.
ArchLinux gave an unqualified statement:
For some devices this will take a couple of days to complete.
N.B.: The testing was started about 8:30 p.m., testing had completed before 8:45 a.m. the next day, completing in about 12 hours for my situation.
-Destructive testing isn't the only method possible.
Wikipedia offered this statement:
badblocks -nvs /dev/sdb
This would check the drive "sdb" in non-destructive read-write mode and display progress by writing out the block numbers as they are checked.
My current distro man page confirms the -n is nondestructive.
-n Use non-destructive read-write mode. By default only a non-
destructive read-only test is done.
And finally that it isn't worth it. statement.
A summarizing statement, based on the situation of billions of memory sites in a flash chip, a failure is a cell that has already been written and erased tens of thousands of times, and is now failing. And when one test shows a cell has failed, remember that each file you added and erased is running up those cycles.
The idea here is that when 1 cell fails, many more cells are also reaching the same failure point. One cell failed today, but you use it normally for a while longer, then 3 more cells fail, then 24 more fail, then 183, and before you know it, the memory array is riddled with bad spots. There are only so many cells that can die before your usable capacity begins to fall, eventually falling rapidly. How will you know more cells are failing? So, posts here are guarding your data by saying once you have a bad cell, you are pretty much done in regards trustworthy storage. Your usage might still give you a few months.
It's your data.
HTH
1
Many failures are either complete or allow one location to support multiple locations. I wrote a little random write read program that uses a prime number for a pseudo-random number generator, for both patterns and addresses. The reads are staggered behind the writes by enough pages to ensure I am not testing ram cache on the system. It is not yet parameterized, just set up for a 64G device on my system with 8G ram. Feel free to criticize, parameterize, make it smarter.
This is a powerful check and faster than doing every byte bottom to top, but is also a great swap generator (rolls almost everything else out). I put swapiness at 1 temporarily and it became slower but more tolerable to other apps. Any tips on how to tune against swapout would also be appreciated:
$ sudo ksh -c 'echo 1 > /proc/sys/vm/swappiness'
$ cat mysrc/test64g.c
#include <stdio.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <unistd.h>
#include <stdlib.h>
int main( int argc, char **argv ){
long long int mask = 0xFFFFFFFF8L ; // 64Gb word
long long int stag = 8413257 ; // 8G / 1021
long long int inc = 1021L ; // prime < 1024
long long int w_addr = 0L ;
long long int r_addr = 0L ;
long long int w_ct = 0L ;
long long int r_ct = 0L ;
long long int w_patt = 0xFEDCBA9876543210L ;
long long int r_patt = 0xFEDCBA9876543210L ;
long long int r_buf ;
int fd, ret ;
if ( argc < 2
|| argv[1] == NULL
|| 0 > ( fd = open( argv[1], O_RDWR ))){
printf( "Fatal: Cannot open file $1 for RW.\n" );
exit( 1 );
}
while ( 1 ){
if ( (off_t)-1 == lseek( fd, w_addr & mask, SEEK_SET )){
printf( "Seek to %llX\n", w_addr & mask );
perror( "Fatal: Seek failed" );
exit( 2 );
}
if ( 8 != ( ret = write( fd, (void*)&w_patt, 8 ))){
printf( "Seek to %llX\n", w_addr & mask );
perror( "Fatal: Write failed" );
exit( 3 );
}
w_ct++ ;
w_addr += inc ;
w_patt += inc ;
if ( ( w_ct - r_ct ) < stag ){
continue ;
}
if ( (off_t)-1 == lseek( fd, r_addr & mask, SEEK_SET )){
printf( "Seek to %llX\n", r_addr & mask );
perror( "Fatal: Seek failed" );
exit( 4 );
}
if ( 8 != ( ret = read( fd, (void*)&r_buf, 8 ))){
printf( "Seek to %llX\n", w_addr & mask );
perror( "Fatal: Read failed" );
exit( 5 );
}
if ( ( ++r_ct & 0XFFFFF ) == 0 ){
printf( "Completed %lld writes, %lld reads.\n", w_ct, r_ct );
}
if ( r_buf != r_patt ){
printf( "Data miscompare on read # %lld at address %llX:\nWas: %llX\nS/B: %llX\n\n", r_ct, r_addr & mask, r_buf, r_patt );
}
r_addr += inc ;
r_patt += inc ;
}
}
Using a inc of a power of 2 like 1024 would allow better checking or dead high address bits, although only checking 8 bytes per hop. – David Pickett – 2015-08-14T20:02:01.953
yeah, this will miss the case of dead high bits. also doing reads and writes in the same pass can miss that, – user313114 – 2015-11-25T20:47:15.717
0
Nobody seems to have mentioned a failure variant I ran into - a more general controller/interface failure.
When you plug a USB device in, it will generate some lines in dmesg. e.g.
[ 3209.991107] usb 2-1.1: New USB device found, idVendor=0951, idProduct=1666
[ 3209.991117] usb 2-1.1: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[ 3209.991123] usb 2-1.1: Product: DataTraveler 3.0
[ 3209.991129] usb 2-1.1: Manufacturer: Kingston
You can then run: lsusb
For more info you can focus on the Vendor ID:Product ID
lsusb -d -v 0951:1666
If your drive has been probed and recognised by the kernel you'll see a new /dev/sd? entry for a block storage device. If it hasn't automounted a filesystem, you can try to access the filesystem structure (as opposed to content):
e.g. mount /dev/sdb1 /mnt
In my case I had a fritzed controller on a new USB stick rather than dying NAND cells on an older one...
dmesg spat this out a while later, amongst many other messages:
[ 3356.078359] usb 2-1.1: new high-speed USB device number 36 using ehci-pci
[ 3361.098287] usb 2-1.1: device descriptor read/8, error -110
[ 3366.217872] usb 2-1.1: device descriptor read/8, error -110
[ 3366.321702] usb 2-1-port1: unable to enumerate USB device
So, for me, once I'd finally got the USB filesystem mounted, half way through an fsck (to walk more NAND cells) it keeled over entirely and never came 'online' again!
Look for Krzysztof Opasiak - Debugging Usually Slightly Broken (USB) Devices and Drivers on UTube
Hope this adds a little more useful background, beyond the dying NAND cells scenario.
I don’t understand. What do mount and fsck have to do with diagnosing the health of the hardware? … … … … … Please do not respond in comments; [edit] your answer to make it clearer and more complete. – G-Man Says 'Reinstate Monica' – 2020-01-20T22:12:15.617
-1
USB drives are pretty rudimentary, there's not a lot that can go wrong on them! Generally, if it shows up as a drive and you can format it then it works. You could try having a look at the Portable version of CrystalDiskInfo as that's a quick lightweight analysing tool. Very few USB sticks report back S.M.A.R.T. info and the like though.
1 For reference, here's the Crystal Disk Info manual in English: http://crystalmark.info/software/CrystalDiskInfo/manual-en/
13Throw it away. Your invested time is more expensive than buying a new one. – mailq – 2012-01-08T23:29:53.917
1I have to agree with @mailq. You can buy a decent 4 GB thumb drive for $2.00 these days. – iglvzx – 2012-01-09T06:24:18.710
18@iglvzx Well the question does not tell, if it is a cheap one, or some +32Gb encrypting fast one... – varesa – 2012-07-26T15:34:53.207