From 0285eb31a70c7d4ff7b0091ea1046b4e720128ca Mon Sep 17 00:00:00 2001
From: Edwin Eefting <edwin@datux.nl>
Date: Sun, 23 Feb 2020 21:27:01 +0100
Subject: [PATCH] fixes

---
 README.md | 18 ++++++++++++++----
 1 file changed, 14 insertions(+), 4 deletions(-)

diff --git a/README.md b/README.md
index 344d2ec..2e6a701 100644
--- a/README.md
+++ b/README.md
@@ -61,19 +61,25 @@ zfs-autobackup tries to be the easiest to use backup tool for zfs.
 
 ## Installation
 
-Use pip to install:
+### Using pip:
 
 ```console
 [root@server ~]# pip install zfs-autobackup
 ```
 
+### Using easy_install (on older installations)
+
 On older servers you might have to use easy_install
 
 ```console
 [root@server ~]# easy_install zfs-autobackup
 ```
 
-Its also possible to just download <https://raw.githubusercontent.com/psy0rz/zfs_autobackup/v3/bin/zfs_autobackup> and run it directly.
+### Direct download
+
+Its also possible to just download <https://raw.githubusercontent.com/psy0rz/zfs_autobackup/v3/bin/zfs-autobackup> and run it directly.
+
+The only requirement that is sometimes missing is the `argparse` python module. Optionally you can install `colorma` for colors.
 
 
 ## Example
@@ -120,7 +126,9 @@ Before you start, make sure you can login to the server without password, by usi
 
 There are 2 ways to run the backup, but the endresult is always the same. Its just a matter of security (trust relations between the servers) and preference.
 
-#### Method 1: Run the script on the backup server and pull the data from the server specfied by --ssh-source. This is usually the preferred way and prevents a hacked server from accesing the backup-data
+#### Method 1: Pull backup
+
+Run the script on the backup server and pull the data from the server specfied by --ssh-source. This is usually the preferred way and prevents a hacked server from accesing the backup-data.
 
 ```console
 [root@backup ~]# zfs-autobackup --ssh-source pve.server.com offsite1 backup/pve --progress --verbose
@@ -165,7 +173,9 @@ There are 2 ways to run the backup, but the endresult is always the same. Its ju
   ...
 ```
 
-#### Method 2: Run the script on the server and push the data to the backup server specified by --ssh-target
+#### Method 2: push backup
+
+Run the script on the server and push the data to the backup server specified by --ssh-target.
 
 ```console
 [root@pve ~]# zfs-autobackup --ssh-target backup.server.com offsite1 backup/pve --progress --verbose