"Brian J. Murrell" <[EMAIL PROTECTED]> writes:
> Hello,
>
> In my attempts to hack in support for lvm-root filesystem, I think I
> have found a problem with HD install method.
>
> At some point during the install, the lvm tools are copied to the
> /dev/ram3 disk mounted on /tmp/stage2. Well it would seem that the
> ramdisk runs out of space and the LVM tools all wind up being 0 length
> files.
>
> Any way to increase the size of the ramdisk?
replace
dd if=/dev/zero of=$STAGE2 bs=1k count=$[ `du -s $STAGE2TMP | cut -f1` + 1024 ]
with
dd if=/dev/zero of=$STAGE2 bs=1k count=$[ `du -s $STAGE2TMP | cut -f1` + 2048 ]
in make_mdkinst_stage2