From f0c47caa04c1940cecbe54c71482584578e074c2 Mon Sep 17 00:00:00 2001 From: Nicole Rappe Date: Mon, 9 Dec 2024 16:40:33 -0700 Subject: [PATCH] Update Workflows/Linux/Expand RHEL Filesystem.md --- Workflows/Linux/Expand RHEL Filesystem.md | 26 +++++++++++------------ 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/Workflows/Linux/Expand RHEL Filesystem.md b/Workflows/Linux/Expand RHEL Filesystem.md index 71c5fa3..0389795 100644 --- a/Workflows/Linux/Expand RHEL Filesystem.md +++ b/Workflows/Linux/Expand RHEL Filesystem.md @@ -17,19 +17,19 @@ This step goes over how to increase the usable space of the virtual disk within === "Using GDISK" -``` sh -sudo dnf install gdisk -y -gdisk /dev/ # (1) -p # (2) -d # (3) -4 # (4) -n # (5) -4 # (6) - (Just press ENTER) # (7) - (Just press ENTER) # (8) - (Just press ENTER) # (9) -w # (10) -``` + ``` sh + sudo dnf install gdisk -y + gdisk /dev/ # (1) + p # (2) + d # (3) + 4 # (4) + n # (5) + 4 # (6) + (Just press ENTER) # (7) + (Just press ENTER) # (8) + (Just press ENTER) # (9) + w # (10) + ``` 1. The first command needs you to enter the disk identifier. In most cases, this will likely be the first disk, such as `/dev/sda`. You do not need to indicate a partition number in this step, as you will be asked for one in a later step after identifying all of the partitions on this disk in the next command. 2. This will list all of the partitions on the disk.