I got myself a hard drive that is making funny noises.
I want to check for errors, I want to use smartctl,
This command
[root@defiant ~]# smartctl -V
produces an error:
bash: smartctl: command not found...
yum install smartctl
doesn't work. How do I yum install smartctl?
Find out which package it's contained in:
Then install the package indicated, which should be
smartmontools
.You can find that it's in the
smartmontools
package withand it happens you can install the package directly if you know the full path name to a file in the package, which in this case is:
sudo yum install /usr/sbin/smartctl
I found it out. You don't install smartctl, you do this:
I found this helpful:
https://help.ubuntu.com/community/Smartmontools