System Grab Bag

View all TLDR pages from common (or from all pages)

zfs

Manage ZFS filesystems. More information: https://manned.org/zfs.
  • List all available zfs filesystems:
    zfs list
  • Create a new ZFS filesystem:
    zfs create {{pool_name/filesystem_name}}
  • Delete a ZFS filesystem:
    zfs destroy {{pool_name/filesystem_name}}
  • Create a Snapshot of a ZFS filesystem:
    zfs snapshot {{pool_name/filesystem_name}}@{{snapshot_name}}
  • Enable compression on a filesystem:
    zfs set compression=on {{pool_name/filesystem_name}}
  • Change mountpoint for a filesystem:
    zfs set mountpoint={{/my/mount/path}} {{pool_name/filesystem_name}}

License and Disclaimer

The content on this page is copyright © 2014—present the tldr-pages team and contributors.
This page is used with permission under Creative Commons Attribution 4.0 International License.

While we do attempt to make sure content is accurate, there isn't a warranty of any kind.