Hello, exist there an standard way to move an logical volume from one volume group to another one? Thanks. -------------- next part -------------- A non-text attachment was scrubbed... Name: smime.p7s Type: application/x-pkcs7-signature Size: 5766 bytes Desc: S/MIME Cryptographic Signature URL: <http://lists.centos.org/pipermail/centos/attachments/20080629/226b89af/attachment-0001.bin>
Frank B?ttner wrote:> Hello, > exist there an standard way to move an logical volume from one volume > group to another one?assuming this logical volume containss extfs, dump(8) it on one, restore(8) it on the other. this can be combined with a pipe, like.... # dump 0 -f - /dev/volgroup/logvol | (cd /dest; restore -rf - ) (this assumes the new logical volume has been created, has a virgin filesystem fresh from mkfs, and is mounted)