Physical Address
304 North Cardinal St.
Dorchester Center, MA 02124
Physical Address
304 North Cardinal St.
Dorchester Center, MA 02124

Released on January 28, 2026, GParted Live 1.8.0-2 represents the cutting edge of bootable partition management systems. This latest release brings together the recently unveiled GParted 1.8 partition editor with the brand-new Linux kernel 6.18 LTS (Long-Term Support), creating a powerhouse tool that’s both incredibly capable and remarkably stable. Whether you’re a system administrator managing enterprise servers, a power user juggling multiple operating systems, or someone who just needs to free up some disk space, this guide will walk you through everything you need to know.
What makes this release particularly exciting is its foundation on Debian Sid repositories as of January 27, 2026, ensuring you’re working with the freshest, most compatible software stack available. The inclusion of Linux kernel 6.18.5-1 officially designated as an LTS release supported until December 2027 means you’re not just getting cutting-edge features; you’re getting rock-solid reliability that will serve you for years to come.
GParted Live is a complete, standalone Linux distribution designed for one primary purpose: managing disk partitions safely and efficiently. Unlike installed partition management software, GParted Live boots directly from a USB drive or DVD, meaning it operates independently of any operating systems installed on your computer. This independence is crucial it allows you to manipulate partitions on your main hard drive without any risk of the operating system interfering with the process.
Think of it as a surgical suite for your hard drives. Just as surgeons work in sterile environments to prevent contamination, GParted Live provides a clean, isolated environment where partition operations can proceed without interference from running operating systems, active file locks, or background processes.

The GParted Live 1.8 release brings several significant improvements that elevate it beyond previous versions:
Linux Kernel 6.18.5-1: This isn’t just any kernel update—it’s the latest LTS (Long-Term Support) kernel, officially supported until December 2027. The kernel brings enhanced hardware support for modern systems, improved power management, better driver compatibility, and significant performance optimizations. If you’ve struggled with hardware recognition issues in the past, kernel 6.18 dramatically expands support for contemporary GPUs, storage controllers, and peripheral devices.
GParted 1.8 Application: The partition editor itself received substantial enhancements, particularly around FAT file system handling, GPT partition management, and crash prevention. We’ll explore these improvements in detail as we work through real-world scenarios.
Blank Screen Fix: One of the most frustrating issues with bootable live systems has been blank screens on certain graphics configurations. GParted Live 1.8 introduces a new mechanism specifically designed to prevent these startup failures, ensuring a smoother experience across diverse hardware.
One of GParted Live’s greatest strengths is its comprehensive file system support. Here’s what you can manage:
Linux Native:
Windows Compatible:
macOS Compatible:
Unix and Others:
This extensive support means you can manage partitions from virtually any operating system, making GParted Live the perfect tool for dual-boot setups, data recovery operations, and cross-platform disk management.
The first step in your GParted journey is obtaining the ISO image. Head to the official GParted project on SourceForge or the GParted website (gparted.org) to download GParted Live 1.8.0-2.
Important Note: As of this release, GParted Live only provides amd64 (x86-64 bit) images. The i386/i686 versions have been discontinued following Debian’s decision to drop 32-bit kernel packages from their Sid repository. If you’re running ancient 32-bit hardware, you’ll need to use an older GParted Live release.
Download Options:
Verify Your Download: For security-conscious users, GParted provides multiple checksums:
MD5SUM: Check against published hash
SHA1SUM: More secure verification
SHA256SUM: Industry-standard verification
SHA512SUM: Maximum security verification
Always verify your download matches the published checksums to ensure you haven’t downloaded a corrupted or tampered file.
Once you’ve downloaded the ISO, you need to create a bootable USB drive. Here are the best methods for different operating systems:
Rufus is the gold standard for creating bootable USB drives on Windows.
Step 1: Download Rufus from rufus.ie (it’s free and portable)
Step 2: Insert a USB drive (minimum 1 GB, though 2-4 GB is recommended for breathing room)
Step 3: Launch Rufus and configure:
Step 4: Click “START” and confirm any warnings
Pro Tip: Rufus automatically detects the optimal settings for your ISO, so the default choices are usually perfect.
Linux users can leverage the powerful dd command for a quick, clean USB creation.
bash
# First, identify your USB drive
lsblk
# Unmount the USB drive if it's mounted
sudo umount /dev/sdX*
# Write the ISO to USB (replace /dev/sdX with your actual device)
sudo dd if=gparted-live-1.8.0-2-amd64.iso of=/dev/sdX bs=4M status=progress conv=fdatasync
# Sync to ensure all data is written
sync
Critical Warning: Double-check your device identifier! Using the wrong device with dd will overwrite that drive’s data irreversibly. The command lsblk shows all block devices—make absolutely certain you’re targeting your USB drive, not your main hard disk.
Mac users have two excellent options:
Option 1 – balenaEtcher (User-Friendly):
Option 2 – dd Command (Advanced):
bash
# Find your USB drive
diskutil list
# Unmount the drive
diskutil unmountDisk /dev/diskN
# Write the ISO
sudo dd if=gparted-live-1.8.0-2-amd64.iso of=/dev/rdiskN bs=4m
# Note: Using /dev/rdiskN (raw disk) is faster than /dev/diskN
With your bootable USB created, you need to configure your computer to boot from it:
Step 1: Insert the USB drive before powering on
Step 2: Access your boot menu or BIOS/UEFI settings:
Step 3: Select your USB drive from the boot menu
Step 4: If your system doesn’t boot from USB:
For more details, see the release notes.