]> git.proxmox.com Git - mirror_smartmontools-debian.git/blame - README
import smartmontools 7.0
[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
ff28b140 6$Id: README 4760 2018-08-19 18:45:53Z chrfranke $
832b75ed
GG
7
8== HOME ==
9The home for smartmontools is located at:
10
a86ec89e 11 http://www.smartmontools.org/
832b75ed
GG
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
f9e10201 18 https://listi.jpberlin.de/mailman/listinfo/smartmontools-support
832b75ed
GG
19
20
21== COPYING ==
a86ec89e 22Copyright (C) 2002-9 Bruce Allen
ff28b140 23Copyright (C) 2004-18 Christian Franke
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 32
ff28b140
TL
33SPDX-License-Identifier: GPL-2.0-or-later
34
832b75ed
GG
35
36== CREDITS ==
a86ec89e 37See AUTHORS file.
832b75ed
GG
38
39
40== OVERVIEW ==
41smartmontools contains utilities that control and monitor storage
42devices using the Self-Monitoring, Analysis and Reporting Technology
d2e702cf
GI
43(SMART) system build into ATA/SATA and SCSI/SAS hard drives and
44solid-state drives. This is used to check the reliability of the
45drive and to predict drive failures.
832b75ed
GG
46
47
48== CONTENTS ==
49The suite contains two utilities:
50
51smartctl is a command line utility designed to perform S.M.A.R.T. tasks
52 such as disk self-checks, and to report the S.M.A.R.T. status of
53 the disk.
54
55smartd is a daemon that periodically monitors S.M.A.R.T. status and
56 reports errors and changes in S.M.A.R.T. attributes to syslog.
57
58
59== OBTAINING SMARTMONTOOLS ==
60
61Source tarballs
62---------------
63
3d17a85c 64http://sourceforge.net/projects/smartmontools/files/
832b75ed 65
2127e193 66SVN
832b75ed
GG
67---
68
3d17a85c 69svn co http://svn.code.sf.net/p/smartmontools/code/trunk/smartmontools smartmontools
832b75ed 70
2127e193 71This will create a subdirectory called smartmontools containing the code.
832b75ed 72
2127e193 73To instead get the 5.38 release:
832b75ed 74
3d17a85c 75svn co http://svn.code.sf.net/p/smartmontools/code/tags/RELEASE_5_38/sm5 smartmontools
832b75ed
GG
76
77You can see what the different tags are by looking at
3d17a85c 78http://sourceforge.net/p/smartmontools/code/HEAD/tree/tags/
832b75ed
GG
79
80== BUILDING/INSTALLING SMARTMONTOOLS ==
81
82Refer to the "INSTALL" file for detailed installation instructions.
83
832b75ed
GG
84== GETTING STARTED ==
85
86To examine SMART data from a disk, try:
832b75ed 87 smartctl -a /dev/sda
a86ec89e 88See the manual page 'man smartctl' for more information.
832b75ed
GG
89
90To start automatic monitoring of your disks with the smartd daemon,
91try:
92 smartd -d
93to start the daemon in foreground (debug) mode, or
94 smartd
95to start the daemon in background mode. This will log messages to
96SYSLOG. If you would like to get email warning messages, please set
97up the configuration file smartd.conf with the '-m' mail warning
98Directive. See the manual page 'man smartd' for more information.