30+ tools that make ZFS and Linux feel like they were always meant to work this way.
Every kldload install ships a complete toolbox — short, memorable commands that wrap ZFS, package management, boot environments, and system diagnostics into something you can actually use without reading a man page every time. These work identically on Debian and RHEL. Same command, same output, any distro.
Everyday tools
These are the commands you'll use most. Short names, no flags to memorize, sensible defaults.
ksnap snapshots everything. ksnap list shows all snapshots. ksnap rollback /home rolls back. Simple.kclone /home/alice /home/alice-backup — takes milliseconds, uses zero extra space until data diverges.kdir /srv/myapp creates rpool/srv/myapp with its own snapshot and quota policies. Like mkdir but with superpowers.apt or dnf automatically. Takes a ZFS snapshot before every install, remove, or upgrade. If a package breaks something, roll back in seconds.Boot environment management
Boot environments are the killer feature. Snapshot your entire OS, upgrade, and if it breaks, reboot into the old version. Fifteen seconds. No reinstall.
kbe rollback fixes it.Snapshot automation
Snapshots happen automatically. You don't have to remember.
/srv) snapshotted every 15 minutes via systemd timer. Retention: last 4.System administration
adduser.local hook.Shell aliases
50+ aliases and functions loaded automatically. Context-aware — Kubernetes, Helm, Salt, Docker, virsh, and ZFS aliases only appear if the tool is installed.
ZFS
zls — list datasets
zsnap — list snapshots
zbe — list boot environments
Kubernetes
k, kgp, kgn, kgs — get pods/nodes/svc
kns — switch namespace
ksh <ns> <pod> — shell into pod
kshow <ns> — full namespace overview
Salt
slist — formatted fleet inventory
sping — ping all minions
shighstate — apply state
Infrastructure
vls, vstart, vstop — virsh shortcuts
dps, dcu, dcd — Docker shortcuts
ports — listening ports
ksnap works, cat $(which ksnap).
That's the point.