diff --git a/Workflows/Linux/Expand XFS Filesystem.md b/Workflows/Linux/Expand XFS Filesystem.md index 2efb64c..d33a4bc 100644 --- a/Workflows/Linux/Expand XFS Filesystem.md +++ b/Workflows/Linux/Expand XFS Filesystem.md @@ -72,18 +72,12 @@ sudo xfs_growfs / At this point, you can leverage `lsblk` or `df -h` to determine if the usable storage space was successfully increased or not. In this example, you can see that I increased my storage space from 512GB to 1TB. !!! example - Command: - `lsblk | grep "sda4"` - - Output: + Command: `lsblk | grep "sda4"` ``` └─sda4 8:4 0 1014.5G 0 part / ``` - Command: - `df -h | grep "sda4"` - - Output: + Command: `df -h | grep "sda4"` ``` /dev/sda4 1015G 145G 871G 15% / ```