Find the answer to your Linux question:
Results 1 to 2 of 2
How to convert swap partition or any other partition from ext3 to LMV or LVM is just a utility which manages hard drives or partitions? If yes, the what is ...
  1. #1
    Just Joined! rah_jad's Avatar
    Join Date
    Sep 2008
    Posts
    14

    Question Ext3 to LVM

    How to convert swap partition or any other partition from ext3 to LMV or LVM is just a utility which manages hard drives or partitions? If yes, the what is 8e?

  2. #2
    Linux Newbie
    Join Date
    Feb 2009
    Posts
    99
    swap and ext3 is filesystem.
    LVM is partition tools .... like raid device.

    8e is one kind of partition ID use to define partition type. example: 82 use for swap 83 use for ext3 ..... etc.

    covert partition to LVM would lose data.

    example: you want to use sda1, sdb1, sdc1 create one lvm partition.

    try pvcreate /dev/sda1 /dev/sdb1 /dev/sdc1
    vgcreate vgname /dev/sda1 /dev/sdb1 /dev/sdc1
    lvcreate -L +1000M -n lvname /dev/vgname

    so you create one lvm partition. but all data in sda1, sdb1 sdc1 would lose.

    you have to format /dev/vgname/lvname partition and mount into your system.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
...