1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-07-03 12:35:22 +02:00
tldr/pages/linux/fdisk.md

38 lines
612 B
Markdown
Raw Normal View History

2018-03-09 08:13:43 +00:00
# fdisk
> Manage partition tables and partitions on a hard disk.
2021-06-29 13:25:39 -04:00
> See also: `partprobe`.
> More information: <https://manned.org/fdisk>.
2018-03-09 08:13:43 +00:00
- List partitions:
`sudo fdisk {{[-l|--list]}}`
2018-03-09 08:13:43 +00:00
- Start the partition manipulator:
2021-07-22 13:04:53 +01:00
`sudo fdisk {{/dev/sdX}}`
- Once partitioning a disk, create a partition:
`<n>`
2021-07-22 13:04:53 +01:00
- Once partitioning a disk, select a partition to delete:
`<d>`
2021-07-22 13:04:53 +01:00
- Once partitioning a disk, view the partition table:
`<p>`
2021-07-22 13:04:53 +01:00
- Once partitioning a disk, write the changes made:
`<w>`
2021-07-22 13:04:53 +01:00
- Once partitioning a disk, discard the changes made:
`<q>`
2021-07-22 13:04:53 +01:00
- Once partitioning a disk, open a help menu:
`<m>`