From: Lars Ellenberg <linux-lvm@linbit.com>
To: linux-lvm@redhat.com
Subject: Re: [linux-lvm] Question on duplicating equally-sized HDs with dd and changing VG name and PV UUIDs
Date: Fri, 7 Sep 2007 19:53:45 +0200 [thread overview]
Message-ID: <20070907175345.GA5931@racke.local> (raw)
In-Reply-To: <20070907121306.GA27457@heitec.net>
On Fri, Sep 07, 2007 at 02:13:07PM +0200, Holger Rauch wrote:
> Hi,
>
> I got a machine having two HDs of the same size (250 GB each), devices
> /dev/sda and /dev/sdb. /dev/sda contains VG rootvg which in turn contains
> several LVs. VG rootvg consists of one PV, /dev/sda5. All this was set up
> using LVM2.
>
> I want to have the same HD partition/VG/LV layout on /dev/sdb with the
> following differences:
>
> - A different VG name: backupvg instead of rootvg
> - A different UUID for PV /dev/sdb5 (since that's supposed to be the underlying
> PV for VG backupvg)
>
> Purpose of that setup is to be able to easily copy filesystem contents
> between filesystems located on LVs of the same name but in different VGs.
> (Apart from that, the filesystems are of the same type and size).
now, why would you want to dd the full disk,
and then change thr uuids?
what is wrong with
sfdisk -d /dev/sda | sfdisk /dev/sdb
lvs -o attr,name,size --noheadings rootvg |
while read a n s; do
[[ $a == -* ]] || continue;
lvcreate -L $s -n $n backupvg ;
# dd bs=1M if=/dev/rootvg/$n of=/dev/backupvg/$n
done
?
--
: Lars Ellenberg Tel +43-1-8178292-55 :
: LINBIT Information Technologies GmbH Fax +43-1-8178292-82 :
: Vivenotgasse 48, A-1120 Vienna/Europe http://www.linbit.com :
next prev parent reply other threads:[~2007-09-07 17:54 UTC|newest]
Thread overview: 9+ messages / expand[flat|nested] mbox.gz Atom feed top
2007-09-07 12:13 [linux-lvm] Question on duplicating equally-sized HDs with dd and changing VG name and PV UUIDs Holger Rauch
2007-09-07 17:53 ` Lars Ellenberg [this message]
2007-09-10 8:59 ` Holger Rauch
2007-09-10 17:17 ` malahal
2007-09-11 10:00 ` Holger Rauch
2007-09-11 10:12 ` Holger Rauch
2007-09-12 0:21 ` LVM UUID generation (was Re: [linux-lvm] Question on duplicating equally-sized HDs with dd and changing VG name and PV UUIDs) Daniel Tuijnman
2007-09-17 21:19 ` [linux-lvm] Question on duplicating equally-sized HDs with dd and changing VG name and PV UUIDs Alasdair G Kergon
2007-09-19 16:04 ` Holger Rauch
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20070907175345.GA5931@racke.local \
--to=linux-lvm@linbit.com \
--cc=linux-lvm@redhat.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).