meta data for this page
Differences
This shows you the differences between two versions of the page.
| Both sides previous revisionPrevious revision | |||
| wiki:how-to:storage:quickstart_zol [2024/08/29 06:42] – removed - external edit (Unknown date) 127.0.0.1 | wiki:how-to:storage:quickstart_zol [2024/08/29 06:42] (current) – ↷ Page moved from wiki:storage:quickstart_zol to wiki:how-to:storage:quickstart_zol mchus | ||
|---|---|---|---|
| Line 1: | Line 1: | ||
| + | ====== Быстрая настройка ZFS on Linux ====== | ||
| + | |||
| + | |||
| + | |||
| + | === Установка === | ||
| + | |||
| + | < | ||
| + | wget https:// | ||
| + | yum install -y zfs-release.el7_6.noarch.rpm | ||
| + | yum update -y | ||
| + | </ | ||
| + | |||
| + | == Измените репозиторий для использования пакета " | ||
| + | |||
| + | For most users the kABI-tracking kmod packages are recommended in order to avoid needing to rebuild ZFS for every kernel update. DKMS packages are recommended for users running a non-distribution kernel or for users who wish to apply local customizations to ZFS on Linux. | ||
| + | |||
| + | < | ||
| + | # / | ||
| + | |||
| + | [zfs] | ||
| + | | ||
| + | | ||
| + | -enabled=1 | ||
| + | +enabled=0 | ||
| + | | ||
| + | | ||
| + | | ||
| + | @@ -9,7 +9,7 @@ | ||
| + | | ||
| + | | ||
| + | | ||
| + | -enabled=0 | ||
| + | +enabled=1 | ||
| + | | ||
| + | | ||
| + | | ||
| + | </ | ||
| + | |||
| + | == Продолжение установки == | ||
| + | |||
| + | < | ||
| + | yum install -y zfs | ||
| + | </ | ||
| + | |||
| + | === Настройка === | ||
| + | |||
| + | < | ||
| + | zpool create dedup /dev/sdb | ||
| + | zpool add dedup cache /dev/sdc | ||
| + | zfs set dedup=on dedup | ||
| + | zfs set compression=on dedup | ||
| + | </ | ||
| + | |||