]> git.proxmox.com Git - mirror_smartmontools-debian.git/blame - README
Correct maintscript syntax
[mirror_smartmontools-debian.git] / README
CommitLineData
832b75ed
GG
1==========================================================
2smartmontools - S.M.A.R.T. utility toolset for Darwin/Mac
3OSX, FreeBSD, Linux, NetBSD, OpenBSD, Solaris, and Windows.
4==========================================================
5
d2e702cf 6$Id: README 3949 2014-07-13 17:23:40Z chrfranke $
832b75ed
GG
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 ==
2127e193 22Copyright (C) 2002-9 Bruce Allen <smartmontools-support@lists.sourceforge.net>
d2e702cf 23Copyright (C) 2004-14 Christian Franke <smartmontools-support@lists.sourceforge.net>
832b75ed
GG
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
d2e702cf 31example COPYING). If not, see <http://www.gnu.org/licenses/>.
832b75ed
GG
32
33
34== CREDITS ==
35This code was originally developed as a Senior Thesis by Michael Cornwell
36at the Concurrent Systems Laboratory (now part of the Storage Systems
37Research Center), Jack Baskin School of Engineering, University of
38California, Santa Cruz. http://ssrc.soe.ucsc.edu/
39
40
41== OVERVIEW ==
42smartmontools contains utilities that control and monitor storage
43devices using the Self-Monitoring, Analysis and Reporting Technology
d2e702cf
GI
44(SMART) system build into ATA/SATA and SCSI/SAS hard drives and
45solid-state drives. This is used to check the reliability of the
46drive and to predict drive failures.
832b75ed
GG
47
48
49== CONTENTS ==
50The suite contains two utilities:
51
52smartctl is a command line utility designed to perform S.M.A.R.T. tasks
53 such as disk self-checks, and to report the S.M.A.R.T. status of
54 the disk.
55
56smartd is a daemon that periodically monitors S.M.A.R.T. status and
57 reports errors and changes in S.M.A.R.T. attributes to syslog.
58
59
60== OBTAINING SMARTMONTOOLS ==
61
62Source tarballs
63---------------
64
3d17a85c 65http://sourceforge.net/projects/smartmontools/files/
832b75ed 66
2127e193 67SVN
832b75ed
GG
68---
69
3d17a85c 70svn co http://svn.code.sf.net/p/smartmontools/code/trunk/smartmontools smartmontools
832b75ed 71
2127e193 72This will create a subdirectory called smartmontools containing the code.
832b75ed 73
2127e193 74To instead get the 5.38 release:
832b75ed 75
3d17a85c 76svn co http://svn.code.sf.net/p/smartmontools/code/tags/RELEASE_5_38/sm5 smartmontools
832b75ed
GG
77
78You can see what the different tags are by looking at
3d17a85c 79http://sourceforge.net/p/smartmontools/code/HEAD/tree/tags/
832b75ed
GG
80
81== BUILDING/INSTALLING SMARTMONTOOLS ==
82
83Refer to the "INSTALL" file for detailed installation instructions.
84
832b75ed
GG
85== GETTING STARTED ==
86
87To examine SMART data from a disk, try:
88 smartctl -a /dev/hda
89for ATA disks, or
90 smartctl -a /dev/sda
91for SCSI disks. See the manual page 'man smartctl' for more
92information.
93
94To start automatic monitoring of your disks with the smartd daemon,
95try:
96 smartd -d
97to start the daemon in foreground (debug) mode, or
98 smartd
99to start the daemon in background mode. This will log messages to
100SYSLOG. If you would like to get email warning messages, please set
101up the configuration file smartd.conf with the '-m' mail warning
102Directive. See the manual page 'man smartd' for more information.