diskutil-partitiondisk: add page (#12467)

main
Reinhart Previano Koentjoro 2024-03-07 11:54:23 +07:00 committed by GitHub
parent 4d39c9636f
commit 05ebb39746
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 27 additions and 0 deletions

View File

@ -0,0 +1,26 @@
# diskutil partitionDisk
> Utility to manage partitions inside disks and volumes.
> Part of `diskutil`.
> APM is only supported for macOS, MBR is optimized for DOS, while GPT is compatible for most modern systems.
> More information: <https://keith.github.io/xcode-man-pages/diskutil.8.html>.
- Reformat a volume using APM/MBR/GPT partitioning scheme, leaving no partitions inside (this will erase all data on the volume):
`diskutil partitionDisk {{/dev/disk_device}} 0 {{APM|MBR|GPT}}`
- Reformat a volume, then create a single partition using a specific filesystem filling up all free space:
`diskutil partitionDisk {{/dev/disk_device}} 1 {{APM|MBR|GPT}} {{partition_filesystem}} {{partition_name}}`
- Reformat a volume, then create a single partition using a specific filesystem under specific size (e.g. `16G` for 16GB or `50%` to fill half of total volume size):
`diskutil partitionDisk {{/dev/disk_device}} 1 {{APM|MBR|GPT}} {{partition_filesystem}} {{partition_name}} {{partition_size}}`
- Reformat a volume, then create multiple partitions:
`diskutil partitionDisk {{/dev/disk_device}} {{number_of_partitions}} {{APM|MBR|GPT}} {{partition_filesystem1}} {{partition_name1}} {{partition_size1}} {{partition_filesystem2}} {{partition_name2}} {{partition_size2}} ...`
- List all supported file systems for partitioning:
`diskutil listFilesystems`

View File

@ -1,6 +1,7 @@
# diskutil
> Utility to manage local disks and volumes.
> Some subcommands such as `diskutil partitiondisk` have their own usage documentation.
> More information: <https://keith.github.io/xcode-man-pages/diskutil.8.html>.
- List all currently available disks, partitions and mounted volumes: