partx - tell the kernel about the presence and numbering of on-disk partitions
| Use Case | Command | Description |
|---|---|---|
| đ List partitions | partx --show /dev/sdb | Show partition table of a disk |
| â Add partitions | partx -a --nr 3:5 /dev/sdd | Add partitions 3-5 to kernel |
| â Delete partitions | partx -d --nr :-1 /dev/sdd | Remove last partition |
| đ Show subpartitions | partx --show - /dev/sdb3 | List partitions inside a partition (treat as whole-disk) |
| đ Custom output columns | partx -o START -g --nr 5 /dev/sdb | Print start sector of partition 5 without header |
| đž Show size in bytes | partx -b --show /dev/sda | Display SIZE column in bytes |
partx [-a|-d|-P|-r|-s|-u] [-t type] [-n M:N] [-] disk
partx [-a|-d|-P|-r|-s|-u] [-t type] partition [disk]
Given a device or disk-image, partx tries to parse the partition table and list its contents. It can also tell the kernel to add or remove partitions from its bookkeeping.
The disk argument is optional when a partition argument is provided. To force scanning a partition as if it were a whole disk (for example to list nested subpartitions), use the argument "-" (hyphen-minus). For example:
partx --show - /dev/sda3
This will see sda3 as a whole-disk rather than as a partition.
partx is not an fdisk program - adding and removing partitions does not change the disk, it just tells the kernel about the presence and numbering of on-disk partitions.
-a, --addAdd the specified partitions, or read the disk and add all partitions.
-b, --bytesPrint the SIZE column in bytes rather than in human-readable format.
-d, --deleteDelete the specified partitions or all partitions. It is not error to remove non-existing partitions, so this option is possible to use together with large --nr ranges without care about the current partitions set on the device.
-g, --noheadingsDo not print a header line with --show or --raw.
-l, --listList the partitions. Note that all numbers are in 512-byte sectors. This output format is DEPRECATED in favour of --show. Do not use it in newly written scripts.
-n, --nr M:NSpecify the range of partitions. For backward compatibility also the format M-N is supported. The range may contain negative numbers, for example --nr -1:-1 means the last partition, and --nr -2:-1 means the last two partitions. Supported range specifications are:
--nr 3).--nr 2:).--nr :4).--nr 2:4).-o, --output listDefine the output columns to use for --show, --pairs and --raw output. If no output arrangement is specified, then a default set is used. Use --help to get list of all supported columns. This option cannot be combined with the --add, --delete, --update or --list options.
--output-allOutput all available columns.
-P, --pairsList the partitions using the KEY="value" format.
-r, --rawList the partitions using the raw output format.
-s, --showList the partitions. The output columns can be selected and rearranged with the --output option. All numbers (except SIZE) are in 512-byte sectors.
-t, --type typeSpecify the partition table type.
--list-typesList supported partition types and exit.
-u, --updateUpdate the specified partitions.
-S, --sector-size sizeOverwrite default sector size.
-v, --verboseVerbose mode.
-V, --versionDisplay version information and exit.
-h, --helpDisplay help text and exit.
LIBBLKID_DEBUG=all â enables libblkid debug output.
partx --show /dev/sdb3, partx --show --nr 3 /dev/sdb, partx --show /dev/sdb3 /dev/sdbAll three commands list partition 3 of /dev/sdb.partx --show - /dev/sdb3Lists all subpartitions on /dev/sdb3 (the device is used as whole-disk).partx -o START -g --nr 5 /dev/sdbPrints the start sector of partition 5 on /dev/sdb without header.partx -o SECTORS,SIZE /dev/sda5 /dev/sdaLists the length in sectors and human-readable size of partition 5 on /dev/sda.partx --add --nr 3:5 /dev/sddAdds all available partitions from 3 to 5 (inclusive) on /dev/sdd.partx -d --nr :-1 /dev/sddRemoves the last partition on /dev/sdd.Davidlohr Bueso <dave AT gnu.org>, Karel Zak <kzak AT redhat.com>
The original version was written by Andries E. Brouwer <aeb AT cwi.nl>
addpart(8), delpart(8), fdisk(8), parted(8), partprobe(8)
For bug reports, use the issue tracker at https://github.com/karelzak/util-linux/issues.
The partx command is part of the util-linux package which can be downloaded from Linux Kernel Archive <https://www.kernel.org/pub/linux/utils/util-linux/>.
Generated by phpman v4.9.26-5-g7740029 Author: Che Dong Under GNU General Public License
2026-08-25 01:57 @216.73.216.179
CrawledBy Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)