What is best way to analyse the health of a large external 2TB/3TB/4TB USB hard drive with NTFS partitions in Ubuntu quickly?
I want to get some diagnostic data on overall health of the hard drive without doing an in depth scan.
So far I know gnome-disk-utility and gsmartcontrol.
Any recommendations would be greatly appreciated.
smartctl
orgnome-disks
tools you have already mentioned; they read the health of the drive from the circuitry of the drive itself, and not file-system, thus do not care if the drive contains ntfs, ext, btrfs, xfs or any other file system. They also provide quick (historical stats only) so you can use without any scans. – guiverc Sep 23 '18 at 12:32gnome-disks
(part of the packagegnome-disk-utility
) which is normally installed by default with Ubuntu. See this link for more details, S.M.A.R.T. information of HDD and SSD – sudodus Sep 23 '18 at 12:34smartctl
can be very useful when checking drives. Best to check what smartmon tools supports when it comes to external USB drives: https://www.smartmontools.org/wiki/Supported_USB-Devices I did have to blacklistuas
for my external USB drive so that evengnome-disks
could run the smart checks on it. – Terrance Sep 23 '18 at 15:03