Skip to content

Commit

Permalink
#2 issue zpoll_ru.md
Browse files Browse the repository at this point in the history
  • Loading branch information
term1nal authored Oct 9, 2019
1 parent c3f6940 commit 7c13daf
Showing 1 changed file with 31 additions and 0 deletions.
31 changes: 31 additions & 0 deletions pages/zpool_ru.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
# zpool

> Управление пулами ZFS.
- Показать конфигурацию и состояние всех ZFS z-пулов:

`zpool status`

- Проверка пула ZFS на наличие ошибок (проверка контрольной суммы КАЖДОГО блока). Очень высокая загрузка процессора и диска:

`zpool scrub {{pool_name}}`

- Список z-пулов, доступных для импорта:

`zpool import`

- Импорт z-пула:

`zpool import {{pool_name}}`

- Экспортирование z-пула (размонтируются все файловые системы):

`zpool export {{pool_name}}`

- Показать историю всех операций пула:

`zpool histrory {{pool_name}}`

- Создание зеркального пула:

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

0 comments on commit 7c13daf

Please sign in to comment.