59af0879cba0c4563a1222c4e238608d11cbdbf8
[BackupPC.git] / doc-src / BackupPC.pod
1 =head1 BackupPC Introduction
2
3 This documentation describes BackupPC version __VERSION__,
4 released on __RELEASEDATE__.
5
6 =head2 Overview
7
8 BackupPC is a high-performance, enterprise-grade system for backing up
9 Linux and WinXX PCs, desktops and laptops to a server's disk.  BackupPC
10 is highly configurable and easy to install and maintain.
11
12 Given the ever decreasing cost of disks and raid systems, it is now
13 practical and cost effective to backup a large number of machines onto a
14 server's local disk or network storage.  For some sites this might be
15 the complete backup solution.  For other sites additional permanent
16 archives could be created by periodically backing up the server to tape.
17
18 Features include:
19
20 =over 4
21
22 =item *
23
24 A clever pooling scheme minimizes disk storage and disk I/O.
25 Identical files across multiple backups of the same or different PC
26 are stored only once (using hard links), resulting in substantial
27 savings in disk storage and disk writes.
28
29 =item *
30
31 Optional compression provides additional reductions in storage
32 (around 40%).  The CPU impact of compression is low since only
33 new files (those not already in the pool) need to be compressed.
34
35 =item *
36
37 A powerful http/cgi user interface allows administrators to view log
38 files, configuration, current status and allows users to initiate and
39 cancel backups and browse and restore files from backups.
40
41 =item *
42
43 No client-side software is needed. On WinXX the standard smb
44 protocol is used to extract backup data. On linux or unix clients,
45 rsync or tar (over ssh/rsh/nfs) is used to extract backup data.
46 Alternatively, rsync can also be used on WinXX (using cygwin),
47 and Samba could be installed on the linux or unix client to
48 provide smb shares).
49
50 =item *
51
52 Flexible restore options.  Single files can be downloaded from
53 any backup directly from the CGI interface.  Zip or Tar archives
54 for selected files or directories from any backup can also be
55 downloaded from the CGI interface.  Finally, direct restore to
56 the client machine (using smb or tar) for selected files or
57 directories is also supported from the CGI interface.
58
59 =item *
60
61 BackupPC supports mobile environments where laptops are only
62 intermittently connected to the network and have dynamic IP addresses
63 (DHCP).  Configuration settings allow machines connected via slower WAN
64 connections (eg: dial up, DSL, cable) to not be backed up, even if they
65 use the same fixed or dynamic IP address as when they are connected
66 directly to the LAN.
67
68 =item *
69
70 Flexible configuration parameters allow multiple backups to be performed
71 in parallel, specification of which shares to backup, which directories
72 to backup or not backup, various schedules for full and incremental
73 backups, schedules for email reminders to users and so on.  Configuration
74 parameters can be set system-wide or also on a per-PC basis.
75
76 =item *
77
78 Users are sent periodic email reminders if their PC has not
79 recently been backed up.  Email content, timing and policies
80 are configurable.
81
82 =item *
83
84 BackupPC is Open Source software hosted by SourceForge.
85
86 =back
87
88 =head2 Backup basics
89
90 =over 4
91
92 =item Full Backup
93
94 A full backup is a complete backup of a share. BackupPC can be configured to
95 do a full backup at a regular interval (often weekly). BackupPC can also
96 be configured to keep a certain number of full backups, and to keep
97 a smaller number of very old full backups.
98
99 =item Incremental Backup
100
101 An incremental backup is a backup of files that have changed (based on their
102 modification time) since the last successful full backup.  For SMB and
103 tar, BackupPC backups all files that have changed since one hour prior to the
104 start of the last successful full backup.  Rsync is more clever: any files
105 who attributes have changed (ie: uid, gid, mtime, modes, size) since the
106 last full are backed up.  Deleted and new files are also detected by
107 Rsync incrementals (SMB and tar are not able to detect deleted files or
108 new files whose modification time is prior to the last full dump.
109
110 BackupPC can also be configured to keep a certain number of incremental
111 backups, and to keep a smaller number of very old incremental backups.
112 (BackupPC does not support multi-level incremental backups, although it
113 would be easy to do so.)
114
115 BackupPC's CGI interface "fills-in" incremental backups based on the 
116 last full backup, giving every backup a "full" appearance.  This makes
117 browsing and restoring backups easier.
118
119 =item Identical Files
120
121 BackupPC pools identical files using hardlinks.  By "identical
122 files" we mean files with identical contents, not necessary the
123 same permissions, ownership or modification time.  Two files might
124 have different permissions, ownership, or modification time but
125 will still be pooled whenever the contents are identical.  This
126 is possible since BackupPC stores the file meta-data (permissions,
127 ownership, and modification time) separately from the file contents.
128
129 =item Backup Policy
130
131 Based on your site's requirements you need to decide what your backup
132 policy is.  BackupPC is not designed to provide exact re-imaging of
133 failed disks.  See L<Limitations|limitations> for more information.
134 However, the addition of tar transport for linux/unix clients, plus
135 full support for special file types and unix attributes in v1.4.0
136 likely means an exact image of a linux/unix file system can be made.
137
138 BackupPC saves backups onto disk. Because of pooling you can relatively
139 economically keep several weeks of old backups. But BackupPC does not
140 provide permanent storage to tape. Other Open Source applications can do
141 this by backing up BackupPC's pool directories to tape.
142
143 At some sites the disk-based backup will be adequate, without a
144 secondary tape backup. This system is robust to any single failure: if a
145 client disk fails or loses files, the BackupPC server can be used to
146 restore files. If the server disk fails, BackupPC can be restarted on a
147 fresh file system, and create new backups from the clients. The chance
148 of the server disk failing can be made very small by spending more money
149 on increasingly better RAID systems.
150
151 At other sites a secondary tape backup will be required. This tape
152 backup can be done perhaps weekly from the BackupPC pool file system.
153
154 One comment: in the US in particular, permanent backups of things like
155 email are becoming strongly discouraged by lawyers because of discovery
156 prior to possible litigation.  Using BackupPC without tape backup allows
157 recent file changes or losses to be restored, but without keeping a
158 history more than a month or two old (although this doesn't avoid the
159 problem of old emails languishing in user's email folders forever).
160
161 =back
162
163 =head2 Resources
164
165 =over 4
166
167 =item BackupPC home page
168
169 The BackupPC Open Source project is hosted on SourceForge.  The
170 home page can be found at:
171
172     http://backuppc.sourceforge.net
173
174 This page has links to the current documentation, the SourceForge
175 project page and general information.
176
177 =item SourceForge project
178
179 The SourceForge project page is at:
180
181     http://sourceforge.net/projects/backuppc
182
183 This page has links to the current releases of BackupPC.
184
185 =item Mail lists
186
187 Two BackupPC mailing lists exist for announcements (backuppc-announce)
188 and reporting information, asking questions, discussing development or
189 any other topic relevant to BackupPC (backuppc-users).
190
191 You are encouraged to subscribe to either the backuppc-announce
192 or backuppc-users mail list on sourceforge.net at either:
193
194     http://lists.sourceforge.net/lists/listinfo/backuppc-announce
195     http://lists.sourceforge.net/lists/listinfo/backuppc-users
196
197 The backuppc-announce list is moderated and is used only for
198 important announcements (eg: new versions).  It is low traffic.
199 You only need to subscribe to one list: backuppc-users also
200 receives any messages on backuppc-announce.
201
202 To post a message to the backuppc-users list, send an email to
203
204     backuppc-users@lists.sourceforge.net
205
206 Do not send subscription requests to this address!
207
208 =item Other Programs of Interest
209
210 If you want to mirror linux or unix files or directories to a remote server
211 you should consider rsync, L<http://rsync.samba.org>.  BackupPC uses
212 rsync as a transport mechanism; if you are already an rsync user you
213 can think of BackupPC as adding efficient storage (compression and
214 pooling) and a convenient user interface to rsync.
215
216 Unison is a utility that can do two-way, interactive, synchronization.
217 See L<http://www.cis.upenn.edu/~bcpierce/unison>.
218
219 Two popular open source packages that do tape backup are
220 Amanda (L<http://www.amanda.org>) and
221 afbackup (L<http://sourceforge.net/projects/afbackup>).
222 Amanda can also backup WinXX machines to tape using samba.
223 These packages can be used as back ends to BackupPC to backup the
224 BackupPC server data to tape.
225
226 =back
227
228 =head2 Road map
229
230 Here are some ideas for new features that might appear in future
231 releases of BackupPC:
232
233 =over 4
234
235 =item *
236
237 Adding hardlink support to rsync.
238
239 =item *
240
241 Adding block and file checksum caching to rsync.  This will significantly
242 increase performance since the server doesn't have to read each file
243 twice to compute the block and file checksums.
244
245 =item *
246
247 Adding a trip wire feature for notification when files below certain
248 directories change.  For example, if you are backing up a DMZ machine,
249 you could request that you get sent email if any files below /bin,
250 /sbin or /usr change.
251
252 =item *
253
254 Allow editing of config parameters via the CGI interface. Users should
255 have permission to edit a subset of the parameters for their clients.
256 Additionally, allow an optional self-service capability so that users
257 can sign up and setup their own clients with no need for IT support.
258
259 =item *
260
261 Add backend SQL support for various BackupPC metadata, including
262 configuration parameters, client lists, and backup and restore
263 information.  At installation time the backend data engine will
264 be specified (eg: MySQL, ascii text etc).
265
266 =item *
267
268 Disconnect the notion of a physical host and a backup client.
269 Currently there is a one-to-one match between physical hosts
270 and backup clients.  Instead, the current notion of a host
271 should be replaced by a backup client.  Each backup client
272 corresponds to a physical host.  A physical host could have
273 several backup clients.  This is useful for backing up
274 different types of data, or backing up different portions
275 of a machine with different frequencies or settings.
276
277 =item *
278
279 Resuming incomplete full backups.  Useful if a machine
280 (eg: laptop) is disconnected from the network during a backup,
281 or if the user manually stops a backup.  This would be supported
282 initially for rsync.  The partial dump would be kept, and be
283 browsable.  When the next dump starts, an incremental against
284 the partial dump would be done to make sure it was up to date,
285 and then the rest of the full dump would be done.
286
287 =item *
288
289 Replacing smbclient with the perl module FileSys::SmbClient.  This
290 gives much more direct control of the smb transfer, allowing
291 incrementals to depend on any attribute change (eg: exist, mtime,
292 file size, uid, gid), and better support for include and exclude.
293 Currently smbclient incrementals only depend upon mtime, so
294 deleted files or renamed files are not detected.  FileSys::SmbClient
295 would also allow resuming of incomplete full backups in the
296 same manner as rsync will.
297
298 =item *
299
300 Support --listed-incremental or --incremental for tar,
301 so that incrementals will depend upon any attribute change (eg: exist,
302 mtime, file size, uid, gid), rather than just mtime.  This will allow
303 tar to be to as capable as FileSys::SmbClient and rsync.
304
305 =item *
306
307 For rysnc (and smb when FileSys::SmbClient is supported, and tar when
308 --listed-incremental is supported) support multi-level incrementals.
309 In fact, since incrementals will now be more "accurate", you could
310 choose to never to full dumps (except the first time), or at a
311 minimum do them infrequently: each incremental would depend upon
312 the last, giving a continuous chain of differential dumps.
313
314 =item *
315
316 Add a backup browsing feature that shows backup history by file.
317 So rather than a single directory view, it would be a table showing
318 the files (down) and the backups (across).  The internal hardlinks
319 encode which files are identical across backups.  You could immediately
320 see which files changed on which backups.
321
322 =item *
323
324 More speculative: Storing binary file deltas (in fact, reverse deltas)
325 for files that have the same name as a previous backup, but that aren't
326 already in the pool. This will save storage for things like mailbox
327 files or documents that change slightly between backups.  Running some
328 benchmarks on a large pool suggests that the potential savings are
329 around 15-20%, which isn't spectacular, and likely not worth the
330 implementation effort. The program xdelta (v1) on SourceForge (see
331 L<http://sourceforge.net/projects/xdelta>) uses an rsync algorithm for
332 doing efficient binary file deltas.  Rather than using an external
333 program, File::RsyncP will eventually get the necessary delta
334 generataion code from rsync.
335
336 =back
337
338 Comments and suggestions are welcome.
339
340 =head2 You can help
341
342 BackupPC is free. I work on BackupPC because I enjoy doing it and I like
343 to contribute to the open source community.
344
345 BackupPC already has more than enough features for my own needs.  The
346 main compensation for continuing to work on BackupPC is knowing that
347 more and more people find it useful.  So feedback is certainly
348 appreciated.  Even negative feedback is helpful, for example "We
349 evaluated BackupPC but didn't use it because it doesn't ...".
350
351 Beyond being a satisfied user and telling other people about it, everyone
352 is encouraged to add links to L<http://backuppc.sourceforge.net> (I'll
353 see then via Google) or otherwise publicize BackupPC.  Unlike the
354 commercial products in this space, I have a zero budget (in both
355 time and money) for marketing, PR and advertising, so it's up to
356 all of you!
357
358 Also, everyone is encouraged to contribute patches, bug reports, feature
359 and design suggestions, code, and documentation corrections or
360 improvements.
361
362 =head1 Installing BackupPC
363
364 =head2 Requirements
365
366 BackupPC requires:
367
368 =over 4
369
370 =item *
371
372 A linux, solaris, or unix based server with a substantial amount of free
373 disk space (see the next section for what that means). The CPU and disk
374 performance on this server will determine how many simultaneous backups
375 you can run. You should be able to run 4-8 simultaneous backups on a
376 moderately configured server.
377
378 When BackupPC starts with an empty pool, all the backup data will be
379 written to the pool on disk. After more backups are done, a higher
380 percentage of incoming files will already be in the pool. BackupPC is
381 able to avoid writing to disk new files that are already in the pool.
382 So over time disk writes will reduce significantly (by perhaps a factor
383 of 20 or more), since eventually 95% or more of incoming backup files
384 are typically in the pool. Disk reads from the pool are still needed to
385 do file compares to verify files are an exact match. So, with a mature
386 pool, if a relatively fast client generates data at say 1MB/sec, and you
387 run 4 simultaneous backups, there will be an average server disk load of
388 about 4MB/sec reads and 0.2MB/sec writes (assuming 95% of the incoming
389 files are in the pool). These rates will be perhaps 40% lower if
390 compression is on.
391
392 =item *
393
394 Perl version 5.6.0 or later. BackupPC has been tested with
395 version 5.6.0 and 5.6.1. If you don't have perl, please see
396 L<http://www.cpan.org>.
397
398 =item *
399
400 Perl modules Compress::Zlib, Archive::Zip and Rsync.  Try "perldoc
401 Compress::Zlib" and "perldoc Archive::Zip" to see if you have these
402 modules.  If not, fetch them from L<http://www.cpan.org> and see the
403 instructions below for how to build and install them.
404
405 The Rsync module is available from L<http://backuppc.sourceforge.net>.
406 You'll need to install the Rsync module if you want to use Rsync as
407 a transport method.
408
409 =item *
410
411 If you are using smb to backup WinXX machines you need smbclient and
412 nmblookup from the samba package.  You will also need nmblookup if
413 you are backing up linux/unix DHCP machines.  See L<http://www.samba.org>.
414 Version >= 2.2.0 of Samba is required (smbclient's tar feature in
415 2.0.8 and prior has bugs for file path lengths around 100 characters
416 and generates bad output when file lengths change during the backup).
417
418 See L<http://www.samba.org> for source and binaries.  It's pretty easy to
419 fetch and compile samba, and just grab smbclient and nmblookup, without
420 doing the installation. Alternatively, L<http://www.samba.org> has binary
421 distributions for most platforms.
422
423 =item *
424
425 If you are using tar to backup linux/unix machines you should have version
426 1.13.7 at a minimum, with version 1.13.20 or higher recommended.  Use
427 "tar --version" to check your version.  Various GNU mirrors have the newest
428 versions of tar, see for example L<http://www.funet.fi/pub/gnu/alpha/gnu/tar>.
429 As of July 2002 the latest versons is 1.13.25.
430
431 =item *
432
433 If you are using rsync to backup linux/unix machines you should have
434 version 2.5.5 on each client machine.  See L<http://rsync.samba.org>.
435 Use "rsync --version" to check your version.
436
437 For BackupPC to use Rsync you will also need to install the perl
438 File::RsyncP module, which is available from
439 L<http://perlrsync.sourceforge.net>.
440 Version 0.20 is required.
441
442 =item *
443
444 The Apache web server, see L<http://www.apache.org>, preferably built
445 with mod_perl support.
446
447 =back
448
449 =head2 How much disk space do I need?
450
451 Here's one real example for an environment that is backing up 65 laptops
452 with compression off. Each full backup averages 3.2GB. Each incremental
453 backup averages about 0.2GB. Storing one full backup and two incremental
454 backups per laptop is around 240GB of raw data. But because of the
455 pooling of identical files, only 87GB is used.  This is without
456 compression.
457
458 Another example, with compression on: backing up 95 laptops, where
459 each backup averages 3.6GB and each incremental averages about 0.3GB.
460 Keeping three weekly full backups, and six incrementals is around
461 1200GB of raw data.  Because of pooling and compression, only 150GB
462 is needed.
463
464 Here's a rule of thumb. Add up the C drive usage of all the machines you
465 want to backup (210GB in the first example above). This is a rough
466 minimum space estimate that should allow a couple of full backups and at
467 least half a dozen incremental backups per machine. If compression is on
468 you can reduce the storage requirements by maybe 30-40%.  Add some margin
469 in case you add more machines or decide to keep more old backups.
470
471 Your actual mileage will depend upon the types of clients, operating
472 systems and applications you have. The more uniform the clients and
473 applications the bigger the benefit from pooling common files.
474
475 For example, the Eudora email tool stores each mail folder in a separate
476 file, and attachments are extracted as separate files. So in the sadly
477 common case of a large attachment emailed to many recipients, Eudora
478 will extract the attachment into a new file. When these machines are
479 backed up, only one copy of the file will be stored on the server, even
480 though the file appears in many different full or incremental backups. In
481 this sense Eudora is a "friendly" application from the point of view of
482 backup storage requirements.
483
484 An example at the other end of the spectrum is Outlook. Everything
485 (email bodies, attachments, calendar, contact lists) is stored in a
486 single file, which often becomes huge. Any change to this file requires
487 a separate copy of the file to be saved during backup. Outlook is even
488 more troublesome, since it keeps this file locked all the time, so it
489 cannot be read by smbclient whenever Outlook is running.  See the
490 L<Limitations|limitations> section for more discussion of this problem.
491
492 =head2 Step 1: Getting BackupPC
493
494 Download the latest version from L<http://backuppc.sourceforge.net>.
495
496 =head2 Step 2: Installing the distribution
497
498 First off, there are three perl modules you should install.
499 These are all optional, but highly recommended:
500
501 =over 4
502
503 =item Compress::Zlib
504
505 To enable compression, you will need to install Compress::Zlib
506 from L<http://www.cpan.org>.
507 You can run "perldoc Compress::Zlib" to see if this module is installed.
508
509 =item Archive::Zip
510
511 To support restore via Zip archives you will need to install
512 Archive::Zip, also from L<http://www.cpan.org>.
513 You can run "perldoc Archive::Zip" to see if this module is installed.
514
515 =item File::RsyncP
516
517 To use rsync and rsyncd with BackupPC you will need to install File::RsyncP.
518 You can run "perldoc File::RsyncP" to see if this module is installed.
519 File::RsyncP is available from L<http://perlrsync.sourceforge.net>.
520 Version 0.20 is required.
521
522 =back
523
524 To build and install these packages, fetch the tar.gz file and
525 then run these commands:
526
527     tar zxvf Archive-Zip-1.01.tar.gz
528     cd Archive-Zip-1.01
529     perl Makefile.PL
530     make
531     make test
532     make install
533
534 The same sequence of commands can be used for each module.
535
536 Now let's move onto BackupPC itself.  After fetching
537 BackupPC-__VERSION__.tar.gz, run these commands as root:
538
539     tar zxf BackupPC-__VERSION__.tar.gz
540     cd BackupPC-__VERSION__
541     perl configure.pl
542
543 You will be prompted for the full paths of various executables, and
544 you will be prompted for the following information:
545
546 =over 4
547
548 =item BackupPC User
549
550 It is best if BackupPC runs as a special user, eg backuppc, that has
551 limited privileges. It is preferred that backuppc belongs to a system
552 administrator group so that sys admin members can browse backuppc files,
553 edit the configuration files and so on. Although configurable, the
554 default settings leave group read permission on pool files, so make
555 sure the BackupPC user's group is chosen restrictively.
556
557 On this installation, this is __BACKUPPCUSER__.
558
559 =item Data Directory
560
561 You need to decide where to put the data directory, below which
562 all the BackupPC data is stored.  This needs to be a big file system.
563
564 On this installation, this is __TOPDIR__.
565
566 =item Install Directory
567
568 You should decide where the BackupPC scripts, libraries and documentation
569 should be installed, eg: /opt/local/BackupPC.
570
571 On this installation, this is __INSTALLDIR__.
572
573 =item CGI bin Directory
574
575 You should decide where the BackupPC CGI script resides.  This will
576 usually below Apache's cgi-bin directory.
577
578 On this installation, this is __CGIDIR__.
579
580 =item Apache image directory
581
582 A directory where BackupPC's images are stored so that Apache can
583 serve them.  This should be somewhere under Apache's DocumentRoot
584 directory.
585
586 =back
587
588 =head2 Step 3: Setting up config.pl
589
590 After running configure.pl, browse through the config file,
591 __INSTALLDIR__/conf/config.pl, and make sure all the default settings
592 are correct. In particular, you will need to decide whether to use
593 smb or tar transport (or whether to set it on a per-PC basis),
594 set the smb share password (if using smb), set the backup policies
595 and modify the email message headers and bodies.
596
597 BackupPC needs to know the smb share user name and password for each PC
598 that uses smb (ie: all the WinXX clients).  The user name is specified
599 in $Conf{SmbShareUserName}. There are four ways to tell BackupPC the smb
600 share password:
601
602 =over 4
603
604 =item *
605
606 As an environment variable BPC_SMB_PASSWD set before BackupPC starts.
607 If you start BackupPC manually the BPC_SMB_PASSWD variable must be set
608 manually first.  For backward compatability for v1.5.0 and prior, the
609 environment variable PASSWD can be used if BPC_SMB_PASSWD is not set.
610 Warning: on some systems it is possible to see environment variables of
611 running processes.
612
613 =item *
614
615 Alternatively the BPC_SMB_PASSWD setting can be included in
616 /etc/init.d/backuppc, in which case you must make sure this file
617 is not world (other) readable.
618
619 =item *
620
621 As a configuration variable $Conf{SmbSharePasswd} in
622 __TOPDIR__/conf/config.pl.  If you put the password
623 here you must make sure this file is not world (other) readable.
624
625 =item *
626
627 As a configuration variable $Conf{SmbSharePasswd} in the per-PC
628 configuration file, __TOPDIR__/pc/$host/config.pl. You will have to
629 use this option if the smb share password is different for each host.
630 If you put the password here you must make sure this file is not
631 world (other) readable.
632
633 =back
634
635 Placement and protection of the smb share password is a possible
636 security risk, so please double-check the file and directory
637 permissions.  In a future version there might be support for
638 encryption of this password, but a private key will still have to
639 be stored in a protected place.  Suggestions are welcome.
640
641 =head2 Step 4: Setting up the hosts file
642
643 The file __TOPDIR__/conf/hosts contains the list of clients to backup.
644 BackupPC reads this file in three cases:
645
646 =over 4
647
648 =item *
649
650 Upon startup.
651
652 =item *
653
654 When BackupPC is sent a HUP (-1) signal.  Assuming you installed the
655 init.d script, you can also do this with "/etc/init.d/backuppc reload".
656
657 =item *
658
659 When the modification time of the hosts file changes.  BackupPC
660 checks the modification time once during each regular wakeup.
661
662 =back
663
664 Whenever you change the hosts file (to add or remove a host) you can
665 either do a kill -HUP BackupPC_pid or simply wait until the next regular
666 wakeup period.
667
668 Each line in the hosts file contains three fields, separated
669 by white space:
670
671 =over 4
672
673 =item Host name
674
675 If this host is a static IP address this must the machine's IP host name
676 (ie: something that can be looked up using nslookup or DNS). If this is
677 a host with a dynamic IP address (ie: DHCP flag is 1) then the host
678 name must be the netbios name of the machine.  The host name should
679 be in lower case.
680
681 =item DHCP flag
682
683 Set to 0 if this host has a static IP address (meaning it can be looked
684 up by name in the DNS).  If the host's IP address is dynamic (eg, it is
685 assigned by DHCP) then set this flag to 1.
686
687 The hosts with dhcp = 1 are backed up as follows.  If you have
688 configured a DHCP address pool ($Conf{DHCPAddressRanges}) then
689 BackupPC will check the NetBIOS name of each machine in the
690 range.  Any hosts that have a valid NetBIOS name (ie: matching
691 an entry in the hosts file) will be backed up.
692
693 =item User name
694
695 This should be the unix login/email name of the user who "owns" or uses
696 this machine. This is the user who will be sent email about this
697 machine, and this user will have permission to stop/start/browse/restore
698 backups for this host.  Leave this blank if no specific person should
699 receive email or be allowed to stop/start/browse/restore backups
700 for this host.  Administrators will still have full permissions.
701
702 =back
703
704 The first non-comment line of the hosts file is special: it contains
705 the names of the columns and should not be edited.
706
707 Here's a simple example of a hosts file:
708
709     host        dhcp    user
710     farside     0       craig
711     larson      1       gary
712
713 The range of DHCP addresses to search is specified in
714 $Conf{DHCPAddressRanges}.
715
716 =head2 Step 5: Client Setup
717
718 Two methods for getting backup data from a client are
719 supported: smb and tar. Smb is the preferred method for WinXX clients
720 and tar is preferred method for linux/unix clients.
721
722 The transfer method is set using the $Conf{XferMethod} configuration
723 setting. If you have a mixed environment (ie: you will use smb for some
724 clients and tar for others), you will need to pick the most common
725 choice for $Conf{XferMethod} for the main config.pl file, and then
726 override it in the per-PC config file for those hosts that will use
727 the other method.  (Or you could run two completely separate instances
728 of BackupPC, with different data directories, one for WinXX and the
729 other for linux/unix, but then common files between the different
730 machine types will duplicated.)
731
732 Here are some brief client setup notes:
733
734 =over 4
735
736 =item WinXX
737
738 The preferred setup for WinXX clients is to set $Conf{XferMethod} to "smb".
739
740 You need to create shares for the data you want to backup.
741 Open "My Computer", right click on the drive (eg: C), and
742 select "Sharing..." (or select "Properties" and select the
743 "Sharing" tab).  In this dialog box you can enable sharing,
744 select the share name and permissions.
745
746 If this machine uses DHCP you will also need to make sure the
747 NetBios name is set.  Go to Control Panel|System|Network Identification
748 (on Win2K) or Control Panel|System|Computer Name (on WinXP).
749 Also, you should go to Control Panel|Network Connections|Local Area
750 Connection|Properties|Internet Protocol (TCP/IP)|Properties|Advanced|WINS
751 and verify that NetBios is not disabled.
752
753 As an alternative to setting $Conf{XferMethod} to "smb" (using
754 smbclient) for WinXX clients, you can use an smb network filesystem (eg:
755 ksmbfs or similar) on your linux/unix server to mount the share,
756 and then set $Conf{XferMethod} to "tar" (use tar on the network
757 mounted file system).
758
759 Also, to make sure that file names with 8-bit characters are correctly
760 transferred by smbclient you should add this to samba's smb.conf file:
761
762     [global]
763         # Accept the windows charset
764         client code page = 850
765         character set = ISO8859-1
766
767 This setting should work for western europe.  
768 See L<http://www.oreilly.com/catalog/samba/chapter/book/ch08_03.html>
769 for more information about settings for other languages.
770
771 =item Linux/Unix
772
773 The preferred setup for linux/unix clients is to set $Conf{XferMethod}
774 to "tar".
775
776 You can use either smb or tar for linux/unix machines. Smb requires that
777 the Samba server (smbd) be run to provide the shares. Since the smb
778 protocol can't represent special files like symbolic links and fifos,
779 tar is the recommended transport method for linux/unix machines.
780 (In fact, by default samba makes symbolic links look like the file or
781 directory that they point to, so you could get an infinite loop if a
782 symbolic link points to the current or parent directory. If you really
783 need to use Samba shares for linux/unix backups you should turn off the
784 "follow symlinks" samba config setting. See the smb.conf manual page.)
785
786 The rest of this section describes the tar setup.
787
788 You must have GNU tar on the client machine.  Use "tar --version"
789 or "gtar --version" to verify.  The version should be at least
790 1.13.7, and 1.13.20 or greater is recommended.
791
792 For linux/unix machines you should no backup "/proc".  This directory
793 contains a variety of files that look like regular files but they are
794 special files that don't need to be backed up (eg: /proc/kcore is a
795 regular file that contains physical memory).  See $Conf{BackupFilesExclude}.
796 It is safe to back up /dev since it contains mostly character-special
797 and block-special files, which are correctly handed by BackupPC
798 (eg: backing up /dev/hda5 just saves the block-special file information,
799 not the contents of the disk).
800
801 Next you should decide whether to run tar over ssh, rsh or nfs. Ssh is
802 the preferred method. Rsh is not secure and therefore not recommended.
803 Nfs will work, but you need to make sure that the BackupPC user (running
804 on the server) has sufficient permissions to read all the files below
805 the nfs mount.
806
807 Ssh allows BackupPC to run as a privileged user on the client (eg:
808 root), since it needs sufficient permissions to read all the backup
809 files. Ssh is setup so that BackupPC on the server (an otherwise low
810 privileged user) can ssh as root on the client, without being prompted
811 for a password. There are two common versions of ssh: v1 and v2. Here
812 are some instructions for one way to setup ssh.  (Check which version
813 of SSH you have by typing "ssh" or "man ssh".)
814
815 =over 4
816
817 =item OpenSSH Instructions
818
819 =over 4
820
821 =item Key generation
822
823 As root on the client machine, use ssh-keygen to generate a
824 public/private key pair, without a pass-phrase:
825
826     ssh-keygen -t rsa -N ''
827
828 This will save the public key in ~/.ssh/id_rsa.pub and the private
829 key in ~/.ssh/id_rsa.
830
831 =item BackupPC setup
832
833 Repeat the above steps for the BackupPC user (__BACKUPPCUSER__) on the server.
834 Make a copy of the public key to make it recognizable, eg:
835
836     ssh-keygen -t rsa -N ''
837     cp ~/.ssh/id_rsa.pub ~/.ssh/BackupPC_id_rsa.pub
838
839 See the ssh and sshd manual pages for extra configuration information.
840
841 =item Key exchange
842
843 To allow BackupPC to ssh to the client as root, you need to place
844 BackupPC's public key into root's authorized list on the client.
845 Append BackupPC's public key (BackupPC_id_rsa.pub) to root's
846 ~/.ssh/authorized_keys2 file on the client:
847
848     touch ~/.ssh/authorized_keys2
849     cat BackupPC_id_rsa.pub >> ~/.ssh/authorized_keys2
850
851 You should edit ~/.ssh/authorized_keys2 and add further specifiers,
852 eg: from, to limit which hosts can login using this key.  For example,
853 if your BackupPC host is called backuppc.my.com, there should be
854 one line in ~/.ssh/authorized_keys2 that looks like:
855
856     from="backuppc.my.com" ssh-rsa [base64 key, eg: ABwBCEAIIALyoqa8....]
857
858 =item Fix permissions
859
860 You will probably need to make sure that all the files
861 in ~/.ssh have no group or other read/write permission:
862
863     chmod -R go-rwx ~/.ssh
864
865 You should do the same thing for the BackupPC user on the server.
866
867 =item Testing
868
869 As the BackupPC user on the server, verify that this command:
870
871     ssh -l root clientHostName whoami
872
873 prints
874
875     root
876
877 You might be prompted the first time to accept the client's host key and
878 you might be prompted for root's password on the client.  Make sure that
879 this command runs cleanly with no prompts after the first time.  You
880 might need to check /etc/hosts.equiv on the client.  Look at the
881 man pages for more information.  The "-v" option to ssh is a good way
882 to get detailed information about what fails.
883
884 =back
885
886 =item SSH2 Instructions
887
888 =over 4
889
890 =item Key generation
891
892 As root on the client machine, use ssh-keygen2 to generate a
893 public/private key pair, without a pass-phrase:
894
895     ssh-keygen2 -t rsa -P
896
897 or:
898
899     ssh-keygen -t rsa -N ''
900
901 (This command might just be called ssh-keygen on your machine.)
902
903 This will save the public key in /.ssh2/id_rsa_1024_a.pub and the private
904 key in /.ssh2/id_rsa_1024_a.
905
906 =item Identification
907
908 Create the identification file /.ssh2/identification:
909
910     echo "IdKey id_rsa_1024_a" > /.ssh2/identification
911
912 =item BackupPC setup
913
914 Repeat the above steps for the BackupPC user (__BACKUPPCUSER__) on the server.
915 Rename the key files to recognizable names, eg:
916
917     ssh-keygen2 -t rsa -P
918     mv ~/.ssh2/id_rsa_1024_a.pub ~/.ssh2/BackupPC_id_rsa_1024_a.pub
919     mv ~/.ssh2/id_rsa_1024_a     ~/.ssh2/BackupPC_id_rsa_1024_a
920     echo "IdKey BackupPC_id_rsa_1024_a" > ~/.ssh2/identification
921
922 Based on your ssh2 configuration, you might also need to turn off
923 StrictHostKeyChecking and PasswordAuthentication:
924
925     touch ~/.ssh2/ssh2_config
926     echo "StrictHostKeyChecking ask" >> ~/.ssh2/ssh2_config
927     echo "PasswordAuthentication no" >> ~/.ssh2/ssh2_config
928
929 =item Key exchange
930
931 To allow BackupPC to ssh to the client as root, you need to place
932 BackupPC's public key into root's authorized list on the client.
933 Copy BackupPC's public key (BackupPC_id_rsa_1024_a.pub) to the
934 /.ssh2 directory on the client.  Add the following line to the
935 /.ssh2/authorization file on the client (as root):
936
937     touch /.ssh2/authorization
938     echo "Key BackupPC_id_rsa_1024_a.pub" >> /.ssh2/authorization
939
940 =item Fix permissions
941
942 You will probably need to make sure that all the files
943 in /.ssh2 have no group or other read/write permission:
944
945     chmod -R go-rwx /.ssh2
946
947 You should do the same thing for the BackupPC user on the server.
948
949 =item Testing
950
951 As the BackupPC user on the server, verify that this command:
952
953     ssh2 -l root clientHostName whoami
954
955 prints
956
957     root
958
959 You might be prompted the first time to accept the client's host key and
960 you might be prompted for root's password on the client.  Make sure that
961 this command runs cleanly with no prompts after the first time.  You
962 might need to check /etc/hosts.equiv on the client.  Look at the
963 man pages for more information.  The "-v" option to ssh2 is a good way
964 to get detailed information about what fails.
965
966 =back
967
968 =item SSH version 1 Instructions
969
970 The concept is identical and the steps are similar, but the specific
971 commands and file names are slightly different.
972
973 First, run ssh-keygen on the client (as root) and server (as the BackupPC
974 user) and simply hit enter when prompted for the pass-phrase:
975
976     ssh-keygen
977
978 This will save the public key in /.ssh/identity.pub and the private
979 key in /.ssh/identity.
980
981 Next, append BackupPC's ~/.ssh/identity.pub (from the server) to root's
982 /.ssh/authorized_keys file on the client.  It's a single long line that
983 you can cut-and-paste with an editor (make sure it remains a single line).
984
985 Next, force protocol version 1 by adding:
986
987     Protocol 1
988
989 to BackupPC's ~/.ssh/config on the server.
990
991 Next, run "chmod -R go-rwx ~/.ssh" on the server and "chmod -R go-rwx /.ssh"
992 on the client.
993
994 Finally, test using:
995
996     ssh -l root clientHostName whoami
997
998 =back
999
1000 Finally, if this machine uses DHCP you will need to run nmbd (the
1001 NetBios name server) from the Samba distribution so that the machine
1002 responds to a NetBios name request. See the manual page and Samba
1003 documentation for more information.
1004
1005 =back
1006
1007 =head2 Step 6: Running BackupPC
1008
1009 The installation contains an init.d backuppc script that can be copied
1010 to /etc/init.d so that BackupPC can auto-start on boot.
1011 See init.d/README for further instructions.
1012
1013 BackupPC should be ready to start.  If you installed the init.d script,
1014 then you should be able to run BackupPC with:
1015
1016     /etc/init.d/backuppc start
1017
1018 (This script can also be invoked with "stop" to stop BackupPC and "reload"
1019 to tell BackupPC to reload config.pl and the hosts file.)
1020
1021 Otherwise, just run
1022
1023      __INSTALLDIR__/bin/BackupPC -d
1024
1025 as user __BACKUPPCUSER__.  The -d option tells BackupPC to run as a daemon
1026 (ie: it does an additional fork).
1027
1028 Any immediate errors will be printed to stderr and BackupPC will quit.
1029 Otherwise, look in __TOPDIR__/log/LOG and verify that BackupPC reports
1030 it has started and all is ok.
1031
1032 =head2 Step 7: Talking to BackupPC
1033
1034 Note: as of version 1.5.0, BackupPC no longer supports telnet
1035 to its TCP port.  First off, a unix domain socket is used
1036 instead of a TCP port.  (The TCP port can still be re-enabled
1037 if your installation has apache and BackupPC running on different
1038 machines.)  Secondly, even if you still use the TCP port, the
1039 messages exchanged over this interface are now protected by
1040 an MD5 digest based on a shared secret (see $Conf{ServerMesgSecret})
1041 as well as sequence numbers and per-session unique keys, preventing
1042 forgery and replay attacks.
1043
1044 You should verify that BackupPC is running by using BackupPC_serverMesg.
1045 This sends a message to BackupPC via the unix (or TCP) socket and prints
1046 the response.
1047
1048 You can request status information and start and stop backups using this
1049 interface. This socket interface is mainly provided for the CGI interface
1050 (and some of the BackupPC sub-programs use it too).  But right now we just
1051 want to make sure BackupPC is happy.  Each of these commands should
1052 produce some status output:
1053
1054     __INSTALLDIR__/bin/BackupPC_serverMesg status info
1055     __INSTALLDIR__/bin/BackupPC_serverMesg status jobs
1056     __INSTALLDIR__/bin/BackupPC_serverMesg status hosts
1057
1058 The output should be some hashes printed with Data::Dumper.  If it
1059 looks cryptic and confusing, and doesn't look like an error message,
1060 then all is ok.
1061
1062 The jobs status should initially show just BackupPC_trashClean.
1063 The hosts status should produce a list of every host you have listed
1064 in __TOPDIR__/conf/hosts as part of a big cryptic output line.
1065
1066 You can also request that all hosts be queued:
1067
1068     __INSTALLDIR__/bin/BackupPC_serverMesg backup all
1069
1070 At this point you should make sure the CGI interface works since
1071 it will be much easier to see what is going on.  That's our
1072 next subject.
1073
1074 =head2 Step 8: CGI interface
1075
1076 The CGI interface script, BackupPC_Admin, is a powerful and flexible
1077 way to see and control what BackupPC is doing.  It is written for an
1078 Apache server.  If you don't have Apache, see L<http://www.apache.org>.
1079
1080 There are two options for setting up the CGI interface: standard
1081 mode and using mod_perl.  Mod_perl provides much higher performance
1082 (around 15x) and is the best choice if your Apache was built with
1083 mod_perl support.  To see if your apache was built with mod_perl
1084 run this command:
1085
1086     httpd -l | egrep mod_perl
1087
1088 If this prints mod_perl.c then your Apache supports mod_perl.
1089
1090 Using mod_perl with BackupPC_Admin requires a dedicated Apache
1091 to be run as the BackupPC user (__BACKUPPCUSER__).  This is
1092 because BackupPC_Admin needs permission to access various files
1093 in BackupPC's data directories.  In contrast, the standard
1094 installation (without mod_perl) solves this problem by having
1095 BackupPC_Admin installed as setuid to the BackupPC user, so that
1096 BackupPC_Admin runs as the BackuPC user.
1097
1098 Here are some specifics for each setup:
1099
1100 =over 4
1101
1102 =item Standard Setup
1103
1104 The CGI interface should have been installed by the configure.pl script
1105 in __CGIDIR__/BackupPC_Admin.  BackupPC_Admin should have been installed
1106 as setuid to the BackupPC user (__BACKUPPCUSER__), in addition to user
1107 and group execute permission.
1108
1109 You should be very careful about permissions on BackupPC_Admin and
1110 the directory __CGIDIR__: it is important that normal users cannot
1111 directly execute or change BackupPC_Admin, otherwise they can access
1112 backup files for any PC. You might need to change the group ownership
1113 of BackupPC_Admin to a group that Apache belongs to so that Apache
1114 can execute it (don't add "other" execute permission!).
1115 The permissions should look like this:
1116
1117     ls -l __CGIDIR__/BackupPC_Admin
1118     -swxr-x---    1 __BACKUPPCUSER__   web      82406 Jun 17 22:58 __CGIDIR__/BackupPC_Admin
1119
1120 The setuid script won't work unless perl on your machine was installed
1121 with setuid emulation.  This is likely the problem if you get an error
1122 saying such as "Wrong user: my userid is 25, instead of 150", meaning
1123 the script is running as the httpd user, not the BackupPC user.
1124 This is because setuid scripts are disabled by the kernel in most
1125 flavors of unix and linux.
1126
1127 To see if your perl has setuid emulation, see if there is a program
1128 called sperl5.6.0 or sperl5.6.1 in the place where perl is installed.
1129 If you can't find this program, then you have two options: rebuild
1130 and reinstall perl with the setuid emulation turned on (answer "y" to
1131 the question "Do you want to do setuid/setgid emulation?" when you
1132 run perl's configure script), or switch to the mod_perl alternative
1133 for the CGI script (which doesn't need setuid to work).
1134
1135 =item Mod_perl Setup
1136
1137 The advantage of the mod_perl setup is that no setuid script is needed,
1138 and there is a huge performance advantage.  Not only does all the perl
1139 code need to be parsed just once, the config.pl and hosts files, plus
1140 the connection to the BackupPC server are cached between requests.  The
1141 typical speedup is around 15 times.
1142
1143 To use mod_perl you need to run Apache as user __BACKUPPCUSER__.
1144 If you need to run multiple Apache's for different services then
1145 you need to create multiple top-level Apache directories, each
1146 with their own config file.  You can make copies of /etc/init.d/httpd
1147 and use the -d option to httpd to point each http to a different
1148 top-level directory.  Or you can use the -f option to explicitly
1149 point to the config file.  Multiple Apache's will run on different
1150 Ports (eg: 80 is standard, 8080 is a typical alternative port accessed
1151 via http://yourhost.com:8080).
1152
1153 Inside BackupPC's Apache http.conf file you should check the
1154 settings for ServerRoot, DocumentRoot, User, Group, and Port.  See 
1155 L<http://httpd.apache.org/docs/server-wide.html> for more details.
1156
1157 For mod_perl, BackupPC_Admin should not have setuid permission, so
1158 you should turn it off:
1159
1160     chmod u-s __CGIDIR__/BackupPC_Admin
1161
1162 To tell Apache to use mod_perl to execute BackupPC_Admin, add this
1163 to Apache's httpd.conf file:
1164
1165     <IfModule mod_perl.c>
1166         PerlModule Apache::Registry
1167         PerlTaintCheck On
1168         <Location /cgi-bin/BackupPC/BackupPC_Admin>   # <--- change path as needed
1169            SetHandler perl-script
1170            PerlHandler Apache::Registry
1171            Options ExecCGI
1172         </Location>
1173     </IfModule>
1174
1175 There are other optimizations and options with mod_perl.  For
1176 example, you can tell mod_perl to preload various perl modules,
1177 which saves memory compared to loading separate copies in every
1178 Apache process after they are forked. See Stas's definitive
1179 mod_perl guide at L<http://perl.apache.org/guide>.
1180
1181 =back
1182
1183 BackupPC_Admin requires that users are authenticated by Apache.
1184 Specifically, it expects that Apache sets the REMOTE_USER environment
1185 variable when it runs.  There are several ways to do this.  One way
1186 is to create a .htaccess file in the cgi-bin directory that looks like:
1187
1188     AuthGroupFile /etc/httpd/conf/group    # <--- change path as needed
1189     AuthUserFile /etc/http/conf/passwd     # <--- change path as needed
1190     AuthType basic
1191     AuthName "access"
1192     require valid-user
1193
1194 You will also need "AllowOverride Indexes AuthConfig" in the Apache
1195 httpd.conf file to enable the .htaccess file. Alternatively, everything
1196 can go in the Apache httpd.conf file inside a Location directive. The
1197 list of users and password file above can be extracted from the NIS
1198 passwd file.
1199
1200 One alternative is to use LDAP.  In Apache's http.conf add these lines:
1201
1202     LoadModule auth_ldap_module   modules/auth_ldap.so
1203     AddModule auth_ldap.c
1204
1205     # cgi-bin - auth via LDAP (for BackupPC)
1206     <Location /cgi-binBackupPC/BackupPC_Admin>    # <--- change path as needed
1207       AuthType Basic
1208       AuthName "BackupPC login"
1209       # replace MYDOMAIN, PORT, ORG and CO as needed
1210       AuthLDAPURL ldap://ldap.MYDOMAIN.com:PORT/o=ORG,c=CO?uid?sub?(objectClass=*)
1211       require valid-user
1212     </Location>
1213
1214 If you want to defeat the user authentication you can force a
1215 particular user name by getting Apache to set REMOTE_USER, eg,
1216 to hardcode the user to www you could add this to httpd.conf:
1217
1218     <Location /cgi-bin/BackupPC/BackupPC_Admin>   # <--- change path as needed
1219         Setenv REMOTE_USER www
1220     </Location>
1221
1222 Finally, you should also edit the config.pl file and adjust, as necessary,
1223 the CGI-specific settings.  They're near the end of the config file. In
1224 particular, you should specify which users or groups have administrator
1225 (privileged) access.  Also, the configure.pl script placed various
1226 images into $Conf{CgiImageDir} that BackupPC_Admin needs to serve
1227 up.  You should make sure that $Conf{CgiImageDirURL} is the correct
1228 URL for the image directory.
1229
1230 =head2 Other installation topics
1231
1232 =over 4
1233
1234 =item Copying the pool
1235
1236 If the pool disk requirements grow you might need to copy the entire
1237 data directory to a new (bigger) file system.  Hopefully you are lucky
1238 enough to avoid this by having the data directory on a RAID file system
1239 or LVM that allows the capacity to be grown in place by adding disks.
1240
1241 The backup data directories contain large numbers of hardlinks.  If
1242 you try to copy the pool the target directory will occupy a lot more
1243 space if the hardlinks aren't re-established.
1244
1245 The GNU cp program with the -a option is aware of hardlinks and knows
1246 to re-establish them.  So GNU cp -a is the recommended way to copy
1247 the data directory and pool.  Don't forget to stop BackupPC while
1248 the copy runs.
1249
1250 =item Compressing an existing pool
1251
1252 If you are upgrading BackupPC and want to turn compression on you have
1253 two choices:
1254
1255 =over 4
1256
1257 =item *
1258
1259 Simply turn on compression.  All new backups will be compressed. Both old
1260 (uncompressed) and new (compressed) backups can be browsed and viewed.
1261 Eventually, the old backups will expire and all the pool data will be
1262 compressed. However, until the old backups expire, this approach could
1263 require 60% or more additional pool storage space to store both
1264 uncompressed and compressed versions of the backup files.
1265
1266 =item *
1267
1268 Convert all the uncompressed pool files and backups to compressed.
1269 The script __INSTALLDIR__/bin/BackupPC_compressPool does this.
1270 BackupPC must not be running when you run BackupPC_compressPool.
1271 Also, there must be no existing compressed backups when you
1272 run BackupPC_compressPool.
1273
1274 BackupPC_compressPool compresses all the files in the uncompressed pool
1275 (__TOPDIR__/pool) and moves them to the compressed pool
1276 (__TOPDIR__/cpool). It rewrites the files in place, so that the
1277 existing hardlinks are not disturbed.
1278
1279 =back
1280
1281 The rest of this section discusses how to run BackupPC_compressPool.
1282
1283 BackupPC_compressPool takes three command line options:
1284
1285 =over 4
1286
1287 =item -t
1288
1289 Test mode: do everything except actually replace the pool files.
1290 Useful for estimating total run time without making any real
1291 changes.
1292
1293 =item -r
1294
1295 Read check: re-read the compressed file and compare it against
1296 the original uncompressed file.  Can only be used in test mode.
1297
1298 =item -c #
1299
1300 Number of children to fork. BackupPC_compressPool can take a long time
1301 to run, so to speed things up it spawns four children, each working on a
1302 different part of the pool. You can change the number of children with
1303 the -c option.
1304
1305 =back
1306
1307 Here are the recommended steps for running BackupPC_compressPool:
1308
1309 =over 4
1310
1311 =item *
1312
1313 Stop BackupPC (eg: "/etc/init.d/backuppc stop").
1314
1315 =item *
1316
1317 Set $Conf{CompressLevel} to a non-zero number (eg: 3).
1318
1319 =item *
1320
1321 Do a dry run of BackupPC_compressPool.  Make sure you run this as
1322 the BackupPC user (__BACKUPPCUSER__):
1323
1324     BackupPC_compressPool -t -r
1325
1326 The -t option (test mode) makes BackupPC_compressPool do all the steps,
1327 but not actually change anything. The -r option re-reads the compressed
1328 file and compares it against the original.
1329
1330 BackupPC_compressPool gives a status as it completes each 1% of the job.
1331 It also shows the cumulative compression ratio and estimated completion
1332 time.  Once you are comfortable that things look ok, you can kill
1333 BackupPC_compressPool or wait for it to finish.
1334
1335 =item *
1336
1337 Now you are ready to run BackupPC_compressPool for real.  Once again,
1338 as the BackupPC user (__BACKUPPCUSER__), run:
1339
1340     BackupPC_compressPool
1341
1342 You should put the output into a file and tail this file.  (The running
1343 time could be twice as long as the test mode since the test mode file
1344 writes are immediately followed by an unlink, so in test mode it is
1345 likely the file writes never make it to disk.)
1346
1347 It is B<critical> that BackupPC_compressPool runs to completion before
1348 re-starting BackupPC.  Before BackupPC_compressPool completes, none of
1349 the existing backups will be in a consistent state.  If you must stop
1350 BackupPC_compressPool for some reason, send it an INT or TERM signal
1351 and give it several seconds (or more) to clean up gracefully.
1352 After that, you can re-run BackupPC_compressPool and it will start
1353 again where it left off.  Once again, it is critical that it runs
1354 to 100% completion.
1355
1356 =back
1357
1358 After BackupPC_compressPool completes you should have a complete set
1359 of compressed backups (and your disk usage should be lower).  You
1360 can now re-start BackupPC.
1361
1362 =back
1363
1364 =head2 Debugging installation problems
1365
1366 This section will probably grow based on the types of questions on
1367 the BackupPC mail list.
1368
1369 Assuming BackupPC can start correctly you should inspect __TOPDIR__/log/LOG
1370 for any errors.  Assuming backups for a particular host start, you
1371 should be able to look in __TOPDIR__/pc/$host/LOG for error messages
1372 specific to that host.
1373
1374 The most likely problems will relate to connecting to the smb shares on
1375 each host.  On each failed backup, a file __TOPDIR__/pc/$host/XferERR will
1376 be created. This is the stderr output from smbclient. The first line
1377 will show the full smbclient command that was run. Based on the error
1378 messages you should figure out what is wrong.  Possible errors on the
1379 server side are invalid host, invalid share name, bad username or password.
1380 Possible errors on the client side are misconfiguration of the share,
1381 username or password.
1382
1383 You should run smbclient manually and verify that you can connect to
1384 the host in interactive mode, eg:
1385
1386     smbclient '\\hostName\shareName' -U userName
1387
1388 shareName should match the $Conf{SmbShareName} setting and userName
1389 should match the the $Conf{SmbShareUserName} setting.
1390
1391 You will be prompted for the password. You should then see this prompt:
1392
1393     smb: \>
1394
1395 Verify that "ls" works and then type "quit" to exit.
1396
1397 Secondly, you should also verify that nmblookup correctly returns
1398 the netbios name.  This is essential for DHCP hosts, and depending
1399 upon the setting of $Conf{FixedIPNetBiosNameCheck} might also be
1400 required for fixed IP address hosts too.  Run this command:
1401
1402     nmblookup -A hostName
1403
1404 Verify that the host name is printed.  The output might look like:
1405
1406     received 7 names
1407             DELLLS13        <00> -         P <ACTIVE> 
1408             DOMAINNAME      <00> - <GROUP> P <ACTIVE> 
1409             DELLLS13        <20> -         P <ACTIVE> 
1410             DOMAINNAME      <1e> - <GROUP> P <ACTIVE> 
1411             DELLLS13        <03> -         P <ACTIVE> 
1412             DELLLS13$       <03> -         P <ACTIVE> 
1413             CRAIG           <03> -         P <ACTIVE> 
1414
1415 The first name, converted to lower case, is used for the host name.
1416
1417 =head1 Restore functions
1418
1419 BackupPC supports several different methods for restoring files. The
1420 most convenient restore options are provided via the CGI interface.
1421 Alternatively, backup files can be restored using manual commands.
1422
1423 =head2 CGI restore options
1424
1425 By selecting a host in the CGI interface, a list of all the backups
1426 for that machine will be displayed.  By selecting the backup number
1427 you can navigate the shares and directory tree for that backup.
1428
1429 BackupPC's CGI interface automatically fills incremental backups
1430 with the corresponding full backup, which means each backup has
1431 a filled appearance.  Therefore, there is no need to do multiple
1432 restores from the incremental and full backups: BackupPC does all
1433 the hard work for you.  You simply select the files and directories
1434 you want from the correct backup vintage in one step.
1435
1436 You can download a single backup file at any time simply by selecting
1437 it.  Your browser should prompt you with the file name and ask you
1438 whether to open the file or save it to disk.
1439
1440 Alternatively, you can select one or more files or directories in
1441 the currently selected directory and select "Restore selected files".
1442 (If you need to restore selected files and directories from several
1443 different parent directories you will need to do that in multiple
1444 steps.)
1445
1446 If you select all the files in a directory, BackupPC will replace
1447 the list of files with the parent directory.  You will be presented
1448 with a screen that has three options:
1449
1450 =over 4
1451
1452 =item Option 1: Direct Restore
1453
1454 With this option the selected files and directories are restored
1455 directly back onto the host, by default in their original location.
1456 Any old files with the same name will be overwritten, so use caution.
1457 You can optionally change the target host name, target share name,
1458 and target path prefix for the restore, allowing you to restore the
1459 files to a different location.
1460
1461 Once you select "Start Restore" you will be prompted one last time
1462 with a summary of the exact source and target files and directories
1463 before you commit.  When you give the final go ahead the restore
1464 operation will be queued like a normal backup job, meaning that it
1465 will be deferred if there is a backup currently running for that host.
1466 When the restore job is run, smbclient or tar is used (depending upon
1467 $Conf{XferMethod}) to actually restore the files.  Sorry, there is
1468 currently no option to cancel a restore that has been started.
1469
1470 A record of the restore request, including the result and list of
1471 files and directories, is kept.  It can be browsed from the host's
1472 home page.  $Conf{RestoreInfoKeepCnt} specifies how many old restore
1473 status files to keep.
1474
1475 =item Option 2: Download Zip archive
1476
1477 With this option a zip file containing the selected files and directories
1478 is downloaded.  The zip file can then be unpacked or individual files
1479 extracted as necessary on the host machine. The compression level can be
1480 specified.  A value of 0 turns off compression.
1481
1482 When you select "Download Zip File" you should be prompted where to
1483 save the restore.zip file.
1484
1485 BackupPC does not consider downloading a zip file as an actual
1486 restore operation, so the details are not saved for later browsing
1487 as in the first case.  However, a mention that a zip file was
1488 downloaded by a particular user, and a list of the files, does
1489 appear in BackupPC's log file.
1490
1491 =item Option 3: Download Tar archive
1492
1493 This is identical to the previous option, except a tar file is downloaded
1494 rather than a zip file (and there is currently no compression option).
1495
1496 =back
1497
1498 =head2 Command-line restore options
1499
1500 Apart from the CGI interface, BackupPC allows you to restore files
1501 and directories from the command line.  The following programs can
1502 be used:
1503
1504 =over 4
1505
1506 =item BackupPC_zcat
1507
1508 For each file name argument it inflates (uncompresses) the file and
1509 writes it to stdout.  To use BackupPC_zcat you could give it the
1510 full file name, eg:
1511
1512     __INSTALLDIR__/bin/BackupPC_zcat __TOPDIR__/pc/host/5/fc/fcraig/fexample.txt > example.txt
1513
1514 It's your responsibility to make sure the file is really compressed:
1515 BackupPC_zcat doesn't check which backup the requested file is from.
1516
1517 =item BackupPC_tarCreate
1518
1519 BackupPC_tarCreate creates a tar file for any files or directories in
1520 a particular backup.  Merging of incrementals is done automatically,
1521 so you don't need to worry about whether certain files appear in the
1522 incremental or full backup.
1523
1524 The usage is:
1525
1526    BackupPC_tarCreate [-t] [-h host] [-n dumpNum] [-s shareName]
1527                     [-r pathRemove] [-p pathAdd]
1528                     files/directories...
1529
1530 The command-line files and directories are relative to the specified
1531 shareName.  The tar file is written to stdout.
1532
1533 The required options are:
1534
1535 =over 4
1536
1537 =item -h host
1538
1539 host from which the tar archive is created
1540
1541 =item -n dumpNum
1542
1543 dump number from which the tar archive is created
1544
1545 =item -s shareName
1546
1547 share name from which the tar archive is created
1548
1549 =back
1550
1551 Other options are:
1552
1553 =over 4
1554
1555 =item -t
1556
1557 print summary totals
1558
1559 =item -r pathRemove
1560
1561 path prefix that will be replaced with pathAdd
1562
1563 =item -p pathAdd
1564
1565 new path prefix
1566
1567 =back
1568
1569 The -h, -n and -s options specify which dump is used to generate
1570 the tar archive.  The -r and -p options can be used to relocate
1571 the paths in the tar archive so extracted files can be placed
1572 in a location different from their original location.
1573
1574 =item BackupPC_zipCreate
1575
1576 BackupPC_zipCreate creates a zip file for any files or directories in
1577 a particular backup.  Merging of incrementals is done automatically,
1578 so you don't need to worry about whether certain files appear in the
1579 incremental or full backup.
1580
1581 The usage is:
1582
1583    BackupPC_zipCreate [-t] [-h host] [-n dumpNum] [-s shareName]
1584                     [-r pathRemove] [-p pathAdd] [-c compressionLevel]
1585                    files/directories...
1586
1587 The command-line files and directories are relative to the specified
1588 shareName.  The zip file is written to stdout.
1589
1590 The required options are:
1591
1592 =over 4
1593
1594 =item -h host
1595
1596 host from which the zip archive is created
1597
1598 =item -n dumpNum
1599
1600 dump number from which the zip archive is created
1601
1602 =item -s shareName
1603
1604 share name from which the zip archive is created
1605
1606 =back
1607
1608 Other options are:
1609
1610 =over 4
1611
1612 =item -t
1613
1614 print summary totals
1615
1616 =item -r pathRemove
1617
1618 path prefix that will be replaced with pathAdd
1619
1620 =item -p pathAdd
1621
1622 new path prefix
1623
1624 =item -c level
1625
1626 compression level (default is 0, no compression)
1627
1628 =back
1629
1630 The -h, -n and -s options specify which dump is used to generate
1631 the zip archive.  The -r and -p options can be used to relocate
1632 the paths in the zip archive so extracted files can be placed
1633 in a location different from their original location.
1634
1635 =back
1636
1637 Each of these programs reside in __INSTALLDIR__/bin.
1638
1639 =head1 BackupPC Design
1640
1641 =head2 Some design issues
1642
1643 =over 4
1644
1645 =item Pooling common files
1646
1647 To quickly see if a file is already in the pool, an MD5 digest of the
1648 file length and contents is used as the file name in the pool. This
1649 can't guarantee a file is identical: it just reduces the search to
1650 often a single file or handful of files. A complete file comparison
1651 is always done to verify if two files are really the same.
1652
1653 Identical files on multiples backups are represented by hard links.
1654 Hardlinks are used so that identical files all refer to the same
1655 physical file on the server's disk. Also, hard links maintain
1656 reference counts so that BackupPC knows when to deleted unused files
1657 from the pool.
1658
1659 For the computer-science majors among you, you can think of the pooling
1660 system used by BackupPC as just a chained hash table stored on a (big)
1661 file system.
1662
1663 =item The hashing function
1664
1665 There is a tradeoff between how much of file is used for the MD5 digest
1666 and the time taken comparing all the files that have the same hash.
1667
1668 Using the file length and just the first 4096 bytes of the file for the
1669 MD5 digest produces some repetitions.  One example: with 900,000 unique
1670 files in the pool, this hash gives about 7,000 repeated files, and in
1671 the worst case 500 files have the same hash.  That's not bad: we only
1672 have to do a single file compare 99.2% of the time.  But in the worst
1673 case we have to compare as many as 500 files checking for a match.
1674
1675 With a modest increase in CPU time, if we use the file length and the
1676 first 256K of the file we now only have 500 repeated files and in the
1677 worst case around 20 files have the same hash. Furthermore, if we
1678 instead use the first and last 128K of the file (more specifically, the
1679 first and eighth 128K chunks for files larger than 1MB) we get only 300
1680 repeated files and in the worst case around 20 files have the same hash.
1681
1682 Based on this experimentation, this is the hash function used by BackupPC.
1683 It is important that you don't change the hash function after files
1684 are already in the pool.  Otherwise your pool will grow to twice the
1685 size until all the old backups (and all the old files with old hashes)
1686 eventually expire.
1687
1688 =item Compression
1689
1690 BackupPC supports compression. It uses the deflate and inflate methods
1691 in the Compress::Zlib module, which is based on the zlib compression
1692 library (see L<http://www.gzip.org/zlib/>).
1693
1694 The $Conf{CompressLevel} setting specifies the compression level to use.
1695 Zero (0) means no compression. Compression levels can be from 1 (least
1696 cpu time, slightly worse compression) to 9 (most cpu time, slightly
1697 better compression). The recommended value is 3. Changing it to 5, for
1698 example, will take maybe 20% more cpu time and will get another 2-3%
1699 additional compression. Diminishing returns set in above 5.  See the zlib
1700 documentation for more information about compression levels.
1701
1702 BackupPC implements compression with minimal CPU load. Rather than
1703 compressing every incoming backup file and then trying to match it
1704 against the pool, BackupPC computes the MD5 digest based on the
1705 uncompressed file, and matches against the candidate pool files by
1706 comparing each uncompressed pool file against the incoming backup file.
1707 Since inflating a file takes roughly a factor of 10 less CPU time than
1708 deflating there is a big saving in CPU time.
1709
1710 The combination of pooling common files and compression can yield
1711 a factor of 8 or more overall saving in backup storage.
1712
1713 =back
1714
1715 =head2 BackupPC operation
1716
1717 BackupPC reads the configuration information from
1718 __TOPDIR__/conf/config.pl. It then runs and manages all the backup
1719 activity. It maintains queues of pending backup requests, user backup
1720 requests and administrative commands. Based on the configuration various
1721 requests will be executed simultaneously.
1722
1723 As specified by $Conf{WakeupSchedule}, BackupPC wakes up periodically
1724 to queue backups on all the PCs.  This is a four step process:
1725
1726 =over 4
1727
1728 =item 1
1729
1730 For each host and DHCP address backup requests are queued on the
1731 background command queue.
1732
1733 =item 2
1734
1735 For each PC, BackupPC_dump is forked. Several of these may be run in
1736 parallel, based on the configuration. First a ping is done to see if the
1737 machine is alive. If this is a DHCP address, nmblookup is run to get
1738 the netbios name, which is used as the host name. The file
1739 __TOPDIR__/pc/$host/backups is read to decide whether a full or
1740 incremental backup needs to be run. If no backup is scheduled, or the ping
1741 to $host fails, then BackupPC_dump exits.
1742
1743 The backup is done using samba's smbclient or tar over ssh/rsh/nfs piped
1744 into BackupPC_tarExtract, extracting the backup into __TOPDIR__/pc/$host/new.
1745 The smbclient or tar output is put into __TOPDIR__/pc/$host/XferLOG.
1746
1747 As BackupPC_tarExtract extracts the files from smbclient, it checks each
1748 file in the backup to see if it is identical to an existing file from
1749 any previous backup of any PC. It does this without needed to write the
1750 file to disk. If the file matches an existing file, a hardlink is
1751 created to the existing file in the pool. If the file does not match any
1752 existing files, the file is written to disk and the file name is saved
1753 in __TOPDIR__/pc/$host/NewFileList for later processing by
1754 BackupPC_link.  BackupPC_tarExtract can handle arbitrarily large
1755 files and multiple candidate matching files without needing to
1756 write the file to disk in the case of a match.  This significantly
1757 reduces disk writes (and also reads, since the pool file comparison
1758 is done disk to memory, rather than disk to disk).
1759
1760 Based on the configuration settings, BackupPC_dump checks each
1761 old backup to see if any should be removed.  Any expired backups
1762 are moved to __TOPDIR__/trash for later removal by BackupPC_trashClean.
1763
1764 =item 3
1765
1766 For each complete, good, backup, BackupPC_link is run.
1767 To avoid race conditions as new files are linked into the
1768 pool area, only a single BackupPC_link program runs
1769 at a time and the rest are queued.
1770
1771 BackupPC_link reads the NewFileList written by BackupPC_dump and
1772 inspects each new file in the backup. It re-checks if there is a
1773 matching file in the pool (another BackupPC_link
1774 could have added the file since BackupPC_dump checked). If so, the file
1775 is removed and replaced by a hard link to the existing file. If the file
1776 is new, a hard link to the file is made in the pool area, so that this
1777 file is available for checking against each new file and new backup.
1778
1779 Then, assuming $Conf{IncrFill} is set, for each incremental backup,
1780 hard links are made in the new backup to all files that were not extracted
1781 during the incremental backups.  The means the incremental backup looks
1782 like a complete image of the PC (with the exception that files
1783 that were removed on the PC since the last full backup will still
1784 appear in the backup directory tree).
1785
1786 As of v1.03, the CGI interface knows how to merge unfilled
1787 incremental backups will the most recent prior filled (full)
1788 backup, giving the incremental backups a filled appearance.  The
1789 default for $Conf{IncrFill} is off, since there is now no need to
1790 fill incremental backups.  This saves some level of disk activity,
1791 since lots of extra hardlinks are no longer needed (and don't have
1792 to be deleted when the backup expires).
1793
1794 =item 4
1795
1796 BackupPC_trashClean is always run in the background to remove any
1797 expired backups. Every 5 minutes it wakes up and removes all the files
1798 in __TOPDIR__/trash.
1799
1800 Also, once each night, BackupPC_nightly is run to complete some additional
1801 administrative tasks, such as cleaning the pool.  This involves removing
1802 any files in the pool that only have a single hard link (meaning no backups
1803 are using that file).  Again, to avoid race conditions, BackupPC_nightly
1804 is only run when there are no BackupPC_dump or BackupPC_link processes
1805 running.
1806
1807 =back
1808
1809 BackupPC also listens for TCP connections on $Conf{ServerPort}, which
1810 is used by the CGI script BackupPC_Admin for status reporting and
1811 user-initiated backup or backup cancel requests.
1812
1813 =head2 Storage layout
1814
1815 BackupPC resides in three directories:
1816
1817 =over 4
1818
1819 =item __INSTALLDIR__
1820
1821 Perl scripts comprising BackupPC reside in __INSTALLDIR__/bin,
1822 libraries are in __INSTALLDIR__/lib and documentation
1823 is in __INSTALLDIR__/doc.
1824
1825 =item __CGIDIR__
1826
1827 The CGI script BackupPC_Admin resides in this cgi binary directory.
1828
1829 =item __TOPDIR__
1830
1831 All of BackupPC's data (PC backup images, logs, configuration information)
1832 is stored below this directory.
1833
1834 =back
1835
1836 Below __TOPDIR__ are several directories:
1837
1838 =over 4
1839
1840 =item __TOPDIR__/conf
1841
1842 The directory __TOPDIR__/conf contains:
1843
1844 =over 4
1845
1846 =item config.pl
1847
1848 Configuration file. See L<Configuration file|configuration file>
1849 below for more details.
1850
1851 =item hosts
1852
1853 Hosts file, which lists all the PCs to backup.
1854
1855 =back
1856
1857 =item __TOPDIR__/log
1858
1859 The directory __TOPDIR__/log contains:
1860
1861 =over 4
1862
1863 =item LOG
1864
1865 Current (today's) log file output from BackupPC.
1866
1867 =item LOG.0 or LOG.0.z
1868
1869 Yesterday's log file output.  Log files are aged daily and compressed
1870 (if compression is enabled), and old LOG files are deleted.
1871
1872 =item BackupPC.pid
1873
1874 Contains BackupPC's process id.
1875
1876 =item status.pl
1877
1878 A summary of BackupPC's status written periodically by BackupPC so
1879 that certain state information can be maintained if BackupPC is
1880 restarted.  Should not be edited.
1881
1882 =item UserEmailInfo.pl
1883
1884 A summary of what email was last sent to each user, and when the
1885 last email was sent.  Should not be edited.
1886
1887 =back
1888
1889 =item __TOPDIR__/trash
1890
1891 Any directories and files below this directory are periodically deleted
1892 whenever BackupPC_trashClean checks. When a backup is aborted or when an
1893 old backup expires, BackupPC_dump simply moves the directory to
1894 __TOPDIR__/trash for later removal by BackupPC_trashClean.
1895
1896 =item __TOPDIR__/pool
1897
1898 All uncompressed files from PC backups are stored below __TOPDIR__/pool.
1899 Each file's name is based on the MD5 hex digest of the file contents.
1900 Specifically, for files less than 256K, the file length and the entire
1901 file is used. For files up to 1MB, the file length and the first and
1902 last 128K are used. Finally, for files longer than 1MB, the file length,
1903 and the first and eighth 128K chunks for the file are used.
1904
1905 Each file is stored in a subdirectory X/Y/Z, where X, Y, Z are the
1906 first 3 hex digits of the MD5 digest.
1907
1908 For example, if a file has an MD5 digest of 123456789abcdef0,
1909 the file is stored in __TOPDIR__/pool/1/2/3/123456789abcdef0.
1910
1911 The MD5 digest might not be unique (especially since not all the file's
1912 contents are used for files bigger than 256K). Different files that have
1913 the same MD5 digest are stored with a trailing suffix "_n" where n is
1914 an incrementing number starting at 0. So, for example, if two additional
1915 files were identical to the first, except the last byte was different,
1916 and assuming the file was larger than 1MB (so the MD5 digests are the
1917 same but the files are actually different), the three files would be
1918 stored as:
1919
1920         __TOPDIR__/pool/1/2/3/123456789abcdef0
1921         __TOPDIR__/pool/1/2/3/123456789abcdef0_0
1922         __TOPDIR__/pool/1/2/3/123456789abcdef0_1
1923
1924 Both BackupPC_dump (actually, BackupPC_tarExtract) and BackupPC_link are
1925 responsible for checking newly backed up files against the pool. For
1926 each file, the MD5 digest is used to generate a file name in the pool
1927 directory. If the file exists in the pool, the contents are compared.
1928 If there is no match, additional files ending in "_n" are checked.
1929 (Actually, BackupPC_tarExtract compares multiple candidate files in
1930 parallel.)  If the file contents exactly match, the file is created by
1931 simply making a hard link to the pool file (this is done by
1932 BackupPC_tarExtract as the backup proceeds). Otherwise,
1933 BackupPC_tarExtract writes the new file to disk and a new hard link is
1934 made in the pool to the file (this is done later by BackupPC_link).
1935
1936 Therefore, every file in the pool will have at least 2 hard links
1937 (one for the pool file and one for the backup file below __TOPDIR__/pc).
1938 Identical files from different backups or PCs will all be linked to
1939 the same file.  When old backups are deleted, some files in the pool
1940 might only have one link.  BackupPC_nightly checks the entire pool
1941 and removes all files that have only a single link, thereby recovering
1942 the storage for that file.
1943
1944 One other issue: zero length files are not pooled, since there are a lot
1945 of these files and on most file systems it doesn't save any disk space
1946 to turn these files into hard links.
1947
1948 =item __TOPDIR__/cpool
1949
1950 All compressed files from PC backups are stored below __TOPDIR__/cpool.
1951 Its layout is the same as __TOPDIR__/pool, and the hashing function
1952 is the same (and, importantly, based on the uncompressed file, not
1953 the compressed file).
1954
1955 =item __TOPDIR__/pc/$host
1956
1957 For each PC $host, all the backups for that PC are stored below
1958 the directory __TOPDIR__/pc/$host.  This directory contains the
1959 following files:
1960
1961 =over 4
1962
1963 =item LOG
1964
1965 Current log file for this PC from BackupPC_dump.
1966
1967 =item LOG.0 or LOG.0.z
1968
1969 Last month's log file.  Log files are aged monthly and compressed
1970 (if compression is enabled), and old LOG files are deleted.
1971
1972 =item XferERR or XferERR.z
1973
1974 Output from the transport program (ie: smbclient or tar)
1975 for the most recent failed backup.
1976
1977 =item new
1978
1979 Subdirectory in which the current backup is stored.  This
1980 directory is renamed if the backup succeeds.
1981
1982 =item XferLOG or XferLOG.z
1983
1984 Output from the transport program (ie: smbclient or tar)
1985 for the current backup.
1986
1987 =item nnn (an integer)
1988
1989 Successful backups are in directories numbered sequentially starting at 0.
1990
1991 =item XferLOG.nnn or XferLOG.nnn.z
1992
1993 Output from the transport program (ie: smbclient or tar)
1994 corresponding to backup number nnn.
1995
1996 =item RestoreInfo.nnn
1997
1998 Information about restore request #nnn including who, what, when, and
1999 why. This file is in Data::Dumper format.  (Note that the restore
2000 numbers are not related to the backup number.)
2001
2002 =item RestoreLOG.nnn.z
2003
2004 Output from smbclient or tar during restore #nnn.  (Note that the restore
2005 numbers are not related to the backup number.)
2006
2007 =item config.pl
2008
2009 Optional configuration settings specific to this host.  Settings in this
2010 file override the main configuration file.
2011
2012 =item backups
2013
2014 A tab-delimited ascii table listing information about each successful
2015 backup, one per row.  The columns are:
2016
2017 =over 4
2018
2019 =item num
2020
2021 The backup number, an integer that starts at 0 and increments
2022 for each successive backup.  The corresponding backup is stored
2023 in the directory num (eg: if this field is 5, then the backup is
2024 stored in __TOPDIR__/pc/$host/5).
2025
2026 =item type
2027
2028 Set to "full" or "incr" for full or incremental backup.
2029
2030 =item startTime
2031
2032 Start time of the backup in unix seconds.
2033
2034 =item endTime
2035
2036 Stop time of the backup in unix seconds.
2037
2038 =item nFiles
2039
2040 Number of files backed up (as reported by smbclient or tar).
2041
2042 =item size
2043
2044 Total file size backed up (as reported by smbclient or tar).
2045
2046 =item nFilesExist
2047
2048 Number of files that were already in the pool
2049 (as determined by BackupPC_dump and BackupPC_link).
2050
2051 =item sizeExist
2052
2053 Total size of files that were already in the pool
2054 (as determined by BackupPC_dump and BackupPC_link).
2055
2056 =item nFilesNew
2057
2058 Number of files that were not in the pool
2059 (as determined by BackupPC_link).
2060
2061 =item sizeNew
2062
2063 Total size of files that were not in the pool
2064 (as determined by BackupPC_link).
2065
2066 =item xferErrs
2067
2068 Number of errors or warnings from smbclient (zero for tar).
2069
2070 =item xferBadFile
2071
2072 Number of errors from smbclient that were bad file errors (zero for tar).
2073
2074 =item xferBadShare
2075
2076 Number of errors from smbclient that were bad share errors (zero for tar).
2077
2078 =item tarErrs
2079
2080 Number of errors from BackupPC_tarExtract.
2081
2082 =item compress
2083
2084 The compression level used on this backup.  Zero or empty means no
2085 compression.
2086
2087 =item sizeExistComp
2088
2089 Total compressed size of files that were already in the pool
2090 (as determined by BackupPC_dump and BackupPC_link).
2091
2092 =item sizeNewComp
2093
2094 Total compressed size of files that were not in the pool
2095 (as determined by BackupPC_link).
2096
2097 =item noFill
2098
2099 Set if this backup has not been filled in with the most recent
2100 previous filled or full backup.  See $Conf{IncrFill}.
2101
2102 =item fillFromNum
2103
2104 If this backup was filled (ie: noFill is 0) then this is the
2105 number of the backup that it was filled from
2106
2107 =item mangle
2108
2109 Set if this backup has mangled file names and attributes.  Always
2110 true for backups in v1.4.0 and above.  False for all backups prior
2111 to v1.4.0.
2112
2113 =back
2114
2115 =item restores
2116
2117 A tab-delimited ascii table listing information about each requested
2118 restore, one per row.  The columns are:
2119
2120 =over 4
2121
2122 =item num
2123
2124 Restore number (matches the suffix of the RestoreInfo.nnn and
2125 RestoreLOG.nnn.z file), unrelated to the backup number.
2126
2127 =item startTime
2128
2129 Start time of the restore in unix seconds.
2130
2131 =item endTime
2132
2133 End time of the restore in unix seconds.
2134
2135 =item result
2136
2137 Result (ok or failed).
2138
2139 =item errorMsg
2140
2141 Error message if restore failed.
2142
2143 =item nFiles
2144
2145 Number of files restored.
2146
2147 =item size
2148
2149 Size in bytes of the restored files.
2150
2151 =item tarCreateErrs
2152
2153 Number of errors from BackupPC_tarCreate during restore.
2154
2155 =item xferErrs
2156
2157 Number of errors from smbclient or tar during restore.
2158
2159 =back
2160
2161 =back
2162
2163 =back
2164
2165 =head2 Compressed file format
2166
2167 The compressed file format is as generated by Compress::Zlib::deflate
2168 with one minor, but important, tweak. Since Compress::Zlib::inflate
2169 fully inflates its argument in memory, it could take large amounts of
2170 memory if it was inflating a highly compressed file. For example, a
2171 200MB file of 0x0 bytes compresses to around 200K bytes. If
2172 Compress::Zlib::inflate was called with this single 200K buffer, it
2173 would need to allocate 200MB of memory to return the result.
2174
2175 BackupPC watches how efficiently a file is compressing. If a big file
2176 has very high compression (meaning it will use too much memory when it
2177 is inflated), BackupPC calls the flush() method, which gracefully
2178 completes the current compression.  BackupPC then starts another
2179 deflate and simply appends the output file.  So the BackupPC compressed
2180 file format is one or more concatenated deflations/flushes.  The specific
2181 ratios that BackupPC uses is that if a 6MB chunk compresses to less
2182 than 64K then a flush will be done.
2183
2184 Back to the example of the 200MB file of 0x0 bytes.  Adding flushes
2185 every 6MB adds only 200 or so bytes to the 200K output.  So the
2186 storage cost of flushing is negligible.
2187
2188 To easily decompress a BackupPC compressed file, the script
2189 BackupPC_zcat can be found in __INSTALLDIR__/bin.  For each
2190 file name argument it inflates the file and writes it to stdout.
2191
2192 =head2 File name mangling
2193
2194 Backup file names are stored in "mangled" form. Each node of
2195 a path is preceded by "f" (mnemonic: file), and special characters
2196 (\n, \r, % and /) are URI-encoded as "%xx", where xx is the ascii
2197 character's hex value.  So c:/craig/example.txt is now stored as
2198 fc/fcraig/fexample.txt.
2199
2200 This was done mainly so meta-data could be stored alongside the backup
2201 files without name collisions. In particular, the attributes for the
2202 files in a directory are stored in a file called "attrib", and mangling
2203 avoids file name collisions (I discarded the idea of having a duplicate
2204 directory tree for every backup just to store the attributes). Other
2205 meta-data (eg: rsync checksums) could be stored in file names preceded
2206 by, eg, "c". There are two other benefits to mangling: the share name
2207 might contain "/" (eg: "/home/craig" for tar transport), and I wanted
2208 that represented as a single level in the storage tree. Secondly, as
2209 files are written to NewFileList for later processing by BackupPC_link,
2210 embedded newlines in the file's path will cause problems which are
2211 avoided by mangling.
2212
2213 The CGI script undoes the mangling, so it is invisible to the user.
2214 Old (unmangled) backups are still supported by the CGI
2215 interface.
2216
2217 =head2 Special files
2218
2219 Linux/unix file systems support several special file types: symbolic
2220 links, character and block device files, fifos (pipes) and unix-domain
2221 sockets. All except unix-domain sockets are supported by BackupPC
2222 (there's no point in backing up or restoring unix-domain sockets since
2223 they only have meaning after a process creates them). Symbolic links are
2224 stored as a plain file whose contents are the contents of the link (not
2225 the file it points to). This file is compressed and pooled like any
2226 normal file. Character and block device files are also stored as plain
2227 files, whose contents are two integers separated by a comma; the numbers
2228 are the major and minor device number. These files are compressed and
2229 pooled like any normal file. Fifo files are stored as empty plain files
2230 (which are not pooled since they have zero size). In all cases, the
2231 original file type is stored in the attrib file so it can be correctly
2232 restored.
2233
2234 Hardlinks are also supported.  When GNU tar first encounters a file with
2235 more than one link (ie: hardlinks) it dumps it as a regular file.  When
2236 it sees the second and subsequent hardlinks to the same file, it dumps
2237 just the hardlink information.  BackupPC correctly recognizes these
2238 hardlinks and stores them just like symlinks: a regular text file
2239 whose contents is the path of the file linked to.  The CGI script
2240 will download the original file when you click on a hardlink.
2241
2242 Also, BackupPC_tarCreate has enough magic to re-create the hardlinks
2243 dynamically based on whether or not the original file and hardlinks
2244 are both included in the tar file.  For example, imagine a/b/x is a
2245 hardlink to a/c/y.  If you use BackupPC_tarCreate to restore directory
2246 a, then the tar file will include a/b/x as the original file and a/c/y
2247 will be a hardlink to a/b/x.  If, instead you restore a/c, then the
2248 tar file will include a/c/y as the original file, not a hardlink.
2249
2250 =head2 Attribute file format
2251
2252 The unix attributes for the contents of a directory (all the files and
2253 directories in that directory) are stored in a file called attrib.
2254 There is a single attrib file for each directory in a backup.
2255 For example, if c:/craig contains a single file c:/craig/example.txt,
2256 that file would be stored as fc/fcraig/fexample.txt and there would be an
2257 attribute file in fc/fcraig/attrib (and also fc/attrib and ./attrib).
2258 The file fc/fcraig/attrib would contain a single entry containing the
2259 attributes for fc/fcraig/fexample.txt.
2260
2261 The attrib file starts with a magic number, followed by the
2262 concatenation of the following information for each file:
2263
2264 =over 4
2265
2266 =item *
2267
2268 File name length in perl's pack "w" format (variable length base 128).
2269
2270 =item *
2271
2272 File name.
2273
2274 =item *
2275
2276 The unix file type, mode, uid, gid and file size divided by 4GB and
2277 file size modulo 4GB (type mode uid gid sizeDiv4GB sizeMod4GB),
2278 in perl's pack "w" format (variable length base 128).
2279
2280 =item *
2281
2282 The unix mtime (unix seconds) in perl's pack "N" format (32 bit integer).
2283
2284 =back
2285
2286 The attrib file is also compressed if compression is enabled.
2287 See the lib/BackupPC/Attrib.pm module for full details.
2288
2289 Attribute files are pooled just like normal backup files.  This saves
2290 space if all the files in a directory have the same attributes across
2291 multiple backups, which is common.
2292
2293 =head2 Limitations
2294
2295 BackupPC isn't perfect (but it is getting better).  Here are some
2296 limitations of BackupPC:
2297
2298 =over 4
2299
2300 =item Non-unix file attributes not backed up
2301
2302 smbclient doesn't extract the WinXX ACLs, so file attributes other than
2303 the equivalent (as provided by smbclient) unix attributes are not
2304 backed up.
2305
2306 =item Locked files are not backed up
2307
2308 Under WinXX a locked file cannot be read by smbclient.  Such files will
2309 not be backed up.  This includes the WinXX system registry files.
2310
2311 This is especially troublesome for Outlook, which stores all its data
2312 in a single large file and keeps it locked whenever it is running.
2313 Since many users keep Outlook running all the time their machine
2314 is up their Outlook file will not be backed up.  Sadly, this file
2315 is the most important file to backup.  As one workaround, Microsoft has
2316 a user-level application that periodically asks the user if they want to
2317 make a copy of their outlook.pst file.  This copy can then be backed up
2318 by BackupPC.  See L<http://office.microsoft.com/downloads/2002/pfbackup.aspx>.
2319
2320 Similarly, all of the data for WinXX services like SQL databases,
2321 Exchange etc won't be backed up.  If these applications support
2322 some kind of export or utility to save their data to disk then this
2323 can =used to create files that BackupPC can backup.
2324
2325 So far, the best that BackupPC can do is send warning emails to
2326 the user saying that their outlook files haven't been backed up in
2327 X days.  (X is configurable.)  The message invites the user to
2328 exit Outlook and gives a URL to manually start a backup.
2329
2330 I suspect there is a way of mirroring the outlook.pst file so
2331 that at least the mirror copy can be backed up.  Or perhaps a
2332 manual copy can be started at login.   Does some WinXX expert
2333 know how to do this?
2334
2335 Comment: two users have noted that there are commercial OFM (open file
2336 manager) products that are designed to solve this problem, for example
2337 from St. Bernard or Columbia Data Products. Apparently Veritas and
2338 Legato bundle this product with their commercial products.  See for
2339 example L<http://www.stbernard.com/products/docs/ofm_whitepaperV8.pdf>.
2340 If anyone tries these programs with BackupPC please tell us whether or
2341 not they work.
2342
2343 =item Don't expect to reconstruct a complete WinXX drive
2344
2345 The conclusion from the last few items is that BackupPC is not intended
2346 to allow a complete WinXX disk to be re-imaged from the backup. Our
2347 approach to system restore in the event of catastrophic failure is to
2348 re-image a new disk from a generic master, and then use the BackupPC
2349 archive to restore user files.
2350
2351 It is likely that linux/unix backups done using tar (rather than
2352 smb) can be used to reconstruct a complete file system, although
2353 I haven't tried it.
2354
2355 =item Maximum Backup File Sizes
2356
2357 BackupPC can backup and manage very large file sizes, probably as large
2358 as 2^51 bytes (when a double-precision number's mantissa can no longer
2359 represent an integer exactly).  In practice, several things outside
2360 BackupPC limit the maximum individual file size.  Any one of the
2361 following items will limit the maximum individual file size:
2362
2363 =over 4
2364
2365 =item Perl
2366
2367 Perl needs to be compiled with uselargefiles defined. Check your
2368 installation with:
2369
2370     perl -V | egrep largefiles
2371
2372 Without this, the maximum file size will be 2GB.
2373
2374 =item File system
2375
2376 The BackupPC pool and data directories must be on a file system that
2377 supports large files.
2378
2379 Without this, the maximum file size will be 2GB.
2380
2381 =item Transport
2382
2383 The transport mechanism also limits the maximum individual file size.
2384
2385 GNU tar maximum file size is limited by the tar header format. The tar
2386 header uses 11 octal digits to represent the file size, which is 33 bits
2387 or 8GB.  I vaguely recall (but I haven't recently checked) that GNU tar
2388 uses an extra octal digit (replacing a trailing delimiter) if necessary,
2389 allowing 64GB files.  So tar transport limits the maximum file size to
2390 8GB or perhaps 64GB.  It is possible that files >= 8GB don't work; this
2391 needs to be looked into.
2392
2393 Smbclient is limited to 4GB file sizes.  Moreover, a bug in smbclient
2394 (mixing signed and unsigned 32 bit values) causes it to incorrectly
2395 do the tar octal conversion for file sizes from 2GB-4GB.  BackupPC_tarExtract
2396 knows about this bug and can recover the correct file size.  So smbclient
2397 transport works up to 4GB file sizes.
2398
2399 =back
2400
2401 =item Some tape backup systems aren't smart about hard links
2402
2403 If you backup the BackupPC pool to tape you need to make sure that the
2404 tape backup system is smart about hard links. For example, if you
2405 simply try to tar the BackupPC pool to tape you will backup a lot more
2406 data than is necessary.
2407
2408 Using the example at the start of the installation section, 65 hosts are
2409 backed up with each full backup averaging 3.2GB. Storing one full backup
2410 and two incremental backups per laptop is around 240GB of raw data. But
2411 because of the pooling of identical files, only 87GB is used (with
2412 compression the total is lower). If you run du or tar on the data
2413 directory, there will appear to be 240GB of data, plus the size of the
2414 pool (around 87GB), or 327GB total.
2415
2416 If your tape backup system is not smart about hard links an alternative
2417 is to periodically backup just the last successful backup for each host
2418 to tape.  Another alternative is to do a low-level dump of the pool
2419 file system (ie: /dev/hda1 or similar) using dump(1).
2420
2421 Supporting more efficient tape backup is an area for further
2422 development.
2423
2424 =item Incremental backups might included deleted files
2425
2426 To make browsing and restoring backups easier, incremental backups
2427 are "filled-in" from the last complete backup when the backup is
2428 browsed or restored.
2429
2430 However, if a file was deleted by a user after the last full backup, that
2431 file will still appear in the "filled-in" incremental backup. This is not
2432 really a specific problem with BackupPC, rather it is a general issue
2433 with the full/incremental backup paradigm.  This minor problem could be
2434 solved by having smbclient list all files when it does the incremental
2435 backup.  Volunteers anyone?
2436
2437 =back
2438
2439 Comments or suggestions on these issues are welcome.
2440
2441 =head2 Security issues
2442
2443 Please read this section and consider each of the issues carefully.
2444
2445 =over 4
2446
2447 =item Smb share password
2448
2449 An important security risk is the manner in which the smb share
2450 passwords are stored. They are in plain text. As described in
2451 L<Step 3: Setting up config.pl|step 3: setting up config.pl> there are four
2452 ways to tell BackupPC the smb share password (manually setting an environment
2453 variable, setting the environment variable in /etc/init.d/backuppc,
2454 putting the password in __TOPDIR__/conf/config.pl, or putting the
2455 password in __TOPDIR__/pc/$host/config.pl). In the latter 3 cases the
2456 smb share password appears in plain text in a file.
2457
2458 If you use any of the latter three methods please make sure that the file's
2459 permission is appropriately restricted.  If you also use RCS or CVS, double
2460 check the file permissions of the config.pl,v file.
2461
2462 In future versions there will probably be support for encryption of the
2463 smb share password, but a private key will still have to be stored in a
2464 protected place.  Comments and suggestions are welcome.
2465
2466 =item BackupPC socket server
2467
2468 In v1.5.0 the primary method for communication between the CGI program
2469 (BackupPC_Admin) and the server (BackupPC) is via a unix-domain socket.
2470 Since this socket has restricted permissions, no local user should be
2471 able to connect to this port.  No backup or restore data passes through
2472 this interface, but an attacker can start or stop backups and get status
2473 through this port.
2474
2475 If the Apache server and BackupPC_Admin run on a different host to
2476 BackupPC then a TCP port must be enabled by setting $Conf{ServerPort}.
2477 Anyone can connect to this port.  To avoid possible attacks via the TCP
2478 socket interface, every client message is protected by an MD5 digest.
2479 The MD5 digest includes four items:
2480
2481 =over 4
2482
2483 =item *
2484
2485 a seed that is sent to the client when the connection opens
2486
2487 =item *
2488
2489 a sequence number that increments for each message
2490
2491 =item *
2492
2493 a shared secret that is stored in $Conf{ServerMesgSecret}
2494
2495 =item *
2496
2497 the message itself.
2498
2499 =back
2500
2501 The message is sent in plain text preceded by the MD5 digest.  A
2502 snooper can see the plain-text seed sent by BackupPC and plain-text
2503 message from the client, but cannot construct a valid MD5 digest since
2504 the secret in $Conf{ServerMesgSecret} is unknown.  A replay attack is
2505 not possible since the seed changes on a per-connection and
2506 per-message basis.
2507
2508 So if you do enable the TCP port, please set $Conf{ServerMesgSecret}
2509 to some hard-to-guess string.  A denial-of-service attack is possible
2510 with the TCP port enabled.  Someone could simply connect many times
2511 to this port, until BackupPC had exhausted all its file descriptors,
2512 and this would cause new backups and the CGI interface to fail.  The
2513 most secure solution is to run BackupPC and Apache on the same machine
2514 and disable the TCP port.
2515
2516 By the way, if you have upgraded from a version of BackupPC prior to
2517 v1.5.0 you should set $Conf{ServerPort} to -1 to disable the TCP port.
2518
2519 =item Installation permissions
2520
2521 It is important to check that the BackupPC scripts in __INSTALLDIR__/bin
2522 and __INSTALLDIR__/lib cannot be edited by normal users. Check the
2523 directory permissions too.
2524
2525 =item Pool permissions
2526
2527 It is important to check that the data files in __TOPDIR__/pool,
2528 __TOPDIR__/pc and __TOPDIR__/trash cannot be read by normal users.
2529 Normal users should not be able to see anything below __TOPDIR__.
2530
2531 =item Host shares
2532
2533 Enabling shares on hosts carries security risks.  If you are on a private
2534 network and you generally trust your users then there should not be a
2535 problem. But if you have a laptop that is sometimes on public networks
2536 (eg: broadband or even dialup) you should be concerned.  A conservative
2537 approach is to use firewall software, and only enable the netbios and
2538 smb ports (137 and 139) on connections from the host running BackupPC.
2539
2540 =item SSH key security
2541
2542 Using ssh for linux/unix clients is quite secure, but the security is
2543 only as good as the protection of ssh's private keys. If an attacker can
2544 devise a way to run a shell as the BackupPC user then they will have
2545 access to BackupPC's private ssh keys. They can then, in turn, ssh to
2546 any client machine as root (or whichever user you have configured
2547 BackupPC to use). This represents a serious compromise of your entire
2548 network.  So in vulnerable networks, think carefully about how to protect
2549 the machine running BackupPC and how to prevent attackers from gaining
2550 shell access (as the BackupPC user) to the machine.
2551
2552 =item CGI interface
2553
2554 The CGI interface, __CGIDIR__/BackupPC_Admin, needs access to the pool
2555 files so it is installed setuid to __BACKUPPCUSER__. The permissions of
2556 this file need to checked carefully. It should be owned by
2557 __BACKUPPCUSER__ and have user and group (but not other) execute
2558 permission. To allow apache/httpd to execute it, the group ownership
2559 should be something that apache/httpd belongs to.
2560
2561 The Apache configuration should be setup for AuthConfig style,
2562 using a .htaccess file so that the user's name is passed into
2563 the script as $ENV{REMOTE_USER}.
2564
2565 If normal users could directly run BackupPC_Admin then there is a serious
2566 security hole: since it is setuid to __BACKUPPCUSER__ any user can
2567 browse and restore any backups. Be aware that anyone who is allowed to
2568 edit or create cgi scripts on your server can execute BackupPC_Admin as
2569 any user!  They simply write a cgi script that sets $ENV{REMOTE_USER} and
2570 then execs BackupPC_Admin.  The exec succeeds since httpd runs the first
2571 script as user httpd/apache, which in turn has group permission to
2572 execute BackupPC_Admin.
2573
2574 While this setup should be safe, a more conservative approach is to
2575 run a dedicated Apache as user __BACKUPPCUSER__ on a different port.
2576 Then BackupPC_Admin no longer needs to be setuid, and the cgi
2577 directories can be locked down from normal users.  Moreover, this
2578 setup is exactly the one used to support mod_perl, so this provides
2579 both the highest performance and the lowest security risk.
2580
2581 =back
2582
2583 Comments and suggestions are welcome.
2584
2585 =head1 Configuration File
2586
2587 The BackupPC configuration file resides in __TOPDIR__/conf/config.pl.
2588 Optional per-PC configuration files reside in __TOPDIR__/pc/$host/config.pl.
2589 This file can be used to override settings just for a particular PC.
2590
2591 =head2 Modifying the main configuration file
2592
2593 The configuration file is a perl script that is executed by BackupPC, so
2594 you should be careful to preserve the file syntax (punctuation, quotes
2595 etc) when you edit it. It is recommended that you use CVS, RCS or some
2596 other method of source control for changing config.pl.
2597
2598 BackupPC reads or re-reads the main configuration file and
2599 the hosts file in three cases:
2600
2601 =over 4
2602
2603 =item *
2604
2605 Upon startup.
2606
2607 =item *
2608
2609 When BackupPC is sent a HUP (-1) signal.  Assuming you installed the 
2610 init.d script, you can also do this with "/etc/init.d/backuppc reload".
2611
2612 =item *
2613
2614 When the modification time of config.pl file changes.  BackupPC
2615 checks the modification time once during each regular wakeup.
2616
2617 =back
2618
2619 Whenever you change the configuration file you can either do
2620 a kill -HUP BackupPC_pid or simply wait until the next regular
2621 wakeup period.
2622
2623 Each time the configuration file is re-read a message is reported in the
2624 LOG file, so you can tail it (or view it via the CGI interface) to make
2625 sure your kill -HUP worked. Errors in parsing the configuration file are
2626 also reported in the LOG file.
2627
2628 The optional per-PC configuration file (__TOPDIR__/pc/$host/config.pl)
2629 is read whenever it is needed by BackupPC_dump, BackupPC_link and others.
2630
2631 =head2 Configuration file includes
2632
2633 If you have a heterogeneous set of clients (eg: a variety of WinXX and
2634 linux/unix machines) you will need to create host-specific config.pl files
2635 for some or all of these machines to customize the default settings from
2636 the master config.pl file (at a minimum to set $Conf{XferMethod}).
2637
2638 Since the config.pl file is just regular perl code, you can include
2639 one config file from another.  For example, imagine you had three general
2640 classes of machines: WinXX desktops, linux machines in the DMZ and
2641 linux desktops.  You could create three config files in __TOPDIR__/conf:
2642
2643     __TOPDIR__/conf/ConfigWinDesktop.pl
2644     __TOPDIR__/conf/ConfigLinuxDMZ.pl
2645     __TOPDIR__/conf/ConfigLinuxDesktop.pl
2646
2647 From each client's directory you can either add a symbolic link to
2648 the appropriate config file:
2649
2650     cd __TOPDIR__/pc/$host
2651     ln -s ../../conf/ConfigWinDesktop.pl config.pl
2652
2653 or, better yet, create a config.pl file in __TOPDIR__/pc/$host
2654 that contains this line:
2655
2656     do "../../conf/ConfigWinDesktop.pl";
2657
2658 This alternative allows you to set other configuration options
2659 specific to each host (perhaps even overriding the settings in
2660 the included file).
2661
2662 Note that you could also include snippets of configuration settings
2663 from the main configuration file.  However, be aware that the
2664 modification-time checking that BackupPC does only applies to the
2665 main configuration file: if you change one of the included files,
2666 BackupPC won't notice.  You will need to either touch the main
2667 configuration file too, or send BackupPC a HUP (-1) signal.
2668
2669 =head1 Configuration Parameters
2670
2671 The configuration parameters are divided into five general groups.
2672 The first group (general server configuration) provides general
2673 configuration for BackupPC.  The next two groups describe what to
2674 backup, when to do it, and how long to keep it.  The fourth group
2675 are settings for email reminders, and the final group contains
2676 settings for the CGI interface.
2677
2678 All configuration settings in the second through fifth groups can
2679 be overridden by the per-PC config.pl file.
2680
2681 __CONFIGPOD__
2682
2683 =head1 Version Numbers
2684
2685 Starting with v1.4.0 BackupPC switched to a X.Y.Z version numbering
2686 system, instead of X.0Y. The first digit is for major new releases, the
2687 middle digit is for significant feature releases and improvements (most
2688 of the releases have been in this category), and the last digit is for
2689 bug fixes. You should think of the old 1.00, 1.01, 1.02 and 1.03 as
2690 1.0.0, 1.1.0, 1.2.0 and 1.3.0.
2691
2692 =head1 Author
2693
2694 Craig Barratt  <cbarratt@users.sourceforge.net>
2695
2696 See L<http://backuppc.sourceforge.net>.
2697
2698 =head1 Copyright
2699
2700 Copyright (C) 2001-2002 Craig Barratt
2701
2702 =head1 Credits
2703
2704 Ryan Kucera contributed the directory navigation code and images
2705 for v1.5.0.  He also contributed the first skeleton of BackupPC_restore.
2706
2707 Guillaume Filion wrote BackupPC_zipCreate and added the CGI support
2708 for zip download, in addition to some CGI cleanup, for v1.5.0.
2709
2710 Several people have reported bugs or made useful suggestions; see the
2711 ChangeLog.
2712
2713 Your name could appear here in the next version!
2714
2715 =head1 License
2716
2717 This program is free software; you can redistribute it and/or modify it
2718 under the terms of the GNU General Public License as published by the
2719 Free Software Foundation; either version 2 of the License, or (at your
2720 option) any later version.
2721
2722 This program is distributed in the hope that it will be useful,
2723 but WITHOUT ANY WARRANTY; without even the implied warranty of
2724 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
2725 General Public License for more details.
2726
2727 You should have received a copy of the GNU General Public License in the
2728 LICENSE file along with this program; if not, write to the Free Software
2729 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.