Blame SOURCES/rear-asciidoc.patch

52df35
diff --git a/doc/user-guide/12-BLOCKCLONE.adoc b/doc/user-guide/12-BLOCKCLONE.adoc
52df35
index 061f0f49..2d4e0ed1 100644
52df35
--- a/doc/user-guide/12-BLOCKCLONE.adoc
52df35
+++ b/doc/user-guide/12-BLOCKCLONE.adoc
52df35
@@ -40,17 +40,17 @@ First we need to set some global options in _local.conf_,
52df35
 In our small example backups will be stored in _/mnt/rear_ directory
52df35
  on BACKUP_URL NFS server.
52df35
 
52df35
-```
52df35
+--------------------------
52df35
 # cat local.conf
52df35
 OUTPUT=ISO
52df35
 BACKUP=NETFS
52df35
 BACKUP_OPTIONS="nfsvers=3,nolock"
52df35
 BACKUP_URL=nfs://<hostname>/mnt/rear
52df35
-```
52df35
+--------------------------
52df35
 
52df35
 Now we will define variables that will apply only for targeted block device
52df35
 
52df35
-```
52df35
+--------------------------
52df35
 # cat alien.conf
52df35
 BACKUP=BLOCKCLONE                                        # Define BLOCKCLONE as backup method
52df35
 BACKUP_PROG_ARCHIVE="alien"                              # Name of image file
52df35
@@ -66,16 +66,16 @@ BLOCKCLONE_MBR_FILE="alien_boot_strap.img"               # Output filename for b
52df35
 BLOCKCLONE_PARTITIONS_CONF_FILE="alien_partitions.conf"  # Output filename for partition configuration
52df35
 
52df35
 BLOCKCLONE_ALLOW_MOUNTED="yes"                           # Device can be mounted during backup (default NO)
52df35
-```
52df35
+--------------------------
52df35
 
52df35
 ==== Running backup
52df35
 Save partitions configuration, bootstrap code and create actual backup of /dev/sdc1
52df35
-```
52df35
+--------------------------
52df35
 # rear -C alien mkbackuponly
52df35
-```
52df35
+--------------------------
52df35
 
52df35
 ==== Running restore from ReaR restore/recovery system
52df35
-```
52df35
+--------------------------
52df35
 # rear -C alien restoreonly
52df35
 Restore alien.dd.img to device: [/dev/sdc1]                 # User is always prompted for restore destination
52df35
 Device /dev/sdc1 was not found.                             # If destination does not exist ReaR will try to create it (or fail if BLOCKCLONE_SAVE_MBR_DEV was not set during backup)
52df35
@@ -102,7 +102,7 @@ Device     Boot Start    End Sectors  Size Id Type
52df35
 The partition table has been altered.
52df35
 Calling ioctl() to re-read partition table.
52df35
 Syncing disks.
52df35
-```
52df35
+--------------------------
52df35
 
52df35
 ==== Summary
52df35
 In first example we have run backup of /dev/sdc1 partition and stored it on NFS
52df35
@@ -127,37 +127,37 @@ In next example we will do backup/restore using BLOCKCLONE and `ntfsclone`
52df35
  of Linux (installed on /dev/sda) and Windows 10 (installed on /dev/sdb).
52df35
 
52df35
 TIP: You can locate right disk devices using `df` and `os-prober`
52df35
-```
52df35
+--------------------------
52df35
 # df -h /boot
52df35
 Filesystem      Size  Used Avail Use% Mounted on
52df35
 /dev/sda1        10G  4.9G  5.2G  49% /           # Linux is most probably installed on /dev/sda
52df35
 
52df35
 # os-prober
52df35
 /dev/sdb1:Windows 10 (loader):Windows:chain       # Windows 10 is most probably installed on /dev/sdb
52df35
-```
52df35
+--------------------------
52df35
 
52df35
 First we will configure some ReaR backup global options
52df35
  (similar to link:12-BLOCKCLONE.adoc#1-backuprestore-of-arbitrary-block-device-with-blockclone-and-dd-on-nfs-server[first example]
52df35
  we will do backup/restore with help of NFS server).
52df35
 
52df35
-```
52df35
+--------------------------
52df35
 # cat local.conf
52df35
 OUTPUT=ISO
52df35
 BACKUP=NETFS
52df35
 BACKUP_OPTIONS="nfsvers=3,nolock"
52df35
 BACKUP_URL=nfs://<hostname>/mnt/rear
52df35
 REQUIRED_PROGS+=( ntfsclone )
52df35
-```
52df35
+--------------------------
52df35
 
52df35
 Now we will define backup parameters for Linux.
52df35
 
52df35
-```
52df35
+--------------------------
52df35
 # cat base_os.conf
52df35
 this_file_name=$( basename ${BASH_SOURCE[0]} )
52df35
 LOGFILE="$LOG_DIR/rear-$HOSTNAME-$WORKFLOW-${this_file_name%.*}.log"
52df35
 BACKUP_PROG_ARCHIVE="backup-${this_file_name%.*}"
52df35
 BACKUP_PROG_EXCLUDE+=( '/media/*' )
52df35
-```
52df35
+--------------------------
52df35
 
52df35
 Our Windows 10 is by default installed on two separate partitions
52df35
  (partition 1 for boot data and partition 2 for disk C:),
52df35
@@ -165,7 +165,7 @@ Our Windows 10 is by default installed on two separate partitions
52df35
 
52df35
 Windows boot partition:
52df35
 
52df35
-```
52df35
+--------------------------
52df35
 # cat windows_boot.conf
52df35
 BACKUP=BLOCKCLONE
52df35
 BACKUP_PROG_ARCHIVE="windows_boot"
52df35
@@ -179,10 +179,10 @@ BLOCKCLONE_PROG_OPTS="--quiet"
52df35
 BLOCKCLONE_SAVE_MBR_DEV="/dev/sdb"
52df35
 BLOCKCLONE_MBR_FILE="windows_boot_strap.img"
52df35
 BLOCKCLONE_PARTITIONS_CONF_FILE="windows_partitions.conf"
52df35
-```
52df35
+--------------------------
52df35
 
52df35
 Windows data partition (disk C:\):
52df35
-```
52df35
+--------------------------
52df35
 # cat windows_data.conf
52df35
 BACKUP=BLOCKCLONE
52df35
 BACKUP_PROG_ARCHIVE="windows_data"
52df35
@@ -196,35 +196,35 @@ BLOCKCLONE_PROG_OPTS="--quiet"
52df35
 BLOCKCLONE_SAVE_MBR_DEV="/dev/sdb"
52df35
 BLOCKCLONE_MBR_FILE="windows_boot_strap.img"
52df35
 BLOCKCLONE_PARTITIONS_CONF_FILE="windows_partitions.conf"
52df35
-```
52df35
+--------------------------
52df35
 
52df35
 ==== Running backup
52df35
 First we will create backup of Linux. `mkbackup` command will create bootable
52df35
  ISO image with ReaR rescue/recovery system that will be later used for
52df35
  booting broken system and consecutive recovery.
52df35
-```
52df35
+--------------------------
52df35
 # rear -C base_os mkbackup
52df35
-```
52df35
+--------------------------
52df35
 
52df35
 Now we create backup of Windows 10 boot partition. Command `mkbackuponly`
52df35
  will ensure that only partition data and partition layout will be saved
52df35
  (ReaR rescue/recovery system will not be created which is exactly what we want).
52df35
-```
52df35
+--------------------------
52df35
 # rear -C windows_boot mkbackuponly
52df35
-```
52df35
+--------------------------
52df35
 
52df35
 Similarly, we create backup of Windows 10 data partition (disk C:\)
52df35
-```
52df35
+--------------------------
52df35
 # rear -C windows_data mkbackuponly
52df35
-```
52df35
+--------------------------
52df35
 
52df35
 ==== Running restore from ReaR restore/recovery system
52df35
 As a first step after ReaR rescue/recovery system booted,
52df35
 we will recover Linux. This step will recover all Linux file systems,
52df35
 OS data and bootloader. Windows disk will remain untouched.
52df35
-```
52df35
+--------------------------
52df35
 # rear -C base_os recover
52df35
-```
52df35
+--------------------------
52df35
 
52df35
 In second step will recover Windows 10 boot partition. During this step ReaR
52df35
  will detect that destination partition is not present and ask us for device
52df35
@@ -234,25 +234,25 @@ In second step will recover Windows 10 boot partition. During this step ReaR
52df35
  partition(s) configuration (currently mounted under _/mnt/local_) will
52df35
  remain untouched. Before starting Windows 10 recovery we should identify
52df35
  right disk for recovery, as mentioned earlier disk size could be a good start.
52df35
-```
52df35
+--------------------------
52df35
 # fdisk -l /dev/sdb
52df35
 Disk /dev/sdb: 50 GiB, 53687091200 bytes, 104857600 sectors
52df35
-```
52df35
+--------------------------
52df35
 
52df35
 _/dev/sdb_ looks to be right destination, so we can proceed with restore.
52df35
-```
52df35
+--------------------------
52df35
 # rear -C windows_boot restoreonly
52df35
 Restore windows_boot.img to device: [/dev/sdb1]
52df35
 Device /dev/sdb1 was not found.
52df35
 Restore partition layout to (^c to abort): [/dev/sdb]
52df35
 Checking that no-one is using this disk right now ... OK
52df35
 ...
52df35
-```
52df35
+--------------------------
52df35
 
52df35
 Last step is to recover Windows 10 OS data (C:\).
52df35
 Partitions on _/dev/sdb_ were already created in previous step,
52df35
 hence ReaR will skip prompt for restoring partition layout.
52df35
-```
52df35
+--------------------------
52df35
 # rear -C windows_data restoreonly
52df35
 Restore windows_data.img to device: [/dev/sdb2]
52df35
 Ntfsclone image version: 10.1
52df35
@@ -263,7 +263,7 @@ Space in use           : 9396 MB (27.8%)
52df35
 Offset to image data   : 56 (0x38) bytes
52df35
 Restoring NTFS from image ...
52df35
 ...
52df35
-```
52df35
+--------------------------
52df35
 
52df35
 At this stage Linux together with Windows 10 is successfully restored.
52df35
 
52df35
@@ -286,7 +286,7 @@ In this example we will do backup/restore using BLOCKCLONE and `ntfsclone`
52df35
  Backups will be stored on NFS server.
52df35
 
52df35
 First we set global ReaR options
52df35
-```
52df35
+--------------------------
52df35
 # cat local.conf
52df35
 OUTPUT=ISO
52df35
 BACKUP=NETFS
52df35
@@ -300,23 +300,23 @@ BLOCKCLONE_SAVE_MBR_DEV="/dev/sda"
52df35
 BLOCKCLONE_MBR_FILE="boot_strap.img"
52df35
 BLOCKCLONE_PARTITIONS_CONF_FILE="partitions.conf"
52df35
 
52df35
-```
52df35
+--------------------------
52df35
 
52df35
 IMPORTANT: BLOCKCLONE_STRICT_PARTITIONING is mandatory if backing up
52df35
  Linux / Windows that shares one disk. Not using this option might result to
52df35
  unbootable Windows 10 installation.
52df35
 
52df35
 Linux configuration
52df35
-```
52df35
+--------------------------
52df35
 # cat base_os.conf
52df35
 this_file_name=$( basename ${BASH_SOURCE[0]} )
52df35
 LOGFILE="$LOG_DIR/rear-$HOSTNAME-$WORKFLOW-${this_file_name%.*}.log"
52df35
 BACKUP_PROG_ARCHIVE="backup-${this_file_name%.*}"
52df35
 BACKUP_PROG_EXCLUDE+=( '/media/*' )
52df35
-```
52df35
+--------------------------
52df35
 
52df35
 Windows 10 boot partition configuration
52df35
-```
52df35
+--------------------------
52df35
 # cat windows_boot.conf
52df35
 BACKUP=BLOCKCLONE
52df35
 
52df35
@@ -328,10 +328,10 @@ BLOCKCLONE_PROG=ntfsclone
52df35
 BLOCKCLONE_PROG_OPTS="--quiet"
52df35
 
52df35
 BLOCKCLONE_SOURCE_DEV="/dev/sda1"
52df35
-```
52df35
+--------------------------
52df35
 
52df35
 Windows 10 data partition configuration
52df35
-```
52df35
+--------------------------
52df35
 # cat windows_data.conf
52df35
 BACKUP=BLOCKCLONE
52df35
 BACKUP_PROG_ARCHIVE="windows_data"
52df35
@@ -342,42 +342,42 @@ BLOCKCLONE_PROG=ntfsclone
52df35
 BLOCKCLONE_PROG_OPTS="--quiet"
52df35
 
52df35
 BLOCKCLONE_SOURCE_DEV="/dev/sda2"
52df35
-```
52df35
+--------------------------
52df35
 
52df35
 ==== Running backup
52df35
 
52df35
 Backup of Linux
52df35
-```
52df35
+--------------------------
52df35
 # rear -C base_os mkbackup
52df35
-```
52df35
+--------------------------
52df35
 
52df35
 Backup of Windows 10 boot partition
52df35
-```
52df35
+--------------------------
52df35
 # rear -C windows_boot mkbackuponly
52df35
-```
52df35
+--------------------------
52df35
 
52df35
 Backup of Windows 10 data partition
52df35
-```
52df35
+--------------------------
52df35
 # rear -C windows_data mkbackuponly
52df35
-```
52df35
+--------------------------
52df35
 
52df35
 ==== Running restore from ReaR restore/recovery system
52df35
 Restore Linux
52df35
-```
52df35
+--------------------------
52df35
 # rear -C base_os recover
52df35
-```
52df35
+--------------------------
52df35
 
52df35
 During this step ReaR will also create both Windows 10 partitions
52df35
 
52df35
 Restore Windows 10 data partition
52df35
-```
52df35
+--------------------------
52df35
 # rear -C windows_data restoreonly
52df35
-```
52df35
+--------------------------
52df35
 
52df35
 Restore Windows 10 boot partition
52df35
-```
52df35
+--------------------------
52df35
 # rear -C windows_boot restoreonly
52df35
-```
52df35
+--------------------------
52df35
 
52df35
 === 4. Backup/restore of Linux / Windows 10 dual boot setup sharing same disk with USB as destination
52df35
 
52df35
@@ -389,7 +389,7 @@ In this example we will do backup/restore using BLOCKCLONE and `ntfsclone`
52df35
  Backups will be stored on USB disk drive (_/dev/sdb_ in this example).
52df35
 
52df35
 Global options
52df35
-```
52df35
+--------------------------
52df35
 # cat local.conf
52df35
 OUTPUT=USB
52df35
 BACKUP=NETFS
52df35
@@ -407,10 +407,10 @@ BLOCKCLONE_SAVE_MBR_DEV="/dev/sda"
52df35
 
52df35
 BLOCKCLONE_MBR_FILE="boot_strap.img"
52df35
 BLOCKCLONE_PARTITIONS_CONF_FILE="partitions.conf"
52df35
-```
52df35
+--------------------------
52df35
 
52df35
 Options used during Linux backup/restore.
52df35
-```
52df35
+--------------------------
52df35
 # cat local.conf
52df35
 OUTPUT=USB
52df35
 BACKUP=NETFS
52df35
@@ -428,14 +428,14 @@ BLOCKCLONE_SAVE_MBR_DEV="/dev/sda"
52df35
 
52df35
 BLOCKCLONE_MBR_FILE="boot_strap.img"
52df35
 BLOCKCLONE_PARTITIONS_CONF_FILE="partitions.conf"
52df35
-```
52df35
+--------------------------
52df35
 
52df35
 IMPORTANT: USB_SUFFIX option is mandatory as it avoids ReaR to hold every
52df35
  backup in separate directory, this behavior is essential for BLOCKCLONE
52df35
  backup method to work correctly.
52df35
 
52df35
 Windows boot partition options
52df35
-```
52df35
+--------------------------
52df35
 # cat windows_boot.conf
52df35
 BACKUP=BLOCKCLONE
52df35
 
52df35
@@ -447,10 +447,10 @@ BLOCKCLONE_PROG=ntfsclone
52df35
 BLOCKCLONE_PROG_OPTS="--quiet"
52df35
 
52df35
 BLOCKCLONE_SOURCE_DEV="/dev/sda1"
52df35
-```
52df35
+--------------------------
52df35
 
52df35
 Windows data partition options
52df35
-```
52df35
+--------------------------
52df35
 # cat windows_data.conf
52df35
 BACKUP=BLOCKCLONE
52df35
 BACKUP_PROG_ARCHIVE="windows_data"
52df35
@@ -461,11 +461,11 @@ BLOCKCLONE_PROG=ntfsclone
52df35
 BLOCKCLONE_PROG_OPTS="--quiet"
52df35
 
52df35
 BLOCKCLONE_SOURCE_DEV="/dev/sda2"
52df35
-```
52df35
+--------------------------
52df35
 
52df35
 ==== Running backup
52df35
 First we need to format target USB device, with `rear format` command
52df35
-```
52df35
+--------------------------
52df35
 # rear -v format /dev/sdb
52df35
 Relax-and-Recover 2.00 / Git
52df35
 Using log file: /var/log/rear/rear-centosd.log
52df35
@@ -477,15 +477,15 @@ Creating ReaR data partition up to 100% of '/dev/sdb'
52df35
 Setting 'boot' flag on /dev/sdb
52df35
 Creating ext3 filesystem with label 'REAR-000' on '/dev/sdb1'
52df35
 Adjusting filesystem parameters on '/dev/sdb1'
52df35
-```
52df35
+--------------------------
52df35
 
52df35
 Backup of Linux
52df35
-```
52df35
+--------------------------
52df35
 # rear -C base_os mkbackup
52df35
-```
52df35
+--------------------------
52df35
 
52df35
 Backup of Windows 10 boot partition
52df35
-```
52df35
+--------------------------
52df35
 # rear -C windows_boot mkbackuponly
52df35
 NTFS volume version: 3.1
52df35
 Cluster size       : 4096 bytes
52df35
@@ -496,10 +496,10 @@ Accounting clusters ...
52df35
 Space in use       : 338 MB (64.4%)
52df35
 Saving NTFS to image ...
52df35
 Syncing ...
52df35
-```
52df35
+--------------------------
52df35
 
52df35
 Backup of Windows 10 data partition
52df35
-```
52df35
+--------------------------
52df35
 # rear -C windows_data mkbackuponly
52df35
 NTFS volume version: 3.1
52df35
 Cluster size       : 4096 bytes
52df35
@@ -510,7 +510,7 @@ Accounting clusters ...
52df35
 Space in use       : 9833 MB (54.3%)
52df35
 Saving NTFS to image ...
52df35
 Syncing ...
52df35
-```
52df35
+--------------------------
52df35
 
52df35
 ==== Running restore from ReaR restore/recovery system
52df35
 For sake of this demonstration I've purposely used ReaR's rescue/recovery media
52df35
@@ -519,7 +519,7 @@ For sake of this demonstration I've purposely used ReaR's rescue/recovery media
52df35
  demonstrate possibility of ReaR to recover backup to arbitrary disk. +
52df35
 As first step Linux will be restored, this will create all the partitions
52df35
  needed, even those used by Windows 10.
52df35
-```
52df35
+--------------------------
52df35
 RESCUE centosd:~ # rear -C base_os recover
52df35
 Relax-and-Recover 2.00 / Git
52df35
 Using log file: /var/log/rear/rear-centosd.log
52df35
@@ -541,13 +541,13 @@ Original disk /dev/sda does not exist in the target system. Please choose an app
52df35
 2) /dev/sdb
52df35
 3) Do not map disk.
52df35
 #?
52df35
-```
52df35
+--------------------------
52df35
 
52df35
 Now ReaR recover command stops as it detected that disk layout is not identical.
52df35
  As our desired restore target is _/dev/sdb_ we choose right disk and continue
52df35
  recovery. ReaR will ask to check created restore scripts, but this is not
52df35
  needed in our scenario.
52df35
-```
52df35
+--------------------------
52df35
 #? 2
52df35
 2017-01-25 20:54:01 Disk /dev/sdb chosen as replacement for /dev/sda.
52df35
 Disk /dev/sdb chosen as replacement for /dev/sda.
52df35
@@ -607,11 +607,11 @@ Skip installing GRUB Legacy boot loader because GRUB 2 is installed (grub-probe
52df35
 Installing GRUB2 boot loader
52df35
 Finished recovering your system. You can explore it under '/mnt/local'.
52df35
 Saving /var/log/rear/rear-centosd.log as /var/log/rear/rear-centosd-recover-base_os.log
52df35
-```
52df35
+--------------------------
52df35
 
52df35
 Now we have Linux part restored, GRUB installed and partitions created, hence
52df35
  we can continue with Windows 10 boot partition recovery.
52df35
-```
52df35
+--------------------------
52df35
 RESCUE centosd:~ # rear -C windows_boot restoreonly
52df35
 Restore windows_boot.nc.img to device: [/dev/sda1] /dev/sdb1
52df35
 Ntfsclone image version: 10.1
52df35
@@ -622,12 +622,12 @@ Space in use           : 338 MB (64.4%)
52df35
 Offset to image data   : 56 (0x38) bytes
52df35
 Restoring NTFS from image ...
52df35
 Syncing ...
52df35
-```
52df35
+--------------------------
52df35
 
52df35
 Similarly to Linux restore, we were prompted for restore destination, which
52df35
  is /dev/sdb1 in our case. +
52df35
 As the last step we will recover Windows 10 data partition
52df35
-```
52df35
+--------------------------
52df35
 RESCUE centosd:~ # rear -C windows_data restoreonly
52df35
 Restore windows_data.nc.img to device: [/dev/sda2] /dev/sdb2
52df35
 Ntfsclone image version: 10.1
52df35
@@ -638,7 +638,7 @@ Space in use           : 9867 MB (54.5%)
52df35
 Offset to image data   : 56 (0x38) bytes
52df35
 Restoring NTFS from image ...
52df35
 Syncing ...
52df35
-```
52df35
+--------------------------
52df35
 
52df35
 Again after restoreonly command is launched, ReaR prompts for restore
52df35
  destination. +
52df35
@@ -662,25 +662,25 @@ The _BLOCKCLONE_TRY_UNMOUNT_ is important here: it will attempt to unmount the
52df35
  run the risk that the data may be inconsistent.
52df35
  
52df35
 Global options
52df35
-```
52df35
+--------------------------
52df35
 # cat site.conf
52df35
 OUTPUT=ISO
52df35
 KEEP_OLD_OUTPUT_COPY=1
52df35
 BACKUP_URL="nfs://<hostname>/Stations_bkup/rear/"
52df35
-```
52df35
+--------------------------
52df35
 
52df35
 Options used for the base OS backup:
52df35
-```
52df35
+--------------------------
52df35
 # cat base_system.conf
52df35
 this_file_name=$( basename ${BASH_SOURCE[0]} )
52df35
 LOGFILE="$LOG_DIR/rear-$HOSTNAME-$WORKFLOW-${this_file_name%.*}.log"
52df35
 BACKUP_PROG_EXCLUDE+=( '/products/*' )
52df35
 BACKUP_PROG_ARCHIVE="backup-${this_file_name%.*}"
52df35
 BACKUP=NETFS
52df35
-```
52df35
+--------------------------
52df35
 
52df35
 Options used to take the encrypted filesystem image:
52df35
-```
52df35
+--------------------------
52df35
 this_file_name=$( basename ${BASH_SOURCE[0]} )
52df35
 LOGFILE="$LOG_DIR/rear-$HOSTNAME-$WORKFLOW-${this_file_name%.*}.log"
52df35
 BACKUP=BLOCKCLONE
52df35
@@ -694,18 +694,18 @@ BLOCKCLONE_SOURCE_DEV="/dev/vg00/lvol4"
52df35
 
52df35
 BLOCKCLONE_ALLOW_MOUNTED="yes"
52df35
 BLOCKCLONE_TRY_UNMOUNT="yes"
52df35
-```
52df35
+--------------------------
52df35
 
52df35
 ==== Running backup
52df35
 Base OS backup:
52df35
-```
52df35
+--------------------------
52df35
 # rear -C base_system mkbackup
52df35
-```
52df35
+--------------------------
52df35
 
52df35
 Create image of encrypted filesystem:
52df35
-```
52df35
+--------------------------
52df35
 # rear -C products_backup mkbackuponly
52df35
-```
52df35
+--------------------------
52df35
 
52df35
 ==== Running restore from ReaR restore/recovery system
52df35
 First recover the base OS. This will create all the partitions needed, including
52df35
@@ -713,7 +713,7 @@ First recover the base OS. This will create all the partitions needed, including
52df35
 As illustrated below, you will be prompted to chose a new encryption passphrase. 
52df35
  Please provide one, but you need not care about its value as it will get overwritten 
52df35
  during the next phase:
52df35
-```
52df35
+--------------------------
52df35
 RESCUE pc-pan:~ # rear -C base_system.conf recover
52df35
 [...]
52df35
 Please enter the password for LUKS device cr_vg00-lvol4 (/dev/mapper/vg00-lvol4):
52df35
@@ -724,7 +724,7 @@ Creating filesystem of type xfs with mount point /products on /dev/mapper/cr_vg0
52df35
 Mounting filesystem /products
52df35
 Disk layout created.
52df35
 [...]
52df35
-```
52df35
+--------------------------
52df35
 
52df35
 Now we can proceed and restore the encrypted filesystem image. The target filesystem
52df35
  will have been mounted by ReaR during the previous phase, but this will be 
52df35
@@ -732,12 +732,12 @@ Now we can proceed and restore the encrypted filesystem image. The target filesy
52df35
  to "yes". +
52df35
 As illustrated below, you will be prompted for the target block device to use.
52df35
  Confirm by pressing Enter or type in another value:
52df35
-```
52df35
+--------------------------
52df35
 RESCUE pc-pan:~ # rear -C products_backup.conf restoreonly
52df35
 [...]
52df35
 Restore backup-products_backup.dd.img to device: [/dev/vg00/lvol4]
52df35
 [...]
52df35
-```
52df35
+--------------------------
52df35
 
52df35
 Please note that the target device will not be re-mounted by the script at the end
52df35
  of the restore phase. If needed, this should be done manually. +
52df35
diff --git a/doc/user-guide/16-Rubrik-CDM.adoc b/doc/user-guide/16-Rubrik-CDM.adoc
52df35
index 41f37d20..3ac23b7b 100644
52df35
--- a/doc/user-guide/16-Rubrik-CDM.adoc
52df35
+++ b/doc/user-guide/16-Rubrik-CDM.adoc
52df35
@@ -84,7 +84,7 @@ To make CentOS v8.0 work the following line was needed:
52df35
 == Test Matrix
52df35
 
52df35
 .Test Matrix
52df35
-[%header,format=csv]
52df35
+[options="header",format="csv"]
52df35
 |===
52df35
 Operating System,DHCP,Static IP,Virtual,Physical,LVM Root Disk,Plain Root Disk,EXT3,EXT4,XFS,BTRFS,Original Cluster,Replication Cluster
52df35
 CentOS 7.3,,pass,Pass,,Pass,,,,Pass,,Pass,