Red Hat Certified System Administrator RHCSA · Free Practice Question Medium
Question 34
Using the relevant utility in Red Hat Enterprise Linux 9, how would you create a 50GB thin-provisioned volume named '1thinpool'?
Show model answer
In RHEL 9, you can create a 50GB thin-provisioned volume named '1thinpool' using the Logical Volume Manager (LVM). First, ensure you have a Volume Group (VG) available. Use the command lvcreate --type thin-pool --size 50G --name 1thinpool [VolumeGroupName], replacing '[VolumeGroupName]' with the name of your existing VG. This command creates a new thin pool named '1thinpool' with a size of 50GB within the specified VG. Thin provisioning allows for the efficient allocation of storage, as it allocates space only when data is written, not upfront.
Discussion
Think the marked answer is wrong, or have a better explanation? Share it below — comments appear after review.
