Operations 4 min read

How to Safely Shrink a Linux Root Partition Using fdisk and resize2fs

This guide walks you through booting into rescue mode, checking the root filesystem, deleting and recreating the root partition with fdisk, and resizing the filesystem with resize2fs to reclaim hundreds of megabytes without reinstalling Linux.

MaGe Linux Operations
MaGe Linux Operations
MaGe Linux Operations
How to Safely Shrink a Linux Root Partition Using fdisk and resize2fs

Although LVM can simplify disk management, many installations lack LVM support, leaving the root partition oversized. This article demonstrates how to shrink the root partition on a CentOS 6.5 system without LVM.

First, boot the machine into rescue mode from a USB or CD, and when prompted, choose to ignore mounting the root filesystem at /mnt/sysimage. Once in the rescue shell, run e2fsck -f /dev/sda to check the disk.

Use parted to view the current partition layout, then launch fdisk /dev/sda. Delete the existing /dev/sda2 partition (the root) but do not write the changes yet. Recreate a smaller /dev/sda2 partition, specifying the desired size (e.g., +18G) while keeping the start sector identical. After confirming the new layout, write the partition table.

Run e2fsck -f /dev/sda2 again to repair the filesystem, then execute resize2fs /dev/sda2 to shrink the filesystem to match the new partition size. A subsequent parted check should show roughly 751 MB of free space.

Reboot the system and verify that it boots correctly. If successful, the root partition will have been reduced, freeing the reclaimed space for other uses. Note that manipulating the root filesystem carries risk; always back up important data before proceeding.

Original Source

Signed-in readers can open the original source through BestHub's protected redirect.

Sign in to view source
Republication Notice

This article has been distilled and summarized from source material, then republished for learning and reference. If you believe it infringes your rights, please contactadmin@besthub.devand we will review it promptly.

LinuxSystem Administrationdisk-managementfdiskresize2fsRoot Partition
MaGe Linux Operations
Written by

MaGe Linux Operations

Founded in 2009, MaGe Education is a top Chinese high‑end IT training brand. Its graduates earn 12K+ RMB salaries, and the school has trained tens of thousands of students. It offers high‑pay courses in Linux cloud operations, Python full‑stack, automation, data analysis, AI, and Go high‑concurrency architecture. Thanks to quality courses and a solid reputation, it has talent partnerships with numerous internet firms.

0 followers
Reader feedback

How this landed with the community

Sign in to like

Rate this article

Was this worth your time?

Sign in to rate
Discussion

0 Comments

Thoughtful readers leave field notes, pushback, and hard-won operational detail here.