It's never good news if a hard-disk suddenly starts not reporting on SMART data.
Therefore, please check if your drive have SMART capabilities:
sudo hdparm -I /dev/XdY
(where X=h or s and Y=a, b, c, ... depending on your hardware) and enable it:
sudo smartctl --smart=on /dev/sdb
and install the command-line version of the SMART monitoring:
apt-get install smartmontools
Then perform the command:
smartctl --scan
which should give you the drives you have on the system. Then perform a more in-depth scan on the troubled drive by typing:
smartctl --all /dev/XdY
If the test above doesn't give any conclusive results, run an even more in-depth testing by:
smartctl --all /dev/XdY --test=short
For more information: man smartctl
In your case, with serious errors, please make a back-up first and then go out and buy a new drive!
smartmontoolsand do asmartctl --scan? 3/ doesgksudo gnome-diskschange anything? – Fabby Jan 19 '15 at 00:43smartctl --scan is/dev/sda -d scsi # /dev/sda, SCSI device /dev/sdb -d sat # /dev/sdb [USB Cypress], ATA device. and using gksudo does not affect any thing ... – Hani Majebry Jan 19 '15 at 14:17sdb. they are just two: sda is internal and sdb is external.. – Hani Majebry Jan 19 '15 at 15:21sdait still works? – Fabby Jan 19 '15 at 15:34sda. but for the other one i've tried a commandsudo smartctl --all /dev/sdb -d sat,12 -T permissiveand it told me what it means that your hdd is dying, save your data! so, ASAP i'll buy a new one. thank you @fappy. – Hani Majebry Jan 22 '15 at 16:53