Metadata-Version: 2.3
Name: nercone-fullcopy
Version: 0.0.2
Summary: Bit-exact, metadata-preserving copy utility for disks, images, partitions, or volumes.
Author: Nercone
Author-email: Nercone <nercone@diamondgotcat.net>
License: MIT
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Dist: nercone-modern
Requires-Python: >=3.8
Description-Content-Type: text/markdown

# nercone-fullcopy
Bit-exact, metadata-preserving copy utility for disks, images, partitions, or volumes.

## Usage

**Example:**

```bash
python -m nercone_fullcopy /dev/sda disk-image.raw -b 8M --hash sha512
```

**Options:**

- `-b, --block-size` – Block size for copy operations (default `4M`).
- `--size` – Explicit copy size if auto-detection fails.
- `--hash` – Hash algorithm for verification (default `sha256`).
- `--skip-verify` – Skip integrity verification (not recommended).
- `--force` – Overwrite an existing destination regular file.
- `--no-flush` – Do not `fsync` after writing (faster but less safe).

**Warning:** Cloning block devices may require root privileges. Use with caution.
