dd_backup

A command-line tool that performs block device backups using the dd command. It allows you to back up specific devices to a designated filesystem.

Features

Installation

shell cargo install dd_backup

Usage:

To use dd_backup, you can configure the backup settings in a JSON configuration file or use options for single back up only.

Configuration

The configuration file (~/.config/dd_backup/config.json) is used to specify the backup configurations. It has the following structure:

json { "mountpath": "/mnt", "backups": [ { "uuid": "dst-back-up-fs-uuid-1", "destination_path": "./", "fsck_command": "fsck -n", "skip_fsck": false, "skip_mount": false, "backup_devices": [ { "serial": "device-serial-1", "name": "desktop" "copies": 2 }, { "serial": "device-serial-2", "name": "laptop" } ] }, { "uuid": "dst-back-up-fs-uuid-2", "backup_devices": [{ "serial": "device-serial-3" }] }, { ... } ] }

The program allows you to configure backups for all your backup devices, whether they are currently connected or not. It checks for the presence of the filesystem and the device. If either of them is not found, the corresponding pair will be skipped during the backup process.

Running the Backup:

Make sure to exercise caution when specifying the backup devices and the target filesystem/partition. Use the --dry-run flag to see what devices would be backed up before running it.

CLI Interface

Options with no short flag are only for single backup execution.

```shell Usage: dd_backup run [OPTIONS]

Options: -n, --dry-run Performs a dry run, simulating backup operations without making any changes [default: "false"] -c, --config-file-path [default: "~/.config/dd_backup.json"] The path to the configuration file --destination-uuid The UUID of the destination backup filesystem, single-back-up-only --source-serial The serial number of the source device to be backed up, single-back-up-only --destination-path The destination path where the backup will be stored, single-back-up-only [default: ./] --copies The number of backup copies to maintain, single-back-up-only --name The name of the backup, single-back-up-only --fsck-command Alternative command to perform filesystem check (fsck -n), single-back-up-only [default: "fsck -n"] --skip-fsck Flag to skip filesystem check (fsck), single-back-up-only [default: "false"] --skip-mount Flag to skip mounting, single-back-up-only [default: "false"] -m, --mountpath The mount path of the destination filesystem, overwrites config value [default: "/mnt"] -h, --help Print help -V, --version Print version ```

The run command will mount the backup filesystem if necessary, perform the backups for each specified device, and finally unmount the filesystem (if not configured otherwise).

The file will have a name like 2023-06-15_desktop_Micro-Line_10170080910002B1.img, containing the date, the backup device name, the model and the serial.

Performing Single Backup

There are also options available for performing a single backup. These options are useful if you want to trigger a specific backup process with cron jobs, or if you have a card reader and want to back up different SD cards with individual names.

When using the single-backup options, it is necessary to specify the source serial number and destination UUID for the specific backup operation. You can also provide any other configurable option for a backup device defined in the backup_devices array.

These options are not allowed in conjunction with the config file option (-c, --config-file-path), as they are intended for one-time backup scenarios. Also the default config file is not picked up when using it.

Logging

To adjust the amount of log output, you can set the RUST_LOG environment variable to different levels such as trace or debug for more detailed output, or warn or error for less verbose output.

Here's an example command that runs the application with increased log output, saves the logs to a file, and also displays them on the command line:

shell RUST_LOG=debug dd_backup run 2>&1 | tee -a backup.log