Linux Ask!

Linux Ask! is a Q & A web site specific for Linux related questions. Questions are collected, answered and audited by experienced Linux users.

May 202011
 

Create a new ext3 file system using LVM

Answer:

To create a new ext3 partition using the Logical Volume Manager (LVM) is just easy with a few commands:

# lvcreate -L 100G -n /dev/vg0/vp0 (Assume volume group is vg0) 
# mkfs -t ext3 -m 1 -v /dev/vg0/vp0

Then you can mount the /dev/vg0/vp0 as usual.

 Leave a Reply

(required)

(required)

You may use these HTML tags and attributes: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <strike> <strong>