+1 vote
in Linux by
If a volume group already exists and we need to extend the volume group to some extent. How will you achieve this?

1 Answer

0 votes
by

Linux provide the facility to increase the size of a volume group even if it already exists. For this, we need to run a command.

First of all, we have to create a physical volume (/dev/sda1)

Size of the physical volume should be the size you want the size of the logical volume.

Now, run the below command:

vgextend VG1 /dev/sda1

Here VG1 is the name of the volume group.

Related questions

0 votes
asked Jan 11, 2020 in Big Data | Hadoop by rajeshsharma
...