Forrest logo
back to the partprobe tool

partprobe:tldr:1d0dc

partprobe: Notify the kernel of partition table changes and show a summary of devices and their partitions.
$ sudo partprobe --summary
try on your machine

The command "sudo partprobe --summary" is used to display a summary of the partition changes without actually modifying the partitions on Linux systems.

Let's break down the command:

  • "sudo": It is a command used to execute another command with administrative or root privileges. It stands for "superuser do".

  • "partprobe": It is a utility used to inform the operating system kernel to re-read the partition table without rebooting the system. It can detect any changes made to the partitions and update the system accordingly.

  • "--summary": It is an option or parameter that is passed to the "partprobe" command to display a summary of the partition changes.

In simple terms, "sudo partprobe --summary" is used to trigger the kernel to update the partition table and then provides a summary of any changes made to the partitions. This can be helpful when you have manipulated the partitions (e.g., creating, deleting, or resizing) and want to verify the changes without restarting your system.

This explanation was created by an AI. In most cases those are correct. But please always be careful and never run a command you are not sure if it is safe.
back to the partprobe tool