mirror of
https://github.com/chubin/cheat.sheets
synced 2024-11-03 15:40:17 +00:00
10 lines
227 B
Plaintext
10 lines
227 B
Plaintext
# create a new MBR/msdos partition table for BIOS systems
|
|
(parted) mklabel msdos
|
|
|
|
# create a new GPT partition table for UEFI systems instead, use:
|
|
(parted) mklabel gpt
|
|
|
|
# grow a partition
|
|
(parted) resizepart ${number} ${end}
|
|
|