
zfs
List of commands for zfs:
-
zfs:tldr:0255c zfs: Create a Snapshot of a ZFS filesystem.$ zfs snapshot ${pool_name-filesystem_name}@${snapshot_name}try on your machineexplain this command
-
zfs:tldr:270b7 zfs: Delete a ZFS filesystem.$ zfs destroy ${pool_name-filesystem_name}try on your machineexplain this command
-
zfs:tldr:348ef zfs: List all available zfs filesystems.$ zfs listtry on your machineexplain this command
-
zfs:tldr:9129f zfs: Enable compression on a filesystem.$ zfs set compression=on ${pool_name-filesystem_name}try on your machineexplain this command
-
zfs:tldr:db6c4 zfs: Create a new ZFS filesystem.$ zfs create ${pool_name-filesystem_name}try on your machineexplain this command
-
zfs:tldr:f1e66 zfs: Change mountpoint for a filesystem.$ zfs set mountpoint=${-my-mount-path} ${pool_name-filesystem_name}try on your machineexplain this command