1AMANDA(8) System Administration Commands AMANDA(8)
2
3
4
6 amanda - The Open Source Backup Platform
7
9 This manual page gives an overview of the Amanda commands and
10 configuration files for quick reference.
11
12 COMMANDS
13 Here are all the Amanda commands. Each one has its own manual page. See
14 them for all the gory details.
15
16 • amaddclient(8),
17
18 • amadmin(8),
19
20 • amaespipe(8),
21
22 • amarchiver(8),
23
24 • amcheck(8),
25
26 • amcheckdb(8),
27
28 • amcheckdump(8),
29
30 • amcleanup(8),
31
32 • amcrypt-ossl-asym(8),
33
34 • amcrypt-ossl(8),
35
36 • amcrypt(8),
37
38 • amcryptsimple(8),
39
40 • amdevcheck(8),
41
42 • amdump(8),
43
44 • amfetchdump(8),
45
46 • amflush(8),
47
48 • amgetconf(8),
49
50 • amgpgcrypt(8),
51
52 • amgtar(8),
53
54 • amlabel(8),
55
56 • amoverview(8),
57
58 • ampgsql(8),
59
60 • amplot(8),
61
62 • amraw(8),
63
64 • amrecover(8),
65
66 • amreindex(8),
67
68 • amreport(8),
69
70 • amrestore(8),
71
72 • amrmtape(8),
73
74 • amsamba(8),
75
76 • amserverconfig(8),
77
78 • amservice(8),
79
80 • amstar(8),
81
82 • amstatus(8),
83
84 • amsuntar(8),
85
86 • amtape(8),
87
88 • amtapetype(8),
89
90 • amtoc(8),
91
92 • amvault(8),
93
94 • amzfs-sendrecv(8),
95
96 • amzfs-snapshot(8),
97
98 • script-email(8),
99
100 CONFIGURATION FILES
101 • amanda.conf(5),
102
103 • amanda-client.conf(5),
104
105 • amanda-security.conf(5),
106
107 • disklist(5),
108
109 • tapelist(5),
110
111 DATA FORMATS
112 • amanda-archive-format(5),
113
114 • amanda-command-file(5),
115
116 CONCEPTS
117 • amanda-applications(7),
118
119 • amanda-auth(7),
120
121 • amanda-auth-ssl(7),
122
123 • amanda-changers(7),
124
125 • amanda-compatibility(7),
126
127 • amanda-devices(7),
128
129 • amanda-interactivity(7),
130
131 • amanda-match(7),
132
133 • amanda-scripts(7),
134
135 • amanda-taperscan(7),
136
138 There are five user-editable files that control the behavior of Amanda.
139
140 The first two are amanda.conf(5) and amanda-client.conf(5), the main
141 configuration files for the server and client, respectively. They
142 contain parameters to customize Amanda for the site.
143
144 Next is the disklist(5) file, which lists hosts and disk partitions to
145 back up.
146
147 Last is the seldom-edited tapelist(5) file, which lists tapes that are
148 currently active. These files are described in more detail in the
149 following sections.
150
151 All configuration files are stored in individual configuration
152 directories, usually under /etc/amanda/. A site will often have more
153 than one configuration. For example, it might have a normal
154 configuration for everyday backups and an archive configuration for
155 infrequent full archival backups. The configuration files would be
156 stored under directories /etc/amanda/normal/ and /etc/amanda/archive/,
157 respectively. Part of the job of an Amanda administrator is to create,
158 populate and maintain these directories.
159
160 Most Amanda applications take a "config" parameter; this is generally
161 the (unqualified) name of the configuration directory, e.g., normal. If
162 the parameter is . (dot), the current directory is used. This feature
163 is present for backward compatibility, but is not commonly used.
164
165 Configuration Override
166 Most commands allow the override of specific configuration options on
167 the command line, using the -o option. This option has the form
168 -oname=value. An optional space is allowed after the -o. Each
169 configuration option should be specified in a separate command-line
170 option.
171
172 For global options, name is simply the name of the option, e.g.,
173
174 amdump -oruntapes=2
175 For options in a named section of the configuration, name has the form
176 SECTION:section_name:name, where SECTION is one of TAPETYPE, DUMPTYPE,
177 HOLDINGDISK, or INTERFACE, and section_name is the name of the
178 tapetype, dumptype, holdingdisk, or interface. Examples:
179
180 amdump -o TAPETYPE:HP-DAT:length=2000m
181 amdump -o DUMPTYPE:no-compress:compress="server fast"
182 amdump -o HOLDINGDISK:hd1:use="-100 mb"
183 amdump -o INTERFACE:local:use="2000 kbps"
184
185 When overriding device properties, one must carefully quote the command
186 line to simulate the syntax of real configuration files. The following
187 example should serve as a guide:
188
189 amdump -o 'device-property="PROPERTY_MAX_VOLUME_USAGE" "100000"'
190
191 Note that configuration overrides are not effective for tape changers,
192 which supply a tapedev based on their own configuration. In order to
193 override tapedev, you must also disable any changer:
194
195 amdump -otapedev=/dev/nst1 -otpchanger=''
196
198 James da Silva <jds@amanda.org>
199
200 Stefan G. Weichinger <sgw@amanda.org>
201
202
203
204Amanda 3.5.4 07/27/2023 AMANDA(8)