]> git.proxmox.com Git - mirror_smartmontools-debian.git/blame - README
Imported Upstream version 6.1+svn3812
[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
ee38a438 6$Id: README 3727 2012-12-13 17:23:06Z samm2 $
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>
832b75ed
GG
23
24This program is free software; you can redistribute it and/or modify it
25under the terms of the GNU General Public License as published by the Free
26Software Foundation; either version 2, or (at your option) any later
27version.
28
29You should have received a copy of the GNU General Public License (for
ee38a438
GI
30example COPYING); if not, write to the Free Software Foundation, Inc.,
3151 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
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
44(S.M.A.R.T.) system build into ATA and SCSI Hard Drives. This is used
45to check the reliability of the hard drive and to predict drive
46failures. smartmontools Version 5.x is designed to comply to the
47ATA/ATAPI-5 specification (Revision 1). Future releases of
48smartmontools (Versions 6.x and 7.x) will comply with the ATA/ATAPI-6
49and ATA/ATAPI-7 specifications.
50
51This package is meant to be an up-to-date replacement for the
52ucsc-smartsuite and smartsuite packages, and is derived from that
53code.
54
55
56== CONTENTS ==
57The suite contains two utilities:
58
59smartctl is a command line utility designed to perform S.M.A.R.T. tasks
60 such as disk self-checks, and to report the S.M.A.R.T. status of
61 the disk.
62
63smartd is a daemon that periodically monitors S.M.A.R.T. status and
64 reports errors and changes in S.M.A.R.T. attributes to syslog.
65
66
67== OBTAINING SMARTMONTOOLS ==
68
69Source tarballs
70---------------
71
72http://sourceforge.net/project/showfiles.php?group_id=64297
73
2127e193 74SVN
832b75ed
GG
75---
76
2127e193 77svn co https://smartmontools.svn.sourceforge.net/svnroot/smartmontools/trunk/smartmontools smartmontools
832b75ed 78
2127e193 79This will create a subdirectory called smartmontools containing the code.
832b75ed 80
2127e193 81To instead get the 5.38 release:
832b75ed 82
2127e193 83svn co https://smartmontools.svn.sourceforge.net/svnroot/smartmontools/tags/RELEASE_5_38/sm5 smartmontools
832b75ed
GG
84
85You can see what the different tags are by looking at
2127e193 86http://smartmontools.svn.sourceforge.net/viewvc/smartmontools/tags/
832b75ed
GG
87
88== BUILDING/INSTALLING SMARTMONTOOLS ==
89
90Refer to the "INSTALL" file for detailed installation instructions.
91
92See the "WARNINGS" file for reports of hardware where these utilities
93might cause serious problems such as lockups.
94
95== GETTING STARTED ==
96
97To examine SMART data from a disk, try:
98 smartctl -a /dev/hda
99for ATA disks, or
100 smartctl -a /dev/sda
101for SCSI disks. See the manual page 'man smartctl' for more
102information.
103
104To start automatic monitoring of your disks with the smartd daemon,
105try:
106 smartd -d
107to start the daemon in foreground (debug) mode, or
108 smartd
109to start the daemon in background mode. This will log messages to
110SYSLOG. If you would like to get email warning messages, please set
111up the configuration file smartd.conf with the '-m' mail warning
112Directive. See the manual page 'man smartd' for more information.