From 107c574ea5f2982629b66f697fa112b630d2fe34 Mon Sep 17 00:00:00 2001 From: Nicole Rappe Date: Tue, 14 Jan 2025 18:16:34 -0700 Subject: [PATCH] Update Workflows/Linux/Expand iSCSI-Based ZFS Filesystem.md --- Workflows/Linux/Expand iSCSI-Based ZFS Filesystem.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Workflows/Linux/Expand iSCSI-Based ZFS Filesystem.md b/Workflows/Linux/Expand iSCSI-Based ZFS Filesystem.md index 6eecb30..fffce2a 100644 --- a/Workflows/Linux/Expand iSCSI-Based ZFS Filesystem.md +++ b/Workflows/Linux/Expand iSCSI-Based ZFS Filesystem.md @@ -16,7 +16,7 @@ This step goes over how to increase the usable space of the ZFS pool within the iscsiadm -m session --rescan # (1) parted /dev/sdX # (2) unit TB # (3) -resizepart 1 XXTB # (4) +resizepart X XXTB # (4) zpool online -e /dev/sdX # (5) zpool scrub # (6) ``` @@ -24,6 +24,6 @@ zpool scrub # (6) 1. Re-scan iSCSI targets for changes. 2. Open partitioning utility on the ZFS volume / LUN / iSCSI disk. Replace `dev/sdX` with the actual device name. 3. Self-explanatory storage measurement. -4. Resizes whatever partition is given to fit the new storage capacity. Replace `XXTB` with a valid value, such as `10TB`. +4. Resizes whatever partition is given to fit the new storage capacity. Replace `X` with the partition number. Replace `XXTB` with a valid value, such as `10TB`. 5. Brings the ZFS Pool back online. Replace `` with the actual name of the ZFS pool. 6. This tells the system to scan the ZFS pool for any errors or corruption and correct them. Think of it as a form of housekeeping. \ No newline at end of file