I've setup RHEL7 with default partitioning, and they partitioned it as following:
/dev/mapper/rhel-home 100GB /home
/dev/mapper/rhel-root 50GB /
Both are on xfs filesystem. How can i shift most of my diskspace from /home to / ?
I've tried the below code
umount /home
lvreduce -rL -10G /dev/mapper/rhel-home
lvextend -rL +10G /dev/mapper/thel-root
But it doesnt seem to work because xfs file system does not support shrinking.