Files
cheatsheet-tldr/tldr/linux/fdisk
2025-08-27 00:19:48 +00:00

43 lines
577 B
Plaintext

---
syntax: markdown
tags: [tldr, linux]
source: https://github.com/tldr-pages/tldr.git
---
# fdisk
> Manage partition tables and partitions on a storage drive.
> See also: `partprobe`.
> More information: <https://manned.org/fdisk>.
- List partitions:
`sudo fdisk {{[-l|--list]}}`
- Start the partition manipulator:
`sudo fdisk {{/dev/sdX}}`
- Create a [n]ew partition:
`<n>`
- Select a partition to [d]elete:
`<d>`
- View the [p]artition table:
`<p>`
- [w]rite the changes made:
`<w>`
- Discard the changes made and [q]uit:
`<q>`
- Open a help [m]enu:
`<m>`