-
-
Notifications
You must be signed in to change notification settings - Fork 1
Linux partprobe Guide
Mattscreative edited this page Dec 5, 2025
·
2 revisions
Complete beginner-friendly guide to partprobe on Linux, covering Arch Linux, CachyOS, and other distributions including updating partition table, reloading partitions, and partition management.
partprobe informs kernel of partition changes.
Uses:
- Update partitions: Update partition table
- Reload partitions: Reload partition info
- Partition changes: Apply partition changes
- System update: Update system partition info
Why it matters:
- Partition updates: Apply partition changes
- System sync: Sync partition table
- Avoid reboot: Apply changes without reboot
Basic usage:
# Update partition table
sudo partprobe /dev/sda
# Reloads partition table for deviceUpdate all:
# Update all devices
sudo partprobe
# Reloads all partition tablesSingle partition:
# Update specific partition
sudo partprobe /dev/sda1
# Reloads partition infoShow actions:
# Verbose mode
sudo partprobe -s /dev/sda
# -s = summary (shows summary)After partitioning:
# After using fdisk
sudo fdisk /dev/sda
# Make changes, write (w)
# Then update
sudo partprobe /dev/sdaApply changes:
# Apply partition changes
sudo partprobe /dev/sda
# No reboot neededCheck installation:
# Check partprobe
which partprobe
# Usually in parted
# Install if missing
sudo pacman -S partedThis guide covered partprobe usage, partition updates, and partition management for Arch Linux, CachyOS, and other distributions.
- fdisk Guide - Partitioning
- lsblk Guide - List devices
- Filesystem Management - Filesystem setup
-
partprobe Documentation:
man partprobe
This guide covers Arch Linux, CachyOS, and other Linux distributions. For distribution-specific details, refer to your distribution's documentation.