linux-lvm.redhat.com archive mirror
 help / color / mirror / Atom feed
From: Alfredo De Luca <alfredo.deluca@gmail.com>
To: LVM general discussion and development <linux-lvm@redhat.com>
Subject: Re: [linux-lvm] lvm2 conf on boot disk
Date: Fri, 11 Jul 2014 22:54:46 +1000	[thread overview]
Message-ID: <CAAWpFTFehTVd2J7vq6w2Yo266fsh2anGGosv8PruBBbhmmQNdw@mail.gmail.com> (raw)
In-Reply-To: <53BD71DA.7000801@redhat.com>

[-- Attachment #1: Type: text/plain, Size: 1721 bytes --]

Hi Jack.
Thanks for that. I did pretty much what you said but not sure how to
re-create the initrd then install the grub.
Do you have a specific procedure?
I followed the procedure in attachment but it's slightly different
from what I am looking for.


On Thu, Jul 10, 2014 at 2:46 AM, Jack Waterworth <jack@redhat.com> wrote:
> There is no way to do an in-place convert from a partitioned device to LVM
> without losing data. I would recommend adding a new disk, reinstall the OS
> on the new disk with LVM, and then moving over any data that was required
> after installation.
>
> You may be able to do this in rescue mode within a chrooted environment, but
> things could get messy. Add the new device, build the lvm stack, copy over
> the data then chroot into the NEW lvm root. Mount everything appropriately,
> recreate the initrd and re-install grub onto the new disk.  Go in with the
> expectation that you may be fixing things after the reboot from rescue mode.
>
>   Jack Waterworth, RHCE
>   Senior Technical Support Engineer
>   Red Hat Global Support Services
>   919.610.2024 -- jack@redhat.com
>
> On 07/08/2014 05:56 AM, Alfredo De Luca wrote:
>>
>> Hi all.
>> I have red hat 5.7 with no lvm2 installed. Now I want to configure
>> lvm2 on the root and swap partition then later on adding a couple of
>> LUNs to create a VG
>> What's the best practice/procedure to install lvm2 on the boot disk?
>> Is it possible? I guess I have to run Linux CD in rescue mode
>>
>> Regards
>>
>>
>
> _______________________________________________
> linux-lvm mailing list
> linux-lvm@redhat.com
> https://www.redhat.com/mailman/listinfo/linux-lvm
> read the LVM HOW-TO at http://tldp.org/HOWTO/LVM-HOWTO/



-- 
Alfredo

[-- Attachment #2: lvm --]
[-- Type: application/octet-stream, Size: 1435 bytes --]

A.) First Create an LVM partition:

# pvcreate /dev/sdb1  ---->>> or the any other device as per your server.
# vgcreate vg_new_root  /dev/sdb1
# lvcreate -L 4G -n lv0 vg_new_root
 

B.) Format this new LVM partition with ext3 or ext4 (or as needed):

# mke2fs -j /dev/vg_new_root/lv0
 

C.) Create a new mount point and then mount the LVM Partiton on it:

# mkdir /mnt/NEW_ROOT_PARTITION
# mount /dev/vg_new_root/lv0  /mnt/NEW_ROOT_PARTITION


D.) Copy all contents of "/" to the newly mounted folder:

# tar -cvpf - --one-file-system --acls --xattrs --selinux / | tar -C /mnt/NEW_ROOT_PARTITION -xf
# cp -aux /dev /mnt/NEW_ROOT_PARTITION


E.) Now edit the file -- "/mnt/NEW_ROOT_PARTITION/etc/fstab" to reflect the new root:

/dev/vg_new_root/lv0            /                       ext3    defaults        1 1

 

F.) Now it is needed to chroot to new filesystem and create initrd with raid and lvm support:

# mount --bind /dev  /mnt/NEW_ROOT_PARTITION
# chroot /mnt/NEW_ROOT_PARTITION
# mount -t proc /proc /proc
# mount -t sysfs /sys /sys

# vgscan
# vgchange -ay
# mkinitrd -v /boot/initrd-`uname -r`.lvm.img `uname -r`
   
# umount /sys
# umount /proc
# exit
# mv /mnt/lv0/boot/initrd-`uname -r`.lvm.img /boot


G.) Edit "/boot/grub/grub.conf" to point to new root "/dev/vg_new_root/lv0". Backup the old initrd in "/boot" directory and rename the new initrd to the existing one or edit the entry in grub.conf.

 

H.) Reboot



  reply	other threads:[~2014-07-11 12:54 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2014-07-08  9:56 [linux-lvm] lvm2 conf on boot disk Alfredo De Luca
2014-07-09 16:46 ` Jack Waterworth
2014-07-11 12:54   ` Alfredo De Luca [this message]
2014-07-11 23:15     ` Jack Waterworth

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=CAAWpFTFehTVd2J7vq6w2Yo266fsh2anGGosv8PruBBbhmmQNdw@mail.gmail.com \
    --to=alfredo.deluca@gmail.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).