To extend a file system after resizing the disk volume in Linux, you can use the following steps:
fdisk -l /dev/sda
This will display the partition table for the disk "/dev/sda", including the size of each partition.
fdisk /dev/sda
This will open the "fdisk" utility and allow you to modify the partition table for the disk. Follow the prompts to delete the existing partition and create a new one using the additional space on the disk.
lsblk -f /dev/sda1
This will display the file system type for the partition "/dev/sda1".
resize2fs /dev/sda1
xfs_growfs /dev/sda1
This will resize the file system to use the additional space on the partition.
Note: The steps above are just a few examples of how you can extend a file system after resizing the disk volume in Linux. The specific steps you need to take may vary depending on your system and the configuration of the disk and file system.