GitXplorerGitXplorer
b

diskscan

public
108 stars
29 forks
20 issues

Commits

List of commits on branch master.
Unverified
e925fd02ce9d5a2433558025b92a4fa90cd2815e

Update readme with supported devices

bbaruch committed a year ago
Unverified
b34a95bbcf5b27e0ce9aee64216201f36a3ad0cc

Fix json comma breakages

bbaruch committed a year ago
Unverified
a425f4405b00d77e5283b2651672334a36f74d47

Fix compiler warning

bbaruch committed a year ago
Unverified
1d1edcf0c961017374b1938749973ea1266ee448

Switch travis-ci to trusty env

bbaruch committed 7 years ago
Unverified
6984540eed21b6a2e03a46e67a61f67b583f2004

No need for casts anymore

bbaruch committed 7 years ago
Unverified
f795f0d612cb5f6ea07eb324b4736160b21d5496

Check for termcap.h header file

bbaruch committed 7 years ago

README

The README file for this repository.

DiskScan -- Scan HDD/SSD for failed and near failed sectors

DiskScan is a Unix/Linux tool to scan a block device and check if there are unreadable sectors, in addition it uses read latency times as an assessment for a near failure as sectors that are problematic to read usually entail many retries. This can be used to assess the state of the disk and maybe decide on a replacement in advance to its imminent failure. The disk self test may or may not pick up on such clues depending on the disk vendor decision making logic.

diskscan vs. badblocks

badblocks is intended for a simple task, to find bad blocks in the media. diskscan is trying to say a lot more about the media, specifically it is trying not just to say where is a bad block but also what blocks are already deteriorated but still readable and also give information on the latency of reading each block which should help to give an overall assessment of the disk media.

In essence badblocks looks for fatal issues already happening and diskscan is for upcoming issues that can be fixed.

Also, badblocks is essentially obsolete in this day and age since the disks themselves will reallocate the data and there is no real need to map the bad blocks in the filesystem level anymore.

Supported Drives

This tool is focused on SAS/SATA drives that work through the SCSI interface of the kernel.

SD Cards and NVMe devices are not currently scannable with this tool.

Build

This project is using CMake, on Debian/Ubuntu it is as simple as: apt-get install cmake make libtinfo-dev libncurses5-dev zlib1g-dev python-yaml

For RedHat/SuSe based distros you need to install ninja-build first and then: yum install compat-libtermcap libtermcap-devel cmake python-yaml zlib-devel

A Makefile is provided to avoid learning the ninja commands and do the non-build stuff (install, etc.)

To do the build:

cmake . && make

Install

make install

You can control the DESTDIR when building packages and PREFIX if /usr is not right.

License

diskscan is licensed under the GPL version 3 or later.