GPTを備えた2x3TBディスクと、最初のディスク(sda4)で2.7TBパーティションを使用し、2番目のディスク(sdb4)で1TBを使用するzpoolがあります。
理由は、最初は両方のディスクが1TBでしたが、私は両方を3TBに順次交換したためです。しかし、1x1TBと1x3TBがあった間、残りの3TBを別のパーティションに使用しました。これを今すぐ削除します。
Linuxで最新のZFS(0.6.5.7-8-wheezy)を使用しています。プールのサイズを2.7TB全体に変更する正しい方法は何ですか?
autoresize
は現在オフです。これは、lsblk
とzpool status
の現在の出力です。
# lsblk
NAME MAJ:MIN RM SIZE RO TYPE MOUNTPOINT
sda 8:0 0 2,7T 0 disk
├─sda1 8:1 0 1M 0 part
├─sda2 8:2 0 14,5G 0 part
│ └─md0 9:0 0 14,5G 0 raid1 /
├─sda3 8:3 0 4,2G 0 part
│ └─md2 9:2 0 4,2G 0 raid1 [SWAP]
└─sda4 8:4 0 2,7T 0 part
sdb 8:16 0 2,7T 0 disk
├─sdb1 8:17 0 1M 0 part
├─sdb2 8:18 0 14,5G 0 part
│ └─md0 9:0 0 14,5G 0 raid1 /
├─sdb3 8:19 0 4,2G 0 part
│ └─md2 9:2 0 4,2G 0 raid1 [SWAP]
├─sdb4 8:20 0 912,9G 0 part
└─sdb5 8:21 0 1,8T 0 part
# zpool status
pool: zpradix1imain
state: ONLINE
status: Some supported features are not enabled on the pool. The pool can
still be used, but some features are unavailable.
action: Enable all features using 'zpool upgrade'. Once this is done,
the pool may no longer be accessible by software that does not support
the features. See zpool-features(5) for details.
scan: resilvered 687G in 6h2m with 0 errors on Fri Dec 26 18:39:27 2014
config:
NAME STATE READ WRITE CKSUM
zpradix1imain ONLINE 0 0 0
mirror-0 ONLINE 0 0 0
ata-WDC_WD30EZRZ-00WN9B0_WD-WCC4E7CL5U9D-part4 ONLINE 0 0 0
ata-WDC_WD30EZRX-00D8PB0_WD-WMC4N0E6K1AW-part4 ONLINE 0 0 0
最初のステップとして、sdb5を削除し、sdb4のサイズを(gdisk経由で)2.7TBに変更し、パーティションテーブルを再スキャンします(両方のディスクのパーティションレイアウトは同じになります)。
しかしその後?
それは少し混乱のように見えます。
しかし、要するに:
autoexpand=on
を設定します。partprobe
を実行するか、再起動します。zpool online -e zpradix1imain ata-WDC_WD30EZRZ-00WN9B0_WD-WCC4E7CL5U9D-part4
とzpool online -e zpradix1imain ata-WDC_WD30EZRX-00D8PB0_WD-WMC4N0E6K1AW-part4
を使用します zpool online [-e] pool device...
Brings the specified physical device online.
This command is not applicable to spares or cache devices.
-e Expand the device to use all available space. If the device is part of a mirror or raidz
then all devices must be expanded before the new space will become available to the pool.