Sunday, May 5, 2024
11
rated 0 times [  11] [ 0]  / answers: 1 / hits: 104367  / 1 Year ago, sun, january 1, 2023, 3:05:02

Since a few days ago, my computer freezes whenever I sync my HDD with an external USB3 drive. When the keyboard gets temporarily a bit responsive I am able to switch to another terminal (Ctrl+Alt+F2) and I see the following image repeating continuously. I am on Ubuntu 11 using LuckyBackup.



What is going on? Is my hdd defective? Is it the external one? Something else?



Many thanks!



enter image description here


More From » external-hdd

 Answers
0

You need to check and see if your disks are indeed failing. There are command line tools for monitoring SMART data (which is data that the hd reports about it's own health).



sudo apt-get install smartmontools gsmartcontrol


Gsmartcontrol is a gui version of the same tool, and is very easy to use. Select the disk and run a short or long test in addition to viewing any errors the hd is reporting.



To run via the the command line, do the following



sudo smartctl -i /dev/sda 


Make sure SMART is turned on. If not,



sudo smartctl -s on /dev/sda 


Finally, run



sudo smartctl -a /dev/sda 


or if it's a serial ata drive.



sudo smartctl -a -d ata /dev/sda


See this link for more info about smartmontools.
http://sourceforge.net/apps/trac/smartmontools/wiki/TocDoc


[#40324] Tuesday, January 3, 2023, 1 Year  [reply] [flag answer]
Only authorized users can answer the question. Please sign in first, or register a free account.
rofity

Total Points: 182
Total Questions: 98
Total Answers: 115

Location: Albania
Member since Sat, Jan 7, 2023
1 Year ago
;