OP said it uses the XFS file system. The resize2fs tool only works with ext2, ext3 and ext4.
There is the same tool available for the XFS filesytem file called xfs_growfs. Most likely, you will have to install it first.
sudo yum install xfsprogs.x86_64
then mount your file system
sudo mount -t xfs /dev/sdf /vol
you can now expand the file system
sudo xfs_growfs /vol
df -h should now show more available space
Hope this helps :)
Tip: the ext4 file system is the recommended file system for EBS volumes (for the future)
Michel Feldheim Nov 13 2018-12-11T00: 00Z
source share