Move pages back into a "pages" folder

This commit is contained in:
rprieto
2014-03-04 23:28:29 +11:00
parent 0a4c0f0a37
commit f00bf64426
99 changed files with 0 additions and 0 deletions

33
pages/common/zpool.md Normal file
View File

@@ -0,0 +1,33 @@
# zpool
> Manage ZFS pools
- Show the configuration and status of all ZFS zpools
`zpool status [{{poolname}}]`
- Check a ZFS pool for errors (verifies the checksum of EVERY block). Very CPU and disk intensive.
`zpool scrub {{poolname}}`
- List zpools available for import
`zpool import`
- Import a zpool, optionally specifying a new name
`zpool import {{poolname}}`
`zpool import {{poolname}} {{newpoolname}}`
- Export a zpool (unmount all filesystems)
`zpool export {{poolname}}`
- Show the history of all pool operations
`zpool histrory {{poolname}}`
- Create a mirrored pool.
`zpool create {{poolname}} mirror {{disk1}} {{disk2}}`
`zpool create {{poolname}} mirror {{disk1}} {{disk2}} mirror {{disk3}} {{disk4}}`