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 · amreport(8),
67
68 · amrestore(8),
69
70 · amrmtape(8),
71
72 · amsamba(8),
73
74 · amserverconfig(8),
75
76 · amservice(8),
77
78 · amstar(8),
79
80 · amstatus(8),
81
82 · amsuntar(8),
83
84 · amtape(8),
85
86 · amtapetype(8),
87
88 · amtoc(8),
89
90 · amvault(8),
91
92 · amzfs-sendrecv(8),
93
94 · amzfs-snapshot(8),
95
96 · script-email(8),
97
98 CONFIGURATION FILES
99 · amanda.conf(5),
100
101 · amanda-client.conf(5),
102
103 · disklist(5),
104
105 · tapelist(5),
106
107 DATA FORMATS
108 · amanda-archive-format(5),
109
110 CONCEPTS
111 · amanda-applications(7),
112
113 · amanda-auth(7),
114
115 · amanda-changers(7),
116
117 · amanda-compatibility(7),
118
119 · amanda-devices(7),
120
121 · amanda-interactivity(7),
122
123 · amanda-match(7),
124
125 · amanda-scripts(7),
126
127 · amanda-taperscan(7),
128
130 There are four user-editable files that control the behavior of Amanda.
131
132 The first two are amanda.conf(5) and amanda-client.conf(5), the main
133 configuration files for the server and client, respectively. They
134 contain parameters to customize Amanda for the site.
135
136 Next is the disklist(5) file, which lists hosts and disk partitions to
137 back up.
138
139 Last is the seldom-edited tapelist(5) file, which lists tapes that are
140 currently active. These files are described in more detail in the
141 following sections.
142
143 All configuration files are stored in individual configuration
144 directories, usually under /etc/amanda/. A site will often have more
145 than one configuration. For example, it might have a normal
146 configuration for everyday backups and an archive configuration for
147 infrequent full archival backups. The configuration files would be
148 stored under directories /etc/amanda/normal/ and /etc/amanda/archive/,
149 respectively. Part of the job of an Amanda administrator is to create,
150 populate and maintain these directories.
151
152 Most Amanda applications take a "config" parameter; this is generally
153 the (unqualified) name of the configuration directory, e.g., normal. If
154 the parameter is . (dot), the current directory is used. This feature
155 is present for backward compatibility, but is not commonly used.
156
157 Configuration Override
158 Most commands allow the override of specific configuration options on
159 the command line, using the -o option. This option has the form
160 -oname=value. An optional space is allowed after the -o. Each
161 configuration option should be specified in a separate command-line
162 option.
163
164 For global options, name is simply the name of the option, e.g.,
165
166 amdump -oruntapes=2
167 For options in a named section of the configuration, name has the form
168 SECTION:section_name:name, where SECTION is one of TAPETYPE, DUMPTYPE,
169 HOLDINGDISK, or INTERFACE, and section_name is the name of the
170 tapetype, dumptype, holdingdisk, or interface. Examples:
171
172 amdump -o TAPETYPE:HP-DAT:length=2000m
173 amdump -o DUMPTYPE:no-compress:compress="server fast"
174 amdump -o HOLDINGDISK:hd1:use="-100 mb"
175 amdump -o INTERFACE:local:use="2000 kbps"
176
177 When overriding device properties, one must carefully quote the command
178 line to simulate the syntax of real configuration files. The following
179 example should serve as a guide:
180
181 amdump -o 'device-property="PROPERTY_MAX_VOLUME_USAGE" "100000"'
182
183 Note that configuration overrides are not effective for tape changers,
184 which supply a tapedev based on their own configuration. In order to
185 override tapedev, you must also disable any changer:
186
187 amdump -otapedev=/dev/nst1 -otpchanger=''
188
190 James da Silva <jds@amanda.org>
191
192 Stefan G. Weichinger <sgw@amanda.org>
193
194
195
196Amanda 3.3.3 01/10/2013 AMANDA(8)