aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--README.md7
1 files changed, 5 insertions, 2 deletions
diff --git a/README.md b/README.md
index 6e131e5..4bded3c 100644
--- a/README.md
+++ b/README.md
@@ -53,12 +53,15 @@ First, the full image of the partition to backup has to be created:
> dd bs=4M if=/dev/sda1 of=full.img
-When user decides to create the differential image, he or she runs:
+When the user decides to create the differential image, he or she runs:
> diff-dd /dev/sda1 full.img diff.img
-If a data accident happens, the partition will be restored by running:
+If a data accident happens, the partition can be restored by running:
> dd bs=4M if=full.img of=/dev/sda1
> diff-dd diff.img /dev/sda1
+
+The first command restores the old full image. The second one applies
+the differences.