can some one tell me the steps(with commands) to create LVM
in RHEL 5????
Answer Posted / yogendra kiran kumar
1) Create 2 LVM partitions using
# fdisk /dev/sda
id for lvm --> 8e
2) # partprobe [ to update kernal ]
3) # pvcreate pv1 /dev/sda{6,7}
[ pv1 is physical volume label and 6,7 are the partition
no's it may differ in ur system ]
4) # pvdisplay
[ to display the physical volume info ]
5) # vgcreate vg1 /dev/sda{6,7}
[ to create logical volume group ]
6) # lvcreate -L 700M -n lv1 vg1
[ to create ur required size partition of lvm ]
[ lv1 is lvm label]
7) # lvdisplay
[ to know about the logical volume ]
8) # mkfs.ext3 /dev/vg1/lv1
[ to give file system ]
9) # mkdir /lv1
# mount /dev/vg1/lv1 /lv1
[ to mount the lv1 to as a seperate disk ]
| Is This Answer Correct ? | 7 Yes | 1 No |
Post New Answer View All Answers
What is parallel ssh?
If we transfer 100 files by ftp to remote server, how to know the files are successfully transfer or some file are not transferred?
You wish to print a file ‘draft’ with 60 lines on a page. What command would you use?
You need to see the last fifteen lines of the files dog, cat and horse. What command should you use?
Is cmake only for c++?
How do I stop a linux job?
How do I check storage on linux?
What is make in linux?
What is a ulimit in unix?
How do I run a .sh file in linux?
How do I know my linux shell version?
What are the ms dos commands?
How do I list directories in linux?
What is history command in linux?
How do you copy in linux terminal?