Correct Answer: To extend the logical volume named 'common' in the VGSRV volume group, mounted to the /common directory, from 128 MB to 190 MB without any loss of data, follow these steps. First, use the command 'lvextend' to increase the size of the logical volume. Then, use 'resize2fs' to resize the filesystem to utilize the newly allocated space. The correct commands are: 'lvextend -L 190M /dev/mapper/vgsrv-common' and then 'resize2fs /dev/mapper/vgsrv-common'. The '-L 190M' option ensures the logical volume's total size becomes 190 MB. After extending the logical volume, 'resize2fs' adjusts the filesystem to fit the new size.