zfsify

# ⚡ zfsify Convert an Ubuntu VPS or attached volume from ext4 to ZFS with one command, preserving existing data through in-place filesystem conversion. [![Ubuntu](https://img.shields.io/badge/Ubuntu-22.04+-E95420?logo=ubuntu&logoColor=white)](#requirements) [![Experimental](https://img.shields.io/badge/status-experimental-f59e0b)](#before-you-start) [![MIT](https://img.shields.io/badge/license-MIT-64748b)](LICENSE)

1. Scan disk and choose a method 2. Prepare the disk 3. Convert ext4 to ZFS 4. Finish disk and boot setup 5. Enable snapshots, recovery and growth

Cloud providers usually ship Ubuntu with ext4. Getting ZFS means building a custom boot image or manually partitioning disks and migrating your files. zfsify automates that work for the boot drive, including / and /boot, and attached data volumes.

Create a normal Ubuntu VPS or volume on DigitalOcean, Vultr, Hetzner, AWS, GCP, Azure, or another provider, then run zfsify inside Ubuntu. It transfers your installation onto ZFS so you can use snapshots, compression, checksums, booting from snapshots, and all the other benefits of ZFS.

Choose a setup

Before you start

Experimental software: make a full offsite backup before proceeding. Repartitioning or an interrupted conversion can destroy data or leave the disk unbootable.

Before running the command:

Quick start

# Convert the Ubuntu boot drive.
curl -fsSL https://pirate.github.io/zfsify/reformat.sh | sudo sh

# Or convert an attached ext4 disk; replace the path with your disk's ID.
curl -fsSL https://pirate.github.io/zfsify/reformat.sh | sudo bash -s -- /dev/disk/by-id/YOUR-DISK

Review the highlighted method and disk, then explicitly confirm conversion. The interactive flow has no automatic start or timeout; method options preselect the method for review. Convert one disk per invocation.

Requirements

How it Works

1. Scans the disk and selects an algorithm

![Scan disk and choose a method](/zfsify/docs/assets/recordings/phase-1.gif) - **Enough room for two copies:** it selects the temporary-partition method, usually when less than 50% of the filesystem is used. - **Less free space on `/`:** it selects slice-by-slice conversion when the data fits alongside the recovery area and filesystem overhead. - **Insufficient working space:** it asks you to choose a separate backup destination. Attached volumes require room for two copies or a separate backup. - **Explicit options:** it uses your requested method (`--preserve`, `--inplace`, `--backup`, or `--erase`) when applicable. It never selects erasure as an automatic fallback.

2. Prepares the disk for conversion

![Prepare the disk](/zfsify/docs/assets/recordings/phase-2.gif) - **Boot drive:** it stages a temporary RAM boot environment and reboots into it, retaining SSH access. For slice-based conversion, it also prepares persistent rescue storage so interrupted copying can resume. - **Attached volume:** it unmounts the source filesystem before conversion; applications using that volume must be stopped first. - **Backup and restore:** it prompts you to select and confirm a destination, then creates a complete archive and reads it back to verify it before erasing the source. An explicit `--backup=/mnt/backup` or `--backup=remote:path` selects the destination; final conversion confirmation is still required. [Backup setup](/zfsify/docs/backup.html).

3. Converts ext4 to ZFS

![Convert ext4 to ZFS](/zfsify/docs/assets/recordings/phase-3.gif) - **Two-copy method:** it shrinks ext4, copies files to ZFS at the disk's end, and verifies them before replacing the original. It then moves ZFS to the front and expands it. Bootability is preserved where possible, but partition and bootloader replacement have interruption windows; disk failure can destroy both copies. - **Slice-based method:** it copies and verifies files in slices, then reuses their ext4 space for ZFS. **The original Ubuntu installation becomes unbootable when its data starts being reclaimed.** The temporary rescue entry can resume interrupted copying or relocation. - **Backup and restore:** it erases the source, creates ZFS, and restores the verified archive. The source remains unbootable until restoration and boot setup finish; keep the backup until the restored system works. - **Erase (`--erase`):** for `/`, it installs fresh Ubuntu of the same release, preserves accounts, SSH access, and `/etc`, then restores as much home/application data as the displayed budget allows. **Omitted data is lost; applications may need reinstalling. For an attached volume, it erases all files.**

Attached disk rclone backup and restore 50/50 conversion

![Conversion with room for a second copy](/zfsify/docs/assets/disk-conversion.svg)

4. Finishes disk and boot setup

![Finish disk and boot setup](/zfsify/docs/assets/recordings/phase-4.gif) - **Files and mounts:** it preserves ownership, permissions, ACLs, and extended attributes. It removes the old ext4 entries from `/etc/fstab` and configures ZFS to mount the new datasets at their original paths. - **Boot drive:** it rebuilds Ubuntu's initramfs with ZFS support, preserves applicable kernel boot arguments, and replaces GRUB with ZFSBootMenu. A small firmware/bootloader partition remains outside ZFS; Ubuntu packages continue to use APT. - **Attached volume:** it mounts the new dataset at the original mount point and enables mounting at startup. You can then restart applications that use the volume.

5. Enables snapshots, recovery, and disk growth

![Enable snapshots, recovery and growth](/zfsify/docs/assets/recordings/phase-5.gif) - **Boot-drive snapshots:** it creates an initial recovery snapshot and schedules daily snapshots and snapshots before APT package changes, then reboots into Ubuntu. For recovery, you can open ZFSBootMenu in the provider's preboot console and boot a clone of a working snapshot. [Snapshot recovery](/zfsify/docs/recovery.html#open-the-preboot-console). - **Disk growth:** it expands the ZFS partition and pool on reboot after you enlarge the disk through your provider. No guest-side resize commands are needed; both boot-disk and attached-volume growth have been tested on DigitalOcean. ![Snapshot selection in DigitalOcean's recovery console](/zfsify/docs/assets/screenshots/digitalocean-snapshots.jpg)

If conversion stops: reconnect and run zfs-on-boot-status. Do not blindly reboot or delete temporary partitions. Interruptions during final partition or bootloader replacement may require a provider rescue image. Recovery guide · Interrupted conversion

Tested environments

Environment Ubuntu / architecture Configuration
DigitalOcean Droplets 22.04 and 24.04, x64, BIOS 1 vCPU; 512 MiB RAM / 10 GiB boot SSD or 1 GiB RAM / 25 GiB boot SSD; attached 1–2 GiB Volumes
Local VMs on Apple Silicon (QEMU/HVF) 24.04, ARM64, UEFI 2 vCPUs; 512 MiB RAM / 10 GiB disk or 1 GiB RAM / 25 GiB disk
Local VMs on Apple Silicon (QEMU/HVF) 26.04, ARM64, UEFI 2 vCPUs; 1 GiB RAM / 25 GiB disk
KVM guest hosted on a DigitalOcean Droplet 24.04, x64, UEFI 1 GiB RAM / 20 GiB disk

Other providers have not been explicitly tested. Cloud-init scheduling has not been separately tested end to end. Lima/VZ has an unresolved boot failure; use QEMU/HVF for local VMs.

Performance

Environment Observed transfer speed
Small DigitalOcean Droplet, built-in SSD About 20 MB/s copying Ubuntu files
Local ARM64 VM, 1 GiB RAM About 19 MB/s copying and verifying files
Native NVMe Not benchmarked

Allow at least 17 minutes per 20 GB at 20 MB/s, plus package installation, verification, relocation, and reboots. Small files, limited RAM, and backup network bandwidth can increase the total time.

Volume guide · Cloud-init guide · Recovery guide · Contributing