1.

What Are The Steps Involved To Create The Logical Volume From Scratch?

Answer»
  1. CREATE a physical volume USING pvcreate command: #pvcreate /dev/sdc
  2. Create a volume group using "vgcreate" command: #vgcreate vg02 /dev/sdc
  3. Create a LOGICAL volume using "lvcreate" command: #lvcreate -L 100M -n vol1 vg02
  4. Create a FILESYSTEM on logical volume using mkfs command: #mkfs -t ext4 /dev/vg02/vol1
  5. MOUNT the filesystem using mount command for use: #mount -t ext4 /dev/vg02/vol1 /vol1



Discussion

No Comment Found