├── .editorconfig ├── AUTHORS ├── COPYING ├── ChangeLog ├── ChangeLog-5.0-6.0 ├── ChangeLog-6.0-7.0 ├── Doxyfile ├── INSTALL ├── Makefile.am ├── NEWS ├── README ├── TODO ├── aacraid.h ├── atacmdnames.cpp ├── atacmdnames.h ├── atacmds.cpp ├── atacmds.h ├── ataidentify.cpp ├── ataidentify.h ├── ataprint.cpp ├── ataprint.h ├── autogen.sh ├── cciss.cpp ├── cciss.h ├── cissio_freebsd.h ├── configure.ac ├── cppcheck.sh ├── csmisas.h ├── dev_areca.cpp ├── dev_areca.h ├── dev_ata_cmd_set.cpp ├── dev_ata_cmd_set.h ├── dev_intelliprop.cpp ├── dev_interface.cpp ├── dev_interface.h ├── dev_jmb39x_raid.cpp ├── dev_legacy.cpp ├── dev_tunnelled.h ├── do_release ├── drivedb.h ├── examplescripts ├── Example1 ├── Example2 ├── Example3 ├── Example4 ├── Example5 ├── Example6 ├── Example7 ├── Example8 └── README ├── farmcmds.cpp ├── farmcmds.h ├── farmprint.cpp ├── farmprint.h ├── freebsd_nvme_ioctl.h ├── getopt ├── bits │ ├── getopt_core.h │ └── getopt_ext.h ├── getopt.c ├── getopt.h ├── getopt1.c └── getopt_int.h ├── getversion.sh ├── json.cpp ├── json.h ├── knowndrives.cpp ├── knowndrives.h ├── linux_nvme_ioctl.h ├── megaraid.h ├── netbsd_nvme_ioctl.h ├── nvmecmds.cpp ├── nvmecmds.h ├── nvmeprint.cpp ├── nvmeprint.h ├── os_darwin.cpp ├── os_darwin.h ├── os_darwin ├── com.smartmontools.smartd.plist.in └── pkg │ ├── Distribution.in │ ├── PackageInfo.in │ ├── installer │ └── README.html │ └── root │ └── usr │ └── local │ └── sbin │ └── smart-pkg-uninstall ├── os_freebsd.cpp ├── os_freebsd.h ├── os_generic.cpp ├── os_generic.h ├── os_linux.cpp ├── os_linux.h ├── os_netbsd.cpp ├── os_netbsd.h ├── os_openbsd.cpp ├── os_openbsd.h ├── os_os2.cpp ├── os_os2.h ├── os_qnxnto.cpp ├── os_qnxnto.h ├── os_solaris.cpp ├── os_win32.cpp ├── os_win32 ├── daemon_win32.cpp ├── daemon_win32.h ├── default.manifest ├── installer.nsi ├── pe32edit.sh ├── popen.h ├── popen_win32.cpp ├── runcmd.c ├── smartd_mailer.conf.sample.ps1 ├── smartd_mailer.ps1 ├── smartd_warning.cmd ├── syslog.h ├── syslog_win32.cpp ├── syslogevt.mc ├── update-smart-drivedb.ps1.in ├── vc16 │ ├── runcmd.vcxproj │ ├── smartctl.vcxproj │ ├── smartctl.vcxproj.filters │ ├── smartd.vcxproj │ ├── smartd.vcxproj.filters │ ├── smartmontools.sln │ └── wtssendmsg.vcxproj ├── vc17 │ ├── runcmd.vcxproj │ ├── smartctl.vcxproj │ ├── smartctl.vcxproj.filters │ ├── smartd.vcxproj │ ├── smartd.vcxproj.filters │ ├── smartmontools.sln │ └── wtssendmsg.vcxproj ├── versioninfo.rc.in ├── wmiquery.cpp ├── wmiquery.h └── wtssendmsg.c ├── popen_as_ugid.cpp ├── popen_as_ugid.h ├── regex ├── regcomp.c ├── regex.c ├── regex.h ├── regex_internal.c ├── regex_internal.h └── regexec.c ├── scsiata.cpp ├── scsicmds.cpp ├── scsicmds.h ├── scsinvme.cpp ├── scsiprint.cpp ├── scsiprint.h ├── sg_unaligned.h ├── smartctl.8.in ├── smartctl.cpp ├── smartctl.h ├── smartd.8.in ├── smartd.conf ├── smartd.conf.5.in ├── smartd.cpp ├── smartd.cygwin.initd.in ├── smartd.freebsd.initd.in ├── smartd.initd.in ├── smartd.service.in ├── smartd_warning.sh.in ├── sssraid.h ├── static_assert.h ├── update-smart-drivedb.8.in ├── update-smart-drivedb.in ├── utility.cpp └── utility.h /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/smartmontools/HEAD/.editorconfig -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/smartmontools/HEAD/AUTHORS -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/smartmontools/HEAD/COPYING -------------------------------------------------------------------------------- /ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/smartmontools/HEAD/ChangeLog -------------------------------------------------------------------------------- /ChangeLog-5.0-6.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/smartmontools/HEAD/ChangeLog-5.0-6.0 -------------------------------------------------------------------------------- /ChangeLog-6.0-7.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/smartmontools/HEAD/ChangeLog-6.0-7.0 -------------------------------------------------------------------------------- /Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/smartmontools/HEAD/Doxyfile -------------------------------------------------------------------------------- /INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/smartmontools/HEAD/INSTALL -------------------------------------------------------------------------------- /Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/smartmontools/HEAD/Makefile.am -------------------------------------------------------------------------------- /NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/smartmontools/HEAD/NEWS -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/smartmontools/HEAD/README -------------------------------------------------------------------------------- /TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/smartmontools/HEAD/TODO -------------------------------------------------------------------------------- /aacraid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/smartmontools/HEAD/aacraid.h -------------------------------------------------------------------------------- /atacmdnames.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/smartmontools/HEAD/atacmdnames.cpp -------------------------------------------------------------------------------- /atacmdnames.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/smartmontools/HEAD/atacmdnames.h -------------------------------------------------------------------------------- /atacmds.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/smartmontools/HEAD/atacmds.cpp -------------------------------------------------------------------------------- /atacmds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/smartmontools/HEAD/atacmds.h -------------------------------------------------------------------------------- /ataidentify.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/smartmontools/HEAD/ataidentify.cpp -------------------------------------------------------------------------------- /ataidentify.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/smartmontools/HEAD/ataidentify.h -------------------------------------------------------------------------------- /ataprint.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/smartmontools/HEAD/ataprint.cpp -------------------------------------------------------------------------------- /ataprint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/smartmontools/HEAD/ataprint.h -------------------------------------------------------------------------------- /autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/smartmontools/HEAD/autogen.sh -------------------------------------------------------------------------------- /cciss.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/smartmontools/HEAD/cciss.cpp -------------------------------------------------------------------------------- /cciss.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/smartmontools/HEAD/cciss.h -------------------------------------------------------------------------------- /cissio_freebsd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/smartmontools/HEAD/cissio_freebsd.h -------------------------------------------------------------------------------- /configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/smartmontools/HEAD/configure.ac -------------------------------------------------------------------------------- /cppcheck.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/smartmontools/HEAD/cppcheck.sh -------------------------------------------------------------------------------- /csmisas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/smartmontools/HEAD/csmisas.h -------------------------------------------------------------------------------- /dev_areca.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/smartmontools/HEAD/dev_areca.cpp -------------------------------------------------------------------------------- /dev_areca.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/smartmontools/HEAD/dev_areca.h -------------------------------------------------------------------------------- /dev_ata_cmd_set.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/smartmontools/HEAD/dev_ata_cmd_set.cpp -------------------------------------------------------------------------------- /dev_ata_cmd_set.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/smartmontools/HEAD/dev_ata_cmd_set.h -------------------------------------------------------------------------------- /dev_intelliprop.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/smartmontools/HEAD/dev_intelliprop.cpp -------------------------------------------------------------------------------- /dev_interface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/smartmontools/HEAD/dev_interface.cpp -------------------------------------------------------------------------------- /dev_interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/smartmontools/HEAD/dev_interface.h -------------------------------------------------------------------------------- /dev_jmb39x_raid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/smartmontools/HEAD/dev_jmb39x_raid.cpp -------------------------------------------------------------------------------- /dev_legacy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/smartmontools/HEAD/dev_legacy.cpp -------------------------------------------------------------------------------- /dev_tunnelled.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/smartmontools/HEAD/dev_tunnelled.h -------------------------------------------------------------------------------- /do_release: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/smartmontools/HEAD/do_release -------------------------------------------------------------------------------- /drivedb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/smartmontools/HEAD/drivedb.h -------------------------------------------------------------------------------- /examplescripts/Example1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/smartmontools/HEAD/examplescripts/Example1 -------------------------------------------------------------------------------- /examplescripts/Example2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/smartmontools/HEAD/examplescripts/Example2 -------------------------------------------------------------------------------- /examplescripts/Example3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/smartmontools/HEAD/examplescripts/Example3 -------------------------------------------------------------------------------- /examplescripts/Example4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/smartmontools/HEAD/examplescripts/Example4 -------------------------------------------------------------------------------- /examplescripts/Example5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/smartmontools/HEAD/examplescripts/Example5 -------------------------------------------------------------------------------- /examplescripts/Example6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/smartmontools/HEAD/examplescripts/Example6 -------------------------------------------------------------------------------- /examplescripts/Example7: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/smartmontools/HEAD/examplescripts/Example7 -------------------------------------------------------------------------------- /examplescripts/Example8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/smartmontools/HEAD/examplescripts/Example8 -------------------------------------------------------------------------------- /examplescripts/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/smartmontools/HEAD/examplescripts/README -------------------------------------------------------------------------------- /farmcmds.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/smartmontools/HEAD/farmcmds.cpp -------------------------------------------------------------------------------- /farmcmds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/smartmontools/HEAD/farmcmds.h -------------------------------------------------------------------------------- /farmprint.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/smartmontools/HEAD/farmprint.cpp -------------------------------------------------------------------------------- /farmprint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/smartmontools/HEAD/farmprint.h -------------------------------------------------------------------------------- /freebsd_nvme_ioctl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/smartmontools/HEAD/freebsd_nvme_ioctl.h -------------------------------------------------------------------------------- /getopt/bits/getopt_core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/smartmontools/HEAD/getopt/bits/getopt_core.h -------------------------------------------------------------------------------- /getopt/bits/getopt_ext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/smartmontools/HEAD/getopt/bits/getopt_ext.h -------------------------------------------------------------------------------- /getopt/getopt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/smartmontools/HEAD/getopt/getopt.c -------------------------------------------------------------------------------- /getopt/getopt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/smartmontools/HEAD/getopt/getopt.h -------------------------------------------------------------------------------- /getopt/getopt1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/smartmontools/HEAD/getopt/getopt1.c -------------------------------------------------------------------------------- /getopt/getopt_int.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/smartmontools/HEAD/getopt/getopt_int.h -------------------------------------------------------------------------------- /getversion.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/smartmontools/HEAD/getversion.sh -------------------------------------------------------------------------------- /json.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/smartmontools/HEAD/json.cpp -------------------------------------------------------------------------------- /json.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/smartmontools/HEAD/json.h -------------------------------------------------------------------------------- /knowndrives.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/smartmontools/HEAD/knowndrives.cpp -------------------------------------------------------------------------------- /knowndrives.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/smartmontools/HEAD/knowndrives.h -------------------------------------------------------------------------------- /linux_nvme_ioctl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/smartmontools/HEAD/linux_nvme_ioctl.h -------------------------------------------------------------------------------- /megaraid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/smartmontools/HEAD/megaraid.h -------------------------------------------------------------------------------- /netbsd_nvme_ioctl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/smartmontools/HEAD/netbsd_nvme_ioctl.h -------------------------------------------------------------------------------- /nvmecmds.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/smartmontools/HEAD/nvmecmds.cpp -------------------------------------------------------------------------------- /nvmecmds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/smartmontools/HEAD/nvmecmds.h -------------------------------------------------------------------------------- /nvmeprint.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/smartmontools/HEAD/nvmeprint.cpp -------------------------------------------------------------------------------- /nvmeprint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/smartmontools/HEAD/nvmeprint.h -------------------------------------------------------------------------------- /os_darwin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/smartmontools/HEAD/os_darwin.cpp -------------------------------------------------------------------------------- /os_darwin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/smartmontools/HEAD/os_darwin.h -------------------------------------------------------------------------------- /os_darwin/com.smartmontools.smartd.plist.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/smartmontools/HEAD/os_darwin/com.smartmontools.smartd.plist.in -------------------------------------------------------------------------------- /os_darwin/pkg/Distribution.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/smartmontools/HEAD/os_darwin/pkg/Distribution.in -------------------------------------------------------------------------------- /os_darwin/pkg/PackageInfo.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/smartmontools/HEAD/os_darwin/pkg/PackageInfo.in -------------------------------------------------------------------------------- /os_darwin/pkg/installer/README.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/smartmontools/HEAD/os_darwin/pkg/installer/README.html -------------------------------------------------------------------------------- /os_darwin/pkg/root/usr/local/sbin/smart-pkg-uninstall: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/smartmontools/HEAD/os_darwin/pkg/root/usr/local/sbin/smart-pkg-uninstall -------------------------------------------------------------------------------- /os_freebsd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/smartmontools/HEAD/os_freebsd.cpp -------------------------------------------------------------------------------- /os_freebsd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/smartmontools/HEAD/os_freebsd.h -------------------------------------------------------------------------------- /os_generic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/smartmontools/HEAD/os_generic.cpp -------------------------------------------------------------------------------- /os_generic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/smartmontools/HEAD/os_generic.h -------------------------------------------------------------------------------- /os_linux.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/smartmontools/HEAD/os_linux.cpp -------------------------------------------------------------------------------- /os_linux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/smartmontools/HEAD/os_linux.h -------------------------------------------------------------------------------- /os_netbsd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/smartmontools/HEAD/os_netbsd.cpp -------------------------------------------------------------------------------- /os_netbsd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/smartmontools/HEAD/os_netbsd.h -------------------------------------------------------------------------------- /os_openbsd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/smartmontools/HEAD/os_openbsd.cpp -------------------------------------------------------------------------------- /os_openbsd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/smartmontools/HEAD/os_openbsd.h -------------------------------------------------------------------------------- /os_os2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/smartmontools/HEAD/os_os2.cpp -------------------------------------------------------------------------------- /os_os2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/smartmontools/HEAD/os_os2.h -------------------------------------------------------------------------------- /os_qnxnto.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/smartmontools/HEAD/os_qnxnto.cpp -------------------------------------------------------------------------------- /os_qnxnto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/smartmontools/HEAD/os_qnxnto.h -------------------------------------------------------------------------------- /os_solaris.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/smartmontools/HEAD/os_solaris.cpp -------------------------------------------------------------------------------- /os_win32.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/smartmontools/HEAD/os_win32.cpp -------------------------------------------------------------------------------- /os_win32/daemon_win32.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/smartmontools/HEAD/os_win32/daemon_win32.cpp -------------------------------------------------------------------------------- /os_win32/daemon_win32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/smartmontools/HEAD/os_win32/daemon_win32.h -------------------------------------------------------------------------------- /os_win32/default.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/smartmontools/HEAD/os_win32/default.manifest -------------------------------------------------------------------------------- /os_win32/installer.nsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/smartmontools/HEAD/os_win32/installer.nsi -------------------------------------------------------------------------------- /os_win32/pe32edit.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/smartmontools/HEAD/os_win32/pe32edit.sh -------------------------------------------------------------------------------- /os_win32/popen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/smartmontools/HEAD/os_win32/popen.h -------------------------------------------------------------------------------- /os_win32/popen_win32.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/smartmontools/HEAD/os_win32/popen_win32.cpp -------------------------------------------------------------------------------- /os_win32/runcmd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/smartmontools/HEAD/os_win32/runcmd.c -------------------------------------------------------------------------------- /os_win32/smartd_mailer.conf.sample.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/smartmontools/HEAD/os_win32/smartd_mailer.conf.sample.ps1 -------------------------------------------------------------------------------- /os_win32/smartd_mailer.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/smartmontools/HEAD/os_win32/smartd_mailer.ps1 -------------------------------------------------------------------------------- /os_win32/smartd_warning.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/smartmontools/HEAD/os_win32/smartd_warning.cmd -------------------------------------------------------------------------------- /os_win32/syslog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/smartmontools/HEAD/os_win32/syslog.h -------------------------------------------------------------------------------- /os_win32/syslog_win32.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/smartmontools/HEAD/os_win32/syslog_win32.cpp -------------------------------------------------------------------------------- /os_win32/syslogevt.mc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/smartmontools/HEAD/os_win32/syslogevt.mc -------------------------------------------------------------------------------- /os_win32/update-smart-drivedb.ps1.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/smartmontools/HEAD/os_win32/update-smart-drivedb.ps1.in -------------------------------------------------------------------------------- /os_win32/vc16/runcmd.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/smartmontools/HEAD/os_win32/vc16/runcmd.vcxproj -------------------------------------------------------------------------------- /os_win32/vc16/smartctl.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/smartmontools/HEAD/os_win32/vc16/smartctl.vcxproj -------------------------------------------------------------------------------- /os_win32/vc16/smartctl.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/smartmontools/HEAD/os_win32/vc16/smartctl.vcxproj.filters -------------------------------------------------------------------------------- /os_win32/vc16/smartd.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/smartmontools/HEAD/os_win32/vc16/smartd.vcxproj -------------------------------------------------------------------------------- /os_win32/vc16/smartd.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/smartmontools/HEAD/os_win32/vc16/smartd.vcxproj.filters -------------------------------------------------------------------------------- /os_win32/vc16/smartmontools.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/smartmontools/HEAD/os_win32/vc16/smartmontools.sln -------------------------------------------------------------------------------- /os_win32/vc16/wtssendmsg.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/smartmontools/HEAD/os_win32/vc16/wtssendmsg.vcxproj -------------------------------------------------------------------------------- /os_win32/vc17/runcmd.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/smartmontools/HEAD/os_win32/vc17/runcmd.vcxproj -------------------------------------------------------------------------------- /os_win32/vc17/smartctl.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/smartmontools/HEAD/os_win32/vc17/smartctl.vcxproj -------------------------------------------------------------------------------- /os_win32/vc17/smartctl.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/smartmontools/HEAD/os_win32/vc17/smartctl.vcxproj.filters -------------------------------------------------------------------------------- /os_win32/vc17/smartd.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/smartmontools/HEAD/os_win32/vc17/smartd.vcxproj -------------------------------------------------------------------------------- /os_win32/vc17/smartd.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/smartmontools/HEAD/os_win32/vc17/smartd.vcxproj.filters -------------------------------------------------------------------------------- /os_win32/vc17/smartmontools.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/smartmontools/HEAD/os_win32/vc17/smartmontools.sln -------------------------------------------------------------------------------- /os_win32/vc17/wtssendmsg.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/smartmontools/HEAD/os_win32/vc17/wtssendmsg.vcxproj -------------------------------------------------------------------------------- /os_win32/versioninfo.rc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/smartmontools/HEAD/os_win32/versioninfo.rc.in -------------------------------------------------------------------------------- /os_win32/wmiquery.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/smartmontools/HEAD/os_win32/wmiquery.cpp -------------------------------------------------------------------------------- /os_win32/wmiquery.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/smartmontools/HEAD/os_win32/wmiquery.h -------------------------------------------------------------------------------- /os_win32/wtssendmsg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/smartmontools/HEAD/os_win32/wtssendmsg.c -------------------------------------------------------------------------------- /popen_as_ugid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/smartmontools/HEAD/popen_as_ugid.cpp -------------------------------------------------------------------------------- /popen_as_ugid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/smartmontools/HEAD/popen_as_ugid.h -------------------------------------------------------------------------------- /regex/regcomp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/smartmontools/HEAD/regex/regcomp.c -------------------------------------------------------------------------------- /regex/regex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/smartmontools/HEAD/regex/regex.c -------------------------------------------------------------------------------- /regex/regex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/smartmontools/HEAD/regex/regex.h -------------------------------------------------------------------------------- /regex/regex_internal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/smartmontools/HEAD/regex/regex_internal.c -------------------------------------------------------------------------------- /regex/regex_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/smartmontools/HEAD/regex/regex_internal.h -------------------------------------------------------------------------------- /regex/regexec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/smartmontools/HEAD/regex/regexec.c -------------------------------------------------------------------------------- /scsiata.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/smartmontools/HEAD/scsiata.cpp -------------------------------------------------------------------------------- /scsicmds.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/smartmontools/HEAD/scsicmds.cpp -------------------------------------------------------------------------------- /scsicmds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/smartmontools/HEAD/scsicmds.h -------------------------------------------------------------------------------- /scsinvme.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/smartmontools/HEAD/scsinvme.cpp -------------------------------------------------------------------------------- /scsiprint.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/smartmontools/HEAD/scsiprint.cpp -------------------------------------------------------------------------------- /scsiprint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/smartmontools/HEAD/scsiprint.h -------------------------------------------------------------------------------- /sg_unaligned.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/smartmontools/HEAD/sg_unaligned.h -------------------------------------------------------------------------------- /smartctl.8.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/smartmontools/HEAD/smartctl.8.in -------------------------------------------------------------------------------- /smartctl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/smartmontools/HEAD/smartctl.cpp -------------------------------------------------------------------------------- /smartctl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/smartmontools/HEAD/smartctl.h -------------------------------------------------------------------------------- /smartd.8.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/smartmontools/HEAD/smartd.8.in -------------------------------------------------------------------------------- /smartd.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/smartmontools/HEAD/smartd.conf -------------------------------------------------------------------------------- /smartd.conf.5.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/smartmontools/HEAD/smartd.conf.5.in -------------------------------------------------------------------------------- /smartd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/smartmontools/HEAD/smartd.cpp -------------------------------------------------------------------------------- /smartd.cygwin.initd.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/smartmontools/HEAD/smartd.cygwin.initd.in -------------------------------------------------------------------------------- /smartd.freebsd.initd.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/smartmontools/HEAD/smartd.freebsd.initd.in -------------------------------------------------------------------------------- /smartd.initd.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/smartmontools/HEAD/smartd.initd.in -------------------------------------------------------------------------------- /smartd.service.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/smartmontools/HEAD/smartd.service.in -------------------------------------------------------------------------------- /smartd_warning.sh.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/smartmontools/HEAD/smartd_warning.sh.in -------------------------------------------------------------------------------- /sssraid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/smartmontools/HEAD/sssraid.h -------------------------------------------------------------------------------- /static_assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/smartmontools/HEAD/static_assert.h -------------------------------------------------------------------------------- /update-smart-drivedb.8.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/smartmontools/HEAD/update-smart-drivedb.8.in -------------------------------------------------------------------------------- /update-smart-drivedb.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/smartmontools/HEAD/update-smart-drivedb.in -------------------------------------------------------------------------------- /utility.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/smartmontools/HEAD/utility.cpp -------------------------------------------------------------------------------- /utility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mirror/smartmontools/HEAD/utility.h --------------------------------------------------------------------------------