]> git.proxmox.com Git - mirror_smartmontools-debian.git/blame_incremental - README
fix up kfreebsd-any specification
[mirror_smartmontools-debian.git] / README
... / ...
CommitLineData
1==========================================================
2smartmontools - S.M.A.R.T. utility toolset for Darwin/Mac
3OSX, FreeBSD, Linux, NetBSD, OpenBSD, Solaris, and Windows.
4==========================================================
5
6$Id: README 4063 2015-04-19 17:34:25Z chrfranke $
7
8== HOME ==
9The home for smartmontools is located at:
10
11 http://smartmontools.sourceforge.net/
12
13Please see this web site for updates, documentation, and for submitting
14patches and bug reports.
15
16You will find a mailing list for support and other questions at:
17
18 http://lists.sourceforge.net/lists/listinfo/smartmontools-support
19
20
21== COPYING ==
22Copyright (C) 2002-9 Bruce Allen
23Copyright (C) 2004-15 Christian Franke
24
25This program is free software; you can redistribute it and/or modify it
26under the terms of the GNU General Public License as published by the Free
27Software Foundation; either version 2, or (at your option) any later
28version.
29
30You should have received a copy of the GNU General Public License (for
31example COPYING). If not, see <http://www.gnu.org/licenses/>.
32
33
34== CREDITS ==
35See AUTHORS file.
36
37
38== OVERVIEW ==
39smartmontools contains utilities that control and monitor storage
40devices using the Self-Monitoring, Analysis and Reporting Technology
41(SMART) system build into ATA/SATA and SCSI/SAS hard drives and
42solid-state drives. This is used to check the reliability of the
43drive and to predict drive failures.
44
45
46== CONTENTS ==
47The suite contains two utilities:
48
49smartctl is a command line utility designed to perform S.M.A.R.T. tasks
50 such as disk self-checks, and to report the S.M.A.R.T. status of
51 the disk.
52
53smartd is a daemon that periodically monitors S.M.A.R.T. status and
54 reports errors and changes in S.M.A.R.T. attributes to syslog.
55
56
57== OBTAINING SMARTMONTOOLS ==
58
59Source tarballs
60---------------
61
62http://sourceforge.net/projects/smartmontools/files/
63
64SVN
65---
66
67svn co http://svn.code.sf.net/p/smartmontools/code/trunk/smartmontools smartmontools
68
69This will create a subdirectory called smartmontools containing the code.
70
71To instead get the 5.38 release:
72
73svn co http://svn.code.sf.net/p/smartmontools/code/tags/RELEASE_5_38/sm5 smartmontools
74
75You can see what the different tags are by looking at
76http://sourceforge.net/p/smartmontools/code/HEAD/tree/tags/
77
78== BUILDING/INSTALLING SMARTMONTOOLS ==
79
80Refer to the "INSTALL" file for detailed installation instructions.
81
82== GETTING STARTED ==
83
84To examine SMART data from a disk, try:
85 smartctl -a /dev/sda
86See the manual page 'man smartctl' for more information.
87
88To start automatic monitoring of your disks with the smartd daemon,
89try:
90 smartd -d
91to start the daemon in foreground (debug) mode, or
92 smartd
93to start the daemon in background mode. This will log messages to
94SYSLOG. If you would like to get email warning messages, please set
95up the configuration file smartd.conf with the '-m' mail warning
96Directive. See the manual page 'man smartd' for more information.