LinuxQuestions.org
Visit Jeremy's Blog.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Newbie
User Name
Password
Linux - Newbie This Linux forum is for members that are new to Linux.
Just starting out and have a question? If it is not in the man pages or the how-to's this is the place!

Notices


Reply
  Search this Thread
Old 04-01-2020, 11:25 AM   #1
Pironman
LQ Newbie
 
Registered: Mar 2020
Posts: 28

Rep: Reputation: Disabled
Analyze hard disk: broken or not?


Good morning, with the utlity Disk, I can see that my hard drive have 104 broken sectors, as you can see in the attached file.
So, I run:

Code:
sudo badblocks -sv /dev/sda
And it say no sector broken.
Who tells lies?

Thanks
Attached Thumbnails
Click image for larger version

Name:	Schermata del 2020-04-01 18-21-56.png
Views:	28
Size:	73.4 KB
ID:	32899  
 
Old 04-01-2020, 12:51 PM   #2
rknichols
Senior Member
 
Registered: Aug 2009
Distribution: Rocky Linux
Posts: 4,777

Rep: Reputation: 2212Reputation: 2212Reputation: 2212Reputation: 2212Reputation: 2212Reputation: 2212Reputation: 2212Reputation: 2212Reputation: 2212Reputation: 2212Reputation: 2212
No lies. There are 104 bad sectors that the drive has reallocated to spare sectors. The bad sectors are thus hidden from the OS, and badblocks will not see them.

Having 104 reallocated sectors is not a good sign. When a drive has more than just a few reallocated sectors, it is common for more sectors to fail, and for that to occur at an accelerating pace. New bad sectors will be visible to the OS and cause I/O errors until those sectors are reallocated. That reallocation can occur the next time the OS writes to those sectors. S.M.A.R.T will not declare the drive to have failed until it has used almost all of its spare sectors, but that is far beyond the point at which most people would find the drive unusable because of I/O errors.
 
1 members found this post helpful.
Old 04-01-2020, 01:11 PM   #3
Pironman
LQ Newbie
 
Registered: Mar 2020
Posts: 28

Original Poster
Rep: Reputation: Disabled
So, it's better to change it?
I bought it just 2 years ago, why so many broken sectors in just 2 years?
 
Old 04-01-2020, 01:20 PM   #4
remmilou
Member
 
Registered: Mar 2010
Location: Amsterdam
Distribution: MX Linux (21)/ XFCE
Posts: 211

Rep: Reputation: 69
Quote:
Originally Posted by Pironman View Post
So, it's better to change it?
I bought it just 2 years ago, why so many broken sectors in just 2 years?
I've been working for over 16 years is computer forensics en we had hundreds and hundreds of (brand new) disks of all brands and sizes.
I've seen lots of faulty disks in less then a year. Sometimes a bad batch, sometimes completely random.
On the other hand I've seen drives working good after 20 years.
It's just the way it is. You have to live with that.
And rknichols is right. It will get worse. Replace it if you love your data. Keep it running if you love experiments.
 
1 members found this post helpful.
Old 04-01-2020, 03:32 PM   #5
Pironman
LQ Newbie
 
Registered: Mar 2020
Posts: 28

Original Poster
Rep: Reputation: Disabled
Thank you.
Another question, more pertinent with this website: Could I see where are these ruined sector? If I had loose data in my home directory, or somewere?
usually, once a week, I make a backup in other two hard drive, using rsync, could this operation have ruined the hard drive? and, could I made another backup right now, or this operation will damage more the hard drive?
Thanks
 
Old 04-01-2020, 04:07 PM   #6
sevendogsbsd
Senior Member
 
Registered: Sep 2017
Distribution: FreeBSD
Posts: 2,252

Rep: Reputation: 1011Reputation: 1011Reputation: 1011Reputation: 1011Reputation: 1011Reputation: 1011Reputation: 1011Reputation: 1011
Rsync will not ruin the hard drive. The failure is due to hardware. Good thing you are making backups, many people do not do that.
 
Old 04-01-2020, 09:17 PM   #7
rknichols
Senior Member
 
Registered: Aug 2009
Distribution: Rocky Linux
Posts: 4,777

Rep: Reputation: 2212Reputation: 2212Reputation: 2212Reputation: 2212Reputation: 2212Reputation: 2212Reputation: 2212Reputation: 2212Reputation: 2212Reputation: 2212Reputation: 2212
Quote:
Originally Posted by Pironman View Post
Another question, more pertinent with this website: Could I see where are these ruined sector? If I had loose data in my home directory, or somewere?
You cannot see which sectors were reallocated. However, the drive reallocates a bad sector only when that sector is being written to. At that point, the previous contents are irrelevant -- they were being overwritten anyway. Sectors that are found to be bad but are not yet reallocted are called "Current Pending Sectors" in the "smartctl -A" output. Those sectors will cause an I/O error when read, and will also cause the drive's self test to fail at that location.

If you wish, you can post the output from "smartctl -A /dev/sda" for evaluation. Please wrap that in [CODE] ... [/CODE] tags, since it is quite hard to read when the formatting is lost.
 
Old 04-02-2020, 04:47 AM   #8
Soadyheid
Senior Member
 
Registered: Aug 2010
Location: Near Edinburgh, Scotland
Distribution: Cinnamon Mint 20.1 (Laptop) and 20.2 (Desktop)
Posts: 1,672

Rep: Reputation: 486Reputation: 486Reputation: 486Reputation: 486Reputation: 486
104 bad sectors on a 1Tb disk is likely to be an extremely small percentage of the disk. Disks usually have at least two spare cylinders of spare sectors to allow for bad sector reallocation. We're probably talking thousands of spare sectors if not tens of thousands. Hard disks are designed to handle bad blocks.

The number of bad blocks is not the indicator of how bad the disk is, you have to keep monitoring it periodically as it's the rate of increase in registered bad blocks that shows if it's on the way out. Most disks of the flying rust persuasion which I've come across have had some bad blocks but the numbers are generally stable and the disks have spun and been accessed for years.

Play Bonny!


Last edited by Soadyheid; 04-02-2020 at 04:49 AM.
 
1 members found this post helpful.
Old 04-02-2020, 06:09 AM   #9
fatmac
LQ Guru
 
Registered: Sep 2011
Location: Upper Hale, Surrey/Hants Border, UK
Distribution: Mainly Devuan, antiX, & Void, with Tiny Core, Fatdog, & BSD thrown in.
Posts: 5,485

Rep: Reputation: Disabled
Even new disks come with some bad sectors marked out of use.
As above, it is the rate at which they grow that matters.
 
Old 04-05-2020, 09:15 AM   #10
Pironman
LQ Newbie
 
Registered: Mar 2020
Posts: 28

Original Poster
Rep: Reputation: Disabled
one months ago are none. Right now it's again 104, they are not growing.

P.S. I bought a new pc, this one is very old and this is the right opportunity to replace it with a new one.
But I will continue to use this pc for not important things, and I check how much life it has

Last edited by Pironman; 04-05-2020 at 09:18 AM.
 
  


Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
Analyze squid log files for analyze pattern harshaabba Linux - Software 1 10-13-2011 09:21 PM
How to change disk size by editing disk information on the hard disk? xptchina Linux - Virtualization and Cloud 2 12-16-2010 08:12 AM
Now I have a scsi hard disk, two IDE hard disk, i want install linux on scsi hard dis tecpenguin Linux - Server 4 11-10-2007 06:44 AM
analyze disk performance morteni Linux - Software 1 10-24-2004 06:29 AM
Hard Disk question - Making a big hard disk MrAnonym Linux - General 2 09-15-2003 06:08 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - Newbie

All times are GMT -5. The time now is 04:47 AM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration