4つの論理ボリュームを含む3つのディスク(ext4)で構成された既存のLVMボリュームグループがあります。まだ次世代FSに飛躍する準備ができていないので、ディスクのロードバランシングを調整したいと思います。ストライピングを使用してVG(RAID0と同じ)を生成できることを見ましたが、既存のものを変換したいと思います。これは可能ですか?
答え1
この履歴がどれほど古いかはわかりませんが、v2.02.183に表示されますman lvconvert
。
--stripes Number
Specifies the number of stripes in a striped LV. This is the number of PVs
(devices) that a striped LV is spread across. Data that appears sequential in
the LV is spread across multiple devices in units of the stripe size (see
--stripesize). This does not apply to existing allocated space, only newly
allocated space can be striped.
だから本当ではない変化既存のLVをストライプに変更します。既存のデータはそのまま残ります。
答え2
sudo lvconvert --stripes 3 vg/lv /dev/sda1 /dev/sdb1 /dev/sdc1
ここで、2 はストライプ数、論理ボリューム、ストライプするデバイスの 3 つです。 RAID 0には冗長性はありません。