What action should be performed after increasing the size of a logical volume?
What action should be performed after increasing the size of a logical volume?
After increasing the size of a logical volume, the next action is to increase the size of the filesystem used for the logical volume. This ensures that the filesystem can utilize the newly available space, otherwise, the additional space remains unusable. Commands like xfs_growfs for XFS or resize2fs for ext4 are typically used to resize the filesystem.
after expand a logical volume, you need extend the filesystem. Example in xfs. [root@srvrh143 ~]# lvextend -l +100%FREE /dev/rhel2/dados Size of logical volume rhel2/dados changed from <4,00 TiB (1048575 extents) to <5,00 TiB (1310719 extents). Logical volume rhel2/dados successfully resized. [root@srvrh143 ~]# xfs_growfs /dev/mapper/rhel2-dados
B is correct
B is correct
B - 100%