1
私は別のスナップショットの元のソースであるlv(論理ボリューム)を持っています。そして、私は「は、lvextend」と最初の試行がエラーで失敗したコマンドでLVを拡張したい:スナップショットを持つ論理ボリュームを拡張する方法
Snapshot origin volumes can be resized only while inactive
は、だから私は、コマンド・シーケンスと第二の方法を試してみました。
1. unmount [mount_path]
2. deactive the device with command(lvchange -an [device_path])
3. lvextend [device_path]
はその後、私はエラーを取得する:
LV [device_namr] has open snapshot [snapshot_name]: not deactivating
私は、どのように私はスナップショットLVを拡張することができます何をすべきかが存在しますか?
lvchange -an [snapshot_path]
を、ボリュームとスナップショットの両方がアクティブであるとき、あなたはあなたのボリュームを拡張することができます
例: 'lvchange -an/dev/vg0/snap-tmp-vm04.debian-disk' – rubo77