So I was in the middle of getting annoyed with some Freenas permissions with Docker on a VM when I came across a Youtube video of Wendell saying he as going to make a file server using Fedora and ZFS. Given that Fedora is my distro of choice anyway, I decided to install Fedora instead, then subsequently ‘ZFS on Linux’ (plus I wouldn’t have to run a VM in Freenas anymore, because that sucks). My mind completely blew up when the ZFS pool from Freenas imported with zero issues, and I have all my services except for SMB sharing up and running at this point.
The last bit that I’d like to get set up is SMART monitoring of the storage drives. After a quick search, I see smartmontools is the linux go-to. Looking through the /etc/smartmontools/smartd.conf, I see that what I probably want to do is this:
/dev/sdb -a -o on -S on -s (S/…/…/./04|L/…/…/6/05) -m [email protected]
/dev/sdc -a -o on -S on -s (S/…/…/./04|L/…/…/6/05) -m [email protected]
/dev/sdd -a -o on -S on -s (S/…/…/./04|L/…/…/6/05) -m [email protected]
and comment out the line
DEVICESCAN -H -m root -M exec /usr/libexec/smartmontools/smartdnotify -n standby,10,q
and then switch on the daemon. All three are WD Red SATA drives.
Is that it? If anyone has any input, it’d be very welcome.