Zano is a CLI bidirectional synchronizer for Linux.
Project description
Overview
Zano is a bidirectional synchronizer for Linux.
It may be useful if you need to synchronize two tree structures and can not or do not want to rely on an Internet connection to perform this (via a cloud storage service, for instance).
Requirements
A Linux system.
The tree structures to synchronize should be ext4; the backups too; the replicas can be anything rsync may push to (e.g. as well ext4 as FAT32).
GNU Make 4.2.1 + coreutils 8.30-3ubuntu2
Quick start
First, you’ll have to configure your bundle: the two tree structures names and paths, like in the minimal example below:
[synced.side1]
name = 'HOME'
root = '/home/johndoe/work/docs/'
[synced.side2]
name = 'NOMAD'
root = '/media/johndoe/MY_USB_STICK/work/'
Say, you want to name this bundle “WORK”, then save this file as ~/.config/zano/WORK.toml.
The first time you will try to synchronize, zano will have no clue to distinguish new from deleted files. Hence, while trying to pair your files and directories, zano will show you if some are missing on one side compared to the other. If so, it will be possible to either abort this first attempt, or let zano copy the missing files and directories from one side to the other one.
After a first successful synchronization, zano will know about new or deleted files automatically during next synchronizations.
Assuming your USB stick is plugged in and mounted, always run synchronization this way: zano sync WORK
More details
Configuration files
General configuration
Zano configuration is defined in ~/.config/zano/zano.json.
Parameters you can set are:
autocommit: if true, then the new state will be recorded in the database after each step of the synchronisation. If true, this option makes zano more resilient in case of power failure, at the cost of a slower synchronisation.
logging: here you can setup options for log, the log directory, log level, max_bytes (in MB, before it autorotates) and the number of rotated log files.
If ~/.config/zano/zano.json does not exist, the following default values will be used:
{
"autocommit": true,
"logging": {
"log_dir": "~/.local/share/zano/log",
"log_level": "INFO",
"max_bytes": "1",
"backup_count": 9
}
}
Per bundle configuration
More options can be set in the per-bundle configuration file. The per-bundle configuration file lives in ~/.config/zano/, for example for the bundle WORK, it will be ~/.config/zano/WORK.toml.
Filters
The main section, [synced], can contain filters. For instance:
[synced]
filters = ['.~lock.*.odt#', '.~lock.*.ods#', '*/.Trash-*']
The matching files and directories will be ignored during the synchronisation steps. Each filter is a python regular expression.
Both [synced.side1] and [synced.side2] can contain their own filters, but if they are not the same, Zano’s behaviour may be unexpected.
Replicas
In addition to two synced sides, there may be any number of copies, called replicas. Each replica is identified by its name, like BLUE_STICK, RED_STICK and YELLOW in the example below:
[replicas.BLUE_STICK]
root = '/media/johndoe/WORK_BACKUP1'
# replicas' filters are rsync filters:
filters = ['original/', '/.archives/', '.Trash-*/*']
newdocs_path = 'SCANNED'
[replicas.RED_STICK]
root = '/media/johndoe/WORK_BACKUP2'
# replicas' filters are rsync filters:
filters = ['original/', '/.archives/', '.Trash-*/*']
[replicas.YELLOW]
root = '/media/johndoe/YELLOW/data/'
# replicas' filters are rsync filters:
The contents of the synced sides, after synchronisation, can be pushed to replicas. This is unidirectional synchronisation.
But there is a special extra feature: new documents (like scan results) will be automatically copied to both synced sides, if they are stored in the special new documents folder. The default name of this folder is NEW_DOCS, but you can set it, per replica, in the configuration file (see example for BLUE_STICK just above).
An example use case is if you need sticks that are not ext4 (e.g. FAT32 or NTFS) to print pdf documents in a printer. Or to scan documents from a printer.
Backups
[synced.side1] and [synced.side2] can define a backup, which will be used by the --backup-before and --backup-after options.
Example:
[synced.side1]
name = 'HOME'
root = '/home/johndoe/Documents/pro'
backup = '/media/johndoe/ext_hdd1/pro_backup/HOME/'
[synced.side2]
name = 'NOMAD'
root = '/media/johndoe/WORK_STICK/pro/'
backup = '/media/johndoe/ext_hdd1/pro_backup/NOMAD/'
Options
Command line options are:
-B,--backup-before: copy each synced side to its backup before syncing.-b,--backup-after: copy each synced side to its backup after syncing.--push: automatically push changes to replicas after synchronisation, without asking.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distributions
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file zano-0.6.0-py3-none-any.whl.
File metadata
- Download URL: zano-0.6.0-py3-none-any.whl
- Upload date:
- Size: 30.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.11.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e7ff8edd08a7b3e76c4df8e9c2cc18f55b7e32d778643401a35738898d6f7688
|
|
| MD5 |
7c184640e306c5c27401efa9512d4563
|
|
| BLAKE2b-256 |
e77cc06a5091bdd83bce16b57b2b85733241a4ca47ed9fef5080d8c15a295f49
|