<div dir="ltr">If I understand your question then you want to treat a disk image stored inside a none-disk (e.g. a Logical Volume or even a regular file) as a physical disk and access the partition inside it.<br><br>In that case &quot;kaprtx&quot; is your friend, something like:<br>

<br>losetup -f /dev/vgname/lvname<br>kpartx -a -v /dev/loopN<br><br>now you can access the partitions inside it (e.g. &quot;vgchange -ay internal-vgname&quot;, &quot;mount&quot;, &quot;resizefs&quot; etc)<br><br>to reverse:<br>

<br>umount/vgchange -an/...<br>losetup -a # to find which loop device you need to deactivate<br>kpartx -d /dev/loopN<br>losetup -d /dev/loopN<br><br>Did I get it?<br><br>--Amos<br><br><div class="gmail_quote">On 3 April 2011 03:43, Ira Abramov <span dir="ltr">&lt;<a href="mailto:Lists-Linux-IL@ira.abramov.org">Lists-Linux-IL@ira.abramov.org</a>&gt;</span> wrote:<br>

<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex;">Hello friends, last resort before I go and reinvent the wheel, badly.<br>
<br>
I have a system here that creates a dozen images for medias of different<br>
sizes, installing a few dozen machines every day. I would like to make<br>
the process more unified - install the same 4G image on all medias (dd)<br>
and then maximize sda6, the last ext3 partition, and naturally, the<br>
underlying extended partition sda4.<br>
<br>
The only tool that automates resizing like that is parted, and it still<br>
needs a precise partition length instead of &quot;use all available space&quot;,<br>
and won&#39;t resize ext3 if I don&#39;t turn off the journaling first (make it<br>
ext2). I tried deducing the maximum partition size with fdisk -l and<br>
other sfdisk instead, but each uses different units and I have no idea<br>
how to convert them all correctly so I&#39;m left with working, non<br>
overlapping partitions.<br>
<br>
I&#39;m prepared to do it the hard way, I just wondered if there&#39;s a tool I<br>
missed or an existing script that already does this.<br>
<br>
Thanks.<br>
<br>
--<br>
His own worst enemy<br>
Ira Abramov<br>
<a href="http://ira.abramov.org/email/" target="_blank">http://ira.abramov.org/email/</a><br>
<br>
_______________________________________________<br>
Linux-il mailing list<br>
<a href="mailto:Linux-il@cs.huji.ac.il">Linux-il@cs.huji.ac.il</a><br>
<a href="http://mailman.cs.huji.ac.il/mailman/listinfo/linux-il" target="_blank">http://mailman.cs.huji.ac.il/mailman/listinfo/linux-il</a><br>
</blockquote></div><br></div>