1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2024-11-01 23:17:56 +01:00
tldr/pages/common/zpool.md

594 B

zpool

Manage ZFS pools.

  • Show the configuration and status of all ZFS zpools:

zpool status

  • Check a ZFS pool for errors (verifies the checksum of EVERY block). Very CPU and disk intensive:

zpool scrub {{pool_name}}

  • List zpools available for import:

zpool import

  • Import a zpool:

zpool import {{pool_name}}

  • Export a zpool (unmount all filesystems):

zpool export {{pool_name}}

  • Show the history of all pool operations:

zpool histrory {{pool_name}}

  • Create a mirrored pool:

zpool create {{pool_name}} mirror {{disk1}} {{disk2}} mirror {{disk3}} {{disk4}}