partprobe
Partprobe is a Linux utility used to inform the running kernel about changes to a disk’s partition table. It is typically employed after creating, deleting, or resizing partitions so that the system recognizes the new layout without requiring a reboot. The program reads the partition table from one or more block devices and instructs the kernel to re-scan and update its in-kernel representation of the partitions.
Usage is simple and usually requires root privileges. A common invocation is to probe a specific device,
Behavior and limitations: partprobe updates the kernel’s view of partitions but does not move or unmount any
Implementation notes: Partprobe is commonly provided by the util-linux or related package on many Linux distributions.