File: Tutorial.html

package info (click to toggle)
dar 2.4.5.debian.1-1
  • links: PTS
  • area: main
  • in suites: wheezy
  • size: 10,608 kB
  • sloc: cpp: 50,637; sh: 12,281; ansic: 836; xml: 694; makefile: 369; csh: 104; perl: 43; sed: 16
file content (946 lines) | stat: -rw-r--r-- 43,967 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html><head>






  <meta content="text/html; charset=ISO-8859-1" http-equiv="content-type"><title>DAR - Tutorial</title></head><body style="background-color: rgb(221, 221, 221); color: rgb(0, 0, 170);" alink="#ff0000" link="#0000ff" vlink="#000055">
<center>
<table style="width: 90%; text-align: left; margin-left: auto; margin-right: auto;" border="0" cellpadding="2" cellspacing="2">
  <tbody>
    <tr>
      <td style="vertical-align: top; width: 161px;"><a href="index.html"><img style="border: 0px solid ; width: 160px; height: 120px;" alt="Dar Documentation" src="dar_s_doc.jpg"></a><br>
      </td>
      <td style="vertical-align: top;">
      <h1 style="text-align: center;"><br>
      </h1>
      <h1 style="text-align: center;">TUTORIAL</h1>
      </td>
    </tr>
  </tbody>
</table>
<h1 style="text-align: center;"></h1>
<br>
<hr style="width: 100%; height: 2px;"><br>
<span style="font-weight: bold;"></span>
<table style="width: 90%; text-align: left; margin-left: auto; margin-right: auto;" border="0" cellpadding="2" cellspacing="2">
  <tbody>
    <tr>
      <td style="vertical-align: top;">
      <h2 style="text-align: justify;">Introduction</h2>
      <div style="margin-left: 40px; text-align: justify;">This tutorial shows you <span style="text-decoration: underline;">how to backup</span> your file system (partially or
totally) on ZIP drives (you can replace Zip by floppies, or USB key if you prefer) and most important, <span style="text-decoration: underline;">how to restore</span> your system from scratch in case of hard disk failure (or other cataclysms).<br>
      <br>
GUI over libdar are nice to use, to backup once.&nbsp; Scripting using
dar is better as it can run in background and be scheduled every day,
this is a matter of taste. But you need a robust solution that works
also within a minimum environement to be able to restore your system.
Dar provides a lot a features to backup (defining compression etc.),
thus a GUI or a script is welcome in this process, however only very
few are necessary to restore, and in that situation, dar_static (the
statically linked version of dar) is to my point of view, the best
solution to use.<br>
      </div>
      <div style="text-align: justify;"><br>
      </div>
      <h3>STEP 1: The FULL backup<br>
      </h3>
      
      <div style="text-align: justify;">We need first to make a full
backup, let's go:<br>
      <br>
The size of a zip drive is 100 MB,<br>
*** here comes the option: -s 100M<br>
This tells dar to not create a single backup file but to split it in
several files with a size of at most 100 Megabytes.<br>
      <br>
On your first ZIP drive we want to copy the dar binary outside the
backup to be able to restore it in case of hard disk failure, for
example. <span style="text-decoration: underline; font-weight: bold;">IMPORTANT:</span>
dar binary relies on several libraries which must also be available in
the rescue system or copied with the dar binary. But, if you don't want
to worry about needed libraries, there is a static version of dar which
only difference is that it has all required library included in it (thus it is a slightly larger binary). Its name is "<span style="font-weight: bold;">dar_static</span>",
and its main reason of existence is to be placed beside backups in case
something goes wrong in your system. Note that dar_static is useless
for windows, you will always need the <a href="http://cygwin.com/">Cygwin</a>
dll. <br>
      <br>
(You could also add man pages or a copy of this tutorial, if you are scared not to be able to
remember all the many feature of dar ;-) and find the -h option too
sparse). Note that all the dar documentation is available on the web. OK you need an
Internet access to read them.<br>
      <br>
This make the free space on the first ZIP floppy a bit smaller: 95 MB.<br>
*** Here comes the option: -S 95M<br>
(Note that '-s' is lowercase for all the slices, and '-S' is UPPERCASE
meaning the initial slice only).<br>
      <br>
We need to pause between slices to change the ZIP floppy when it is
full <br>
*** here comes the option: -p -b<br>
telling dar to pause before writing a new slice (-p) and to ring the
terminal bell (-b) when user action is needed.<br>
      <br>
We will compress data inside the backup <br>
*** here comes the option: -z<br>by
default -z option uses gzip compression algorithm (bzip2 and lzo are
also available). Optionally, if speed is more important than archive
size, you can degrade compression specifying the compression level :
-z1 for example.&nbsp; <br>
      <br>
Now, we want to backup the whole file system. <br>
*** here comes the option: -R /<br>
This tells dar that no files out of this directory tree will be saved
(here, it means that no files will be excluded from the backup, if no
filter is specified, see below) here "R" stands for "Root".<br>
      <br>
There are some files you don't want to backup like backup files
generated by emacs "*~" and .*~".<br>
*** here comes the options: -X "*~" -X ".*~"<br>
Note that you have to quote the mask for it not to be interpreted by
the shell, the -X options (X for eXclude) do not apply to directories, nor to path, they
just apply to filenames. (see also -I option (I for Include) in man page for more information)<br>
      <br>
Among these files are several sub-trees you must not save: the /proc
file system for example, as well as the /dev/pts and /sys . These are virtual
file systems, saving them would only make your backup bigger filled
with useless stuff.<br>
*** here come the options: -P dev/pts -P proc -P sys<br>
Note that path must be relative to -R option (thus no leading '/' must
be used) Unlike the -X/-I options, the -P option (P for "prune") can apply to a directory. If
a directory matches -P option, all its subdirectory will also be
excluded. note also that -P can receive wildcards, and they must be
quoted not to be interpreted by the shell: <code>-P "home/*/.mozilla/cache"</code>
for example. Lastly, -P can also be used to exclude a plain file (if
you don't want to exclude all files of a given name using -X option):
      <code>-P home/joe/.bashrc</code> for example would only exclude joe's .bashrc file
not any other file, while -<code>X .bashrc </code>would exclude any file of that name
including joe's file. (see also -g, -[, -] options in man page for more, as well as the "file selection in brief" paragraph)<br>
      <br>
More importantly we must not save the backup itself:<br>
*** here comes the option: -P mnt/zip<br>
assuming that your ZIP is mounted under /mnt/zip . We could also have
excluded all files of extension "dar" which are backup generated by dar using <code>-X "*.*.dar"</code>, but this would have&nbsp; also exclude other dar archive from the
backup, which may not always fit your need.<br>
      <br>
Now, as we don't save the /dev/pts /proc and /mnt/zip directories, we
would have to create these directory mount-points by hand at recovery
time to be able to mount the corresponding filesystems. But we can
better
use the -D option, which does not totally ignore excluded directories
but rather stores them as empty.<br>
*** here comes the option -D<br>
thus at recovery time they will be generated automatically<br>
      <br>
Lastly, we have to give a name to this full backup. Let's call it
"linux_full" as it is supposed to take place on the ZIP drive, its path
is /mnt/zip/linux_full<br>
*** here comes the option: -c /mnt/zip/linux_full<br>
Note that linux_full is not a complete filename, it is a "basename", on
which dar will add a number and an extension ".dar", this way the first
slice will be a file of name linux_full.1.dar located in /mnt/zip<br>
      <br>
Now, as we will have to mount and umount the /mnt/zip file system, we
must not have any process using it, in particular, dar current
directory must no be /mnt/zip so we change to / for example.<br>
      <br>
All together we follow this procedure for our example:<br>
      <br>
Put an empty ZIP floppy in the device, and mount it according to your
/etc/fstab file.<br>
      <br>
      </div><div style="margin-left: 40px; text-align: justify;"><code>mount
/mnt/zip</code><br>
      </div>
      <div style="text-align: justify;"><br>
Copy the dar binary to the first zip drive (to be able to restore in case of
big problem, like a hard disk failure) and eventually man pages and/or this tutorial.<br>
      <br>
      </div>
      <div style="margin-left: 40px; text-align: justify;"><code>cp
`which dar_static` /mnt/zip</code><br>
      </div>
      <div style="text-align: justify;"><br>
then, type the following:<br>
<br>
      </div>
      <div style="margin-left: 40px; text-align: justify;"><code>cd /</code><br>
      <code>dar -c /mnt/zip/linux_full -s 100M -S 95M -p -b -z -R / -X
"*~" -X ".*~" -P dev/pts -P sys -P proc -P mnt/zip -D</code><br>
      <code></code></div>
      <div style="text-align: justify;"><br>Note
that option order has no importance. Some options may be used
several times (-X, -I, -P) some others cannot (see man page for more).
When the first slice will be done, DAR will pause, ring the terminal and display a
message. You will have to unmount the floppy<br>
      <code></code><br>
      <code></code></div>
      <div style="margin-left: 40px; text-align: justify;"><code>umount
/mnt/zip<br>
      <br>
      </code></div>
      <div style="text-align: justify;">eject and replace the floppy by
an empty new one and mount it<br>
      <br>
      </div>
      <div style="margin-left: 40px; text-align: justify;"><code>mount
/mnt/zip</code><br>
      </div>
      <div style="text-align: justify;"><br>
To be able to do that, you can swap to another virtual console pressing
ALT+F? keys (if under Linux), or open another xterm if under X-Windows, or suspend dar
by typing CTRL-Z and reactivating it after mounting/unmounting by
typing `fg' (without the quotes).<br>
      <br>
Then proceed with dar for the next slice, pressing the &lt;enter&gt; key.<br>
      <br>
Dar will label slices this way:<br>
slice 1: linux_full.1.dar<br>
slice 2: linux_full.2.dar<br>
and so on.<br>
      <br>
That's it! We have finished the first step, it may take a long time
depending on the size of the data to backup. The following step
(differential backup) however can be done often, and it will stay fast
every time (OK, except if a big part of your system has changed, in
that case you can consider making another full backup).<br>
      <br>
Just a little check on the archive you've just made: suppose you want
to read the content of the backup you made, you would have<br>
to run:<br>
      <br>
      </div>
      <div style="margin-left: 40px; text-align: justify;"><code>dar -l
/mnt/zip/linux_full</code><br>
      </div>
      <div style="text-align: justify;"><br>It is recommended to either check
the archive contents, or compare what's stored in it with the current
file system before relying on it:<br>
      <br>
      </div>
      <div style="margin-left: 40px; text-align: justify;"><code>dar -t
/mnt/zip/linux_full</code><br>
      </div>
      <div style="text-align: justify;"><br>
will check the whole archive, while <code></code><br>
      <br>
It is recommended to first unmount and remount removable disk, this to flush the
cache. Else you may read data from cache (in memory) and do not detect
an error on you disk. dar -t cannot check a single slice, it checks
all the archive. If you need to check a single slice (for example after
burning it on CD) you can use the diff command : for example, you burn
the last completed slices on CD-R, but have just enough free space to
store one slice on disk. You can thus check the slice typing something
like:<br>
      <br>
      </div>
      <div style="margin-left: 40px; text-align: justify;"><code>diff
/mnt/cdrom/linux_full.132.dar /tmp/linux_full.132.dar</code><br>
      </div>
      <div style="text-align: justify;"><br>
where 132 has to be replaced by the real slice number.<br>
      <br>
You can also add the --hash command when you create the archive (for example <span style="font-family: Courier;">--hash md5</span>),
it will produce for each slice a small hash file named after the slice name
"linux_full.1.dar.md5", "linux_full.2.dar.md5", etc. Then using the
unix standard command "md5sum" you can check the integrity of the slice
:<br>
      <br>
      <div style="margin-left: 40px;"><code>md5sum -c linux_full.1.dar.md5<br>
      </code></div>

      <br>
If all is ok for the slice on the zip disc (which is when diff does not complain or md5sum returns "OK"), you can delete the
slice from the hard disk (/tmp/slice.x.dar), and continue with dar.
Else, you will have to burn/write the slice on a new disk or retry on the same.<br>
      <br>
Instead of testing the whole archive you could also compare it with the just saved system:<br>
      <br>
      </div>
      <div style="margin-left: 40px; text-align: justify;"><code>dar -d
/mnt/zip/linux_full -R /</code><br>
      </div>
      <div style="text-align: justify;"><br>
will compare the archive with filesystem tree located at / . Same
remark as previously, it is recommended to first unmount and mount the
floppy to flush the system cache.<br>
      <br>
      </div>
      <h3 style="text-align: justify;">STEP 2: DIFFERENTIAL BACKUP</h3>
      <div style="text-align: justify;">The only thing to add is the
base name of the backup we take as reference<br>
*** here comes the option: -A /mnt/zip/linux_full<br>
      <br>
Of course, we have to choose another name for that new backup, let's call
it linux_diff1<br>
*** here comes the option: -c /mnt/zip/linux_diff1<br>
      <br>
Last point: if you want to put the new backup at the end of the full
backup, you will have to change the -S option according to the
remaining space on the last disk. suppose the last slice of linux_full takes 34MB
you have 76MB available for the first slice of the differential backup
(and always 100MB for the following ones),<br>
*** here comes the option: -S 76M<br>
but if you want to put the backup on a new floppy, just forget the -S
option.<br>
      <br>
here we also want to produce a hash file to test each slice integrity before removing it from hard disk:<br>
*** here comes the option: --hash md5<br>
      <br>
All together we get:<br>
      <br>
      </div>
      <div style="margin-left: 40px; text-align: justify;"><code>dar -c
/mnt/zip/linux_diff1 -A /mnt/zip/linux_full -s 100M -S 76M -p -b -z -R
/ -X "*~" -X ".*~" -P dev/pts -P proc -P mnt/zip -P sys -D --hash md5</code><br>
      </div>
      <div style="text-align: justify;"><br>The
only new point is that, just before effectively starting
to backup, dar will ask for the last slice of the
archive of reference (linux_full), then dar will pause (thanks to the
-p option) for you to change the disk and put the one where you want to
write the new backup's first slice, then pause again for you to change
the disk for the second slice and so on.<br>
      <br>
      </div>
      <h3 style="text-align: justify;">STEP 3: ENDLESS DIFFERENTIAL
BACKUP</h3>
      <div style="text-align: justify;">You can make another
differential backup, taking linux_diff1 as reference, in this case you
would change only the following<br>
      <br>
      </div>
      <div style="margin-left: 40px; text-align: justify;"><code>-c
/mnt/zip/linux_diff2 -A /mnt/zip/linux_diff1</code><br>
      </div>
      <div style="text-align: justify;"><br>You
could also decide to change of device, taking a 1'44MB floppy or a
CD-R,&nbsp; this would not cause any problem at all. After some time
when
you get many differential backup for a single full backup, you will
have to make a new full backup, depending on your available time for
doing it, or on your patient if one day you have to recover the whole
data after a disk crash: You would then have to restore the full
backup, then all the following differential backup up to the most
recent one. This requires more user intervention than restoring a
single full backup, all is a matter of balance, between the time it
takes to backup and the time it takes to restore. <br>
      <br>
Note, that starting release 1.2.0 a new command appeared that helps
restoring <span style="text-decoration: underline;">a small set of file</span> from a lot a differential backup. Its
name is dar_manager. See at the end of this tutorial and man page for
more.<br>
      <br>
Another solution, is when you have too much differential backup, is to
make the next differential backup taking the last full_backup as
reference, instead of the last differential backup done. This way, it
will take less time than doing a full backup, and you will not have to
restore all intermediate differential backup. Some people make
difference between "incremental" backup and "differential" backup. Here
for dar, they look like the same, it just depends on the nature of the reference backup
you take.<br>
      <br>
Of course, a given backup can be used as reference for several
differential backup, there is no limitation in number nor in nature
(the reference can be a full of differential backup).<br>
      <br>
      <br>
      </div>
      <h3 style="text-align: justify;">STEP 4: RECOVER AFTER A DISK
CRASH</h3>
      
      <div style="text-align: justify;">Sorry, it arrived, your old
disk has
crashed. OK, you are happy because you have now a good argument to buy
the very fast and very enormous very lastest hard disk available. Usually,
you also cry because you have lost data and you will have to reinstall
all your system, that was working for so long! <br>
      <br>
If however the last backup you made is recent, then keep smiling! OK,
you have installed your new hard disk and configured you BIOS to it (if
necessary). You will need a bootable floppy, with a minimum Linux
system on it, that allows you to access your zip drive and your new
empty hard disk (in the case your backup resided on ZIP disk). For
example use the Slackware floppy disks, they are nicely done. You don't
need to install something on your brand-new disk, just make partitions
and format as you want: We suppose your new disk is /dev/hda and
/dev/sga is your ZIP drive. <br>
      <br>
1. Create the partition table as you wish, using<br>
      </div><div style="margin-left: 40px; text-align: justify;"><code>fdisk
/dev/hda</code><br>
      </div>
      
      <div style="text-align: justify;"><br>
2. Format the partition which will receive your data, dar is filesystem
independent, you can use ext2 (as here in the example), ext3, ext4,
ReiserFS, Minix, UFS, HFS Plus, XFS, whatever is the Unix-like
filesystem you need, even if the backed up data did not reside on such
filesystem at backup time!<br>
</div><div style="margin-left: 40px; text-align: justify;"><code>mke2fs
/dev/hda1<span style="font-family: serif;"></span></code></div>
      <div style="margin-left: 40px; text-align: justify;">
      </div>

      
      <div style="text-align: justify;"><br>
3. Additionally format the swap partition (if needed)<br>
      </div>

      <div style="margin-left: 40px; text-align: justify;"><code>mkswap
-c /dev/hda2</code><br>
      </div>
      <div style="text-align: justify;"><br>
3bis. If you have a lot of file to restore, you can activate the swap
on the partition of your new hard drive:<br>
      </div>
      <div style="margin-left: 40px; text-align: justify;"><code>swapon
/dev/hda2</code><br>
      </div>
      <div style="text-align: justify;"><br>
4. Now we must mount the hard disk, somewhere.<br>
      <br>
      </div>
      <div style="margin-left: 40px; text-align: justify;"><code>cd /</code><br>
      <code>mkdir disk</code><br>
      <code>mount -t ext2 /dev/hda1 /disk<br>
</code><code><br>
      </code></div>
      <div style="text-align: justify;">would do the trick<br>
      <br>
4bis. If you want to restore your system over several partitions like
/usr /var /home and / you must create the partitions, format them. Then
create the directories that will be used as mounting point an mount the
partitions on these directories:<br>
      <br>
      </div>
      <div style="margin-left: 40px; text-align: justify;"><code>mkdir
/disk/usr /disk/var /disk/home<br>
mount -t ext2 /dev/hda2 /disk/usr<br>
mount -t ext2 /dev/hda3 /disk/var<br>
mount -t ext2 /dev/hda4 /disk/home<br>
      <br>
      </code></div>
      <div style="text-align: justify;">for example if you have / , /usr ,
/var and /home partitions.<br>
      <br>
5. We need to copy the dar binary from the ZIP to your disk: insert the
floppy ZIP containing the dar_static binary to be able to freely change of ZIP disk later on:<br>
      </div>
      <div style="margin-left: 40px; text-align: justify;"><code><br>
cd /</code><br>
      <code>mkdir /zip</code><br>
      <code>mount -t ext2 /dev/sga /zip</code><br>
      <code>cp /zip/dar_static /disk<br>
      <br>
      </code></div>
      <div style="text-align: justify;">where /dev/sga points to your
zip drive, we will remove dar_static from your new hard drive at the end of restoration.<br>
      <br>
6. Now we can restore the archive. The stuff has to go in /disk subdirectory<br>
*** here comes the option: -R /disk<br>
      <br>
7. The process may be long, thus it might be useful to be noticed when
a user action is required by dar.<br>
*** here comes the option: -b<br>
note that -p option is not required here because if a slice is missing
dar will pause and ask you its number. If slice "0" is requested, it
means the "last" slice of the backup.<br>
      <br>
let's go restoring!<br>
      </div>
      <div style="margin-left: 40px; text-align: justify;"><code>/disk/dar_static
-x /zip/linux_full -R /disk -b</code><br>
      </div>
      <div style="text-align: justify;"><br>
... and when the next zip floppy is needed,<br>
      </div>
      <div style="margin-left: 40px; text-align: justify;"><code>umount
/zip<br>
      <br>
</code>
      </div>
      <div style="text-align: justify;">change the floppy and mount it:<br>
      </div>
      <div style="margin-left: 40px; text-align: justify;"><code>mount
-t ext2 /dev/sga /zip<br>
      <br>
</code>
      </div>
      <div style="text-align: justify;">as previously, use an alter
xterm /
virtual console or suspend dar by CTRL-Z and awake it back by the 'fg'
command. Then press &lt;enter&gt; to proceed with dar<br>
      <br>
      <br>7.
Once finished with the restoration of linux_full, we have to do the
same with any following differential/incremental backup. However, doing
so will warn you any time dar restores a more recent file (file
overwriting) or any time a file
that has been removed since the backup of reference, has to be removed
from file system (suppression). If you don't want to press the
&lt;enter&gt; key several thousand times: <br>
*** here comes the option: -w<br>
(don't warn). All file will be overwritten without warning, but you may
also use the -r option, that will avoid trying to overwrite more recent
files than those on filesystem. It might not be of a great use here, as you
restore a differential backup after its reference backup on an
initially empty disk (file stored in the differential archive are more
recent than those in the reference). But, it might be useful in some
other situations.<br>
      <br>
All together it makes:<br>
      </div>
      <div style="margin-left: 40px; text-align: justify;"><code>/disk/dar_static
-x /zip/linux_diff1 -R /disk -b -w</code><br>
      </div>
      <div style="text-align: justify;"><br>
Then any additional archive:<br>
      </div>
      <div style="margin-left: 40px; text-align: justify;"><code>/disk/dar_static
-x /zip/linux_diff2 -R /disk -b -w<br>
...<br>
/disk/dar_static -x /zip/linux...&nbsp;&nbsp;&nbsp; -R /disk -b -w</code><br>
      </div>
      <div style="text-align: justify;"><br>
8. Finally, remove the dar binary from the disk:<br>
      </div>
      <div style="margin-left: 40px; text-align: justify;"><code>rm
/disk/dar_static</code><br>
      </div>
      <div style="text-align: justify;"><br>
9. And launch lilo for your Linux box to boot properly (if needed):<br>
      </div>
      
      <div style="margin-left: 40px; text-align: justify;"><code>lilo
-r /disk<br>
      <br>
      <span style="font-family: serif;">If your boot loader is grub, simply launch grub and type at the prompt something like this:<br>
      <br>
      </span></code>
      <div style="margin-left: 40px;"><code><span style="font-family: serif;"><span style="font-family: monospace;">grub&gt; root (hd0,0)</span></span></code><br>
      <code><span style="font-family: serif;"></span></code></div>
      <code><span style="font-family: serif;"><br>
      </span></code>
      </div><div style="text-align: justify;">10. You can reboot you machine and be happy with you brand-new hard
disk with your old precious data on it:<br>
      </div>
      <div style="margin-left: 40px; text-align: justify;"><code>shutdown
-r now</code><br>
      </div>
      <div style="text-align: justify;"><br>
OK, one day, I will make something like a bootable floppy image with
dar inside, maybe with a simple script for user interaction... if you
have already done it, you can tell or send me (or give me the URL
where to get it, for I add a link to it from DAR's Homepage). [Note:
Knoppix seems to include dar]<br>
      <br>
      </div>
      <h3 style="text-align: justify;">STEP 4(bis): recover only some
files</h3>
      <div style="text-align: justify;">Gosh, you have remove a
important
file by error. Thus, you just need to restore it, not the rest of the
full and differential backups.<br>
      <br>
      </div>
      <h4 style="text-align: justify;">a) First method:</h4>
      <div style="text-align: justify;">We could as previously, try all
archive starting from the full backup up to the most recent
differential backup, and restore just the file if it is present in the
archive:<br>
      <code></code><br>
      <code></code></div>
      <div style="margin-left: 40px; text-align: justify;"><code>dar -R
/ -x /zip/linux_full -g home/denis/my_precious_file</code><br>
      </div>
      <div style="text-align: justify;"><br>
This would restore only the file /home/denis/my_precious_file from the
full backup.<br>
      <br>
OK, now we would also have to restore from all differential backup the
same way we did. Of course, this file may have changed since the full
backup.<br>
      <br>
      </div>
      <div style="margin-left: 40px; text-align: justify;"><code>dar -R
/ -x /zip/linux_diff1 -g home/denis/my_precious_file</code><br>
      </div>
      <div style="text-align: justify;"><br>
and so on, up to the last differential archive.<br>
      <br>
      </div>
      <div style="margin-left: 40px; text-align: justify;"><code>dar -R
/ -x /zip/linux_diff29 -g home/denis/my_precious_file</code><br>
      </div>
      <div style="text-align: justify;"><br>
      <br>
      </div>
      <h4 style="text-align: justify;">b) Second method (more
efficient):</h4>
      <div style="text-align: justify;">We will restore our lost file,
starting from the most recent differential backup and *maybe* up to the
full backup. Our file may or may not be present in the a
differential archive as it may have changed or not since the previous
version, thus we have to check if our file is restored, using the -v
option (verbose):<br>
      <br>
      </div>
      <div style="margin-left: 40px; text-align: justify;"><code>dar -R
/ -x /zip/linux_diff29 -v -g home/denis/my_precious_file</code><br>
      </div>
      <div style="text-align: justify;"><br>
If we can see a line like<br>
      <br>
      </div>
      <div style="margin-left: 40px; text-align: justify;"><code>restoring
file: /home/denis/my_precious_file</code><br>
      </div>
      <div style="text-align: justify;"><br>
Then we stops here, because we got the most recent backup version of our
lost file. Otherwise we have to continue with the previous
differential backup, up to the full backup if necessary. This
method has an advantage over the first one, which is not to have *in all
case* the need to use all the backup done since the full backup.<br>
      <br>
If you are lazy (as I am) on the other hand, have a look at dar_manager (at the
end of the tutorial)<br>
      <br>
OK, now you have two files to restore. No problem, just do the second
method but add -r option not to override any more recent file already
restored in a previous step:<br>
      <code></code><br>
      <code></code></div>
      <div style="margin-left: 40px; text-align: justify;"><code>dar -x
/zip/linux_diff29 -R / -r -v -g home/denis/my_precious_file -g etc/fstab</code><br>
      </div>
      <div style="text-align: justify;"><br>
Check the output to see if one or both of your files got restored. If
not, continue with the previous backup, up to the time you have seen
for each file a line indicating it has been restored. Note that the most
recent version of each files may not be located in the same archive,
thus you might get /etc/fstab restored from linux_diff28, and
/home/denis/my_precious_file restored at linux_diff27. In the case
/etc/fstab is also present in linux_diff27 it would not have been
overwritten by an older version, thanks to the -r option. <br>
      <br>
This option is very important when restoring more than one file using
the second method. Instead, in the first method is used (restoring first from
the full backup, then from all the following differential backups), -r
option is not so important because if overwriting occurs when you restore
lost files, you would only overwrite an older version by a newer.<br>
      <br>
Same thing here, even if you are not lazy, dar_manager can help you
a lots here to automate the restoration of a set of file.<br>
      <br>
      <h3>ISOLATING A CATALOGUE</h3>

      We have seen previously how to do differential backups. Doing
so, dar asks the last slice of the archive of reference. This operation
is required to read the table of contents (also known as "catalogue"
[this is a French word that means "catalog" in English, I will keep
this French word in the following because it is also the name of the
C++ class used in libdar]) which is located at the end of the archive
(thus on the last slice(s)). You have the possibility to isolate
(that's it to extract) a copy of this table of content to a small file.
This small file is quite exactly the same as a differential archive
that holds no data in it. Let's take an example with the full backup we
did previously to see how to extract a catalogue:<br>
      <code><br>
&nbsp;&nbsp;&nbsp; dar -C /root/CAT_linux_full -A /mnt/zip/linux_full</code><br>
      <br>
Note here that we used the UPPERCASE 'C' letter, by opposition the the
lowercase 'c' which is used for archive creation, here we just created
an isolated catalogue, which is usually a small archive. In addition,
you can use -z option to have it compressed, -s and -S option to have
it split in slices, -p option, -b option, but for an isolated catalogue
this is not often necessary as it is usually rather small. The only
thing we have seen for backup that you will not be able to do for
isolation is to filter files (-X, -I, -g, -P, -[ and -] option are not
available for that operation).<br>
      <br>
So what, now we have our extracted catalogue, what can we do with it? Two things:<br>
      <br>
      <span style="text-decoration: underline; font-weight: bold;">First,</span>
we can use the extracted catalogue in place of the archive, as
reference for a differential backup. No need to manipulate the old zip
disks, you can store the last's backup isolated catalogue on your hard
disk instead. If we had used an isolated catalogue in the previous
examples, we would have built our first differential backup this way
(note that here we have chose to use the CAT_ prefix to indicate that
the archive is an isolated catalogue, but the choice is yours to label
isolated catalogue the way you want):<br>
      <br>
      <code>&nbsp;&nbsp;&nbsp; dar -c linux_diff1 -A /root/CAT_linux_full ... (other options seen above stay the same)</code><br>
      <br>
      <span style="font-weight: bold; text-decoration: underline;">Second,</span>
we can use the isolated catalogue as backup of the internal catalogue
if it get corrupted. Well to face to data corruption the best solution
ever invented is Parchive, an autonomous program that builds parity
file (same mechanism as the one used for RAID disks) for a given file.
Here we can use Parchive to create a parity file for each slice. So,
assuming you lack Parchive, and that you failed reading the full backup
because the zip disk is corrupted in the part used by the internal
catalogue, you can use an isolated catalogue as rescue:<br>
      <br>
      <code>&nbsp;&nbsp;&nbsp; dar -x linux_full -A /root/CAT_linux_full ... <br>
&nbsp;&nbsp;&nbsp; dar -d linux_full -A /root/CAT_linux_full ... <br>
&nbsp;&nbsp;&nbsp; dar -t linux_full -A /root/CAT_linux_full ...<br>
&nbsp;&nbsp;&nbsp; dar -l /root/CAT_linux_full<br>
      </code><br>
An isolated catalogue can be built for any type of archive (full,
differential or incremental archive, even for an already isolated
catalogue, which I admit is rather useless). You can also create an
isolated catalogue at the same time you do a backup, thanks to the -@
option:<br>
      <br>
      <code>&nbsp;&nbsp;&nbsp; dar -c linux_diff1 -A /mnt/zip/linux_full -@ CAT_linux_diff1 ... (other options...)<br>
&nbsp;&nbsp;&nbsp; dar -c linux_full -@ CAT_linux_full ... (other options see above stay the same for backup)<br>
      </code><br>
This is know as "on-fly" isolation.<br>
<br></div>
      <h3 style="text-align: justify;">DAR_MANAGER TUTORIAL</h3>
      <div style="text-align: justify;">dar_manager
builds a database
of all
your archive contents, to automatically restore the latest versions of
a given set of files. Dar_manager is not targeted to the restoration a
whole filesystem, the best ways to restore a whole filesystem has been
described above and do not use dar_manager. So let's use dar_manager to
restore a set of files. First, we have to create a "database" file :<br>
      <br>
      </div>
      <div style="margin-left: 40px; text-align: justify;"><code>dar_manager
-C my_base.dmd</code><br>
      </div>
      <div style="text-align: justify;"><br>
This created a file "my_base.dmd" where dmd stands for Dar Manager
Database, but you are free to use any other extension. <br>
      <br>
This database is created empty. Each time you make a backup, may it be
full or differential, you will have to add its table of contents (aka "catalogue") to this
database using the&nbsp; following command:<br>
      <br>
      </div>
      <div style="margin-left: 40px; text-align: justify;"><code>dar_manager
-B my_base.dmd -A /mnt/zip/linux_full<br>
      </code></div>
      <div style="text-align: justify;"><br>
This will add ("A" stands for "add") the archive contents to the base.
In some cases you may not have the archive available but its extracted
catalogue instead. Of course, you can use the extracted catalogue in
place of the archive!<br>
      <br>
      </div>
      <div style="margin-left: 40px; text-align: justify;"><code>dar_manager
-B my_base.dmd -A ~/Catalogues/CAT_linux_full</code><br>
      </div>
      <div style="text-align: justify;"><br>
The problem however is that when dar_manager will need to recover a
file located in this archive it will try to open the
archive ~/Catalogue/CAT_linux_full for restoration, which does not contain any
data because it is just the catalogue of the archive.<br>
      <br>
No problem if you made this mistake, thanks to the -b option we can
change the basename of the archive, and thanks to the -p option you can
change the path at any time. But first we will list the database
contents:<br>
      <br>
      </div>
      <div style="margin-left: 40px; text-align: justify;"><code>dar_manager
-B my_base.dmd -l</code><br>
      </div>
      <div style="text-align: justify;"><br>
It shows the following:<br>
      <br>
      <br>
      </div>
      <div style="margin-left: 40px; text-align: justify;"><code>dar
path&nbsp;&nbsp;&nbsp; :<br>
dar options :<br>
      <br>
archive #&nbsp;&nbsp; |&nbsp;&nbsp;&nbsp;
path&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; |&nbsp;&nbsp;&nbsp; basename<br>
------------+--------------+---------------<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
/home/denis/Catalogues&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; CAT_linux_full<br>
      </code></div>
      <div style="text-align: justify;"><br>
We should change the path of archive number 1 for dar_manager looks on
the zip drive:<br>
      <br>
      </div>
      <div style="margin-left: 40px; text-align: justify;"><code>dar_manager
-B my_base.dmd -p 1 /mnt/zip</code><br>
      </div>
      <div style="text-align: justify;"><br>
and also replace the name of the extracted catalogue by the real
archive name<br>
      <br>
      </div>
      <div style="margin-left: 40px; text-align: justify;"><code>dar_manager
-B my_base.dmd -b 1 linux_full</code><br>
      </div>
      <div style="text-align: justify;"><br>
Now we have exactly the same database as if we had use the real archive
instead of its catalogue:<br>
      <br>
      </div>
      <div style="margin-left: 40px; text-align: justify;"><code>dar_manager
-B my_base.dmd -l</code><br>
      </div>
      <div style="text-align: justify;"><br>
      <br>
      </div>
      <div style="margin-left: 40px; text-align: justify;"><code>dar
path&nbsp;&nbsp;&nbsp; :<br>
dar options :<br>
      <br>
archive #&nbsp;&nbsp; |&nbsp;&nbsp;&nbsp;
path&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; |&nbsp;&nbsp;&nbsp; basename<br>
------------+--------------+---------------<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; /mnt/zip&nbsp;&nbsp;&nbsp;&nbsp;
linux_full<br>
      </code></div>
      <div style="text-align: justify;"><br>
      <br>
In place of using -b and -p options, you can also tell the path and the
name of the real archive to use at restoration time this way when you add the catalogue to the database:<br>
      <br>
      </div>
      <div style="margin-left: 40px; text-align: justify;"><code>dar_manager
-B my_base.dmd -A ~/Catalogues/CAT_linux_full <span style="font-weight: bold;">/mnt/zip/linux_full</span></code><br>
      </div>
      <br>
      <div style="text-align: justify;">
This is done adding an optional argument. The first ~/Catalogue... is
the archive where to read the catalogue from, and the second /mnt/zip... is the name to keep for
it. No access is done to this second archive at the time of the addition, thus it may stay unavailable at
the time the command is typed.<br>
      </div>

      <br>
You can add up to 65534 archives to a given database, and have as much
base as you want.<br>
      <br>
      <div style="text-align: justify;">Note that we did not yet gave important options in the database to be
passed to dar. For example, you will likely restore from the root of
your filesystem, therefor dar when called from dar_manager must get the
"-R /" option. This is done with:<br>
      </div>

      <br>
      <div style="text-align: justify;"> </div>
      <div style="margin-left: 40px; text-align: justify;"><code>dar_manager
-B my_base.dmd -o -R /</code><br>
      </div>
      <br>
All that follows -o is passed to dar as-is. You can see the options
passed to dar when listing the database contents (-l option).<br>
      <br>
      <div style="text-align: justify;">Let's suppose that after each backup you took the time to update your database,
and now you just have removed an important file by error.<br>
      </div>


      <br>
      <br>
Now, we can restore our /home/denis/my/precious/file :<br>
      <br>
      <div style="text-align: justify;"> </div>
      <div style="margin-left: 40px; text-align: justify;"><code>dar_manager
-B my_base.dmd -r home/denis/my/precious/file</code><br>
      </div>
      <br>
dar_manager will find the proper archive to use, and call dar with the
following options:<br>
      <br>
      <div style="text-align: justify;"> </div>
      <div style="margin-left: 40px; text-align: justify;"><code>dar -x
&lt;archive&gt; -R / home/denis/my/precious/file</code><br>
      </div>
      <div style="text-align: justify;"><br>Which
in turn will ask you the corresponding slices. If you want to restore
more files at a time or even a directory tree, you can add several
arguments after -r option of dar_manager:<br>
      <br>
      <div style="margin-left: 40px;"><code>dar_manager
-B my_base.dmd -r home/denis/my/precious/file etc/fstab home/joe</code><br>
      </div>

      <br>
Once an archive become obsolete you can delete it from the database
thanks to the -D option, you can also change archive order (-m option),
get a list in which is located a given file (-f option), get the list
of most recent files in a given archive (-u option), and get overall
statistics per archive (-s option). Lastly you can specify which dar
command to use given its path (-d option), by default, dar_manager uses
the PATH shell variable to choose the dar command.<br>
      <br>
A new feature for those that are really very lazy: dar_manager has
an interactive mode, so you don't have to remeber all these
command-line switch except one:<br>
      <code><br>
      </code>
      <div style="margin-left: 40px;"><code>dar_manager -B my_base.dmd
-i</code><br>
      </div>
      <br>
Interactive mode allow you to do all operation except restoration which
can be done as previously explained.<br>
      <br>
      <h3>TO GO FURTHER WITH DAR/LIBDAR</h3>
Well, we have reached the end of this tutorial, but dar/libdar has still a lot of features to be discovered:<br>
- strong encryption<br>
- archive merging<br>
- decremental backup<br>
- dar command-line files (DCF)<br>
- user commands between slices (and DUC files)<br>
- Extended Attribute manipulations<br>
- hard links<br>
- Sparse files<br>
- remote backup over ssh<br>
- suspending/resuming a database from dar before/after backing it up<br>
- using regex in place of glob expressions in masks<br>
- using dar with tape thanks to the sequential reading mode<br>
- having dar adding padded zeros to slice numbers<br>
- excluding some files from compression<br>
- asking dar to retry saving a file if it changes a the time of the backup<br>
- what is a "dirty" files in a dar archive<br>
- listing an archive contents under XML format<br>
- using conditional syntax in DCF files<br>
- using user targets<br>
- adding user comments in dar archive<br>
- using DAR_DCF_PATH and DAR_DUC_PATH environment variables<br>
      <br>
all this is described in much details in the following documents:<br>
      <a href="FAQ.html">FAQ</a> , <a href="mini-howto/index.html">mini-howto</a>, <a href="usage_notes.html">command-line usage notes</a>, <a href="man/index.html">man pages</a>. You can find out more precisely where, using the <a href="Features.html">feature description page</a>. However if you find some thing unclear, feel free to report or ask for help on<a href="https://lists.sourceforge.net/lists/listinfo/dar-support"> dar-support mailing-list</a>.<br>
      <br>
Well, English is not my mother tong and I have not the pretention to
perfectly speak or write it, while I do my best to produce something
correctly written. Thus, if you find some weird english sentences,
spelling or typo errors, feel free to send me your feedback. You can
use dar-support mailing-list or contact me directly (read the AUTHOR
file from the dar source package to find out how to contact me).<br>
      <br>
      <div style="text-align: right;">Denis Corbin<br>

      </div>
</div>
      </td>
    </tr>
  </tbody>
</table>
<span style="font-weight: bold;"></span><br>
<div style="text-align: justify;"><br>
<br>
</div>

</center>

</body></html>