From d5c86c927e9f4e0cd3721af633e9b6d7938b920f Mon Sep 17 00:00:00 2001 From: Adam Herst Date: Thu, 17 Jun 2021 16:39:46 -0400 Subject: [PATCH] partprobe: add page (#6129) --- pages/linux/partprobe.md | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 pages/linux/partprobe.md diff --git a/pages/linux/partprobe.md b/pages/linux/partprobe.md new file mode 100644 index 000000000..e3ae08445 --- /dev/null +++ b/pages/linux/partprobe.md @@ -0,0 +1,16 @@ +# partprobe + +> Notify the operating system kernel of partition table changes. +> More information: . + +- Notify the operating system kernel of partition table changes: + +`sudo partprobe` + +- Notify the kernel of partition table changes and show a summary of devices and their partitions: + +`sudo partprobe --summary` + +- Show a summary of devices and their partitions but don't notify the kernel: + +`sudo partprobe --summary --dry-run`