check partition
|
Do a simple check on partition.
|
cp [source-device] source destination
|
Copy the source partition's filesystem on source-device (or the current device if no other device was specified) to the destination partition on the current device.
|
help [command]
|
Print general help, or help on command if specified.
|
mkfs partition fs-type
|
Make a filesystem fs-type on partition. fs-type can be one of "fat16", "fat32", "ext2", "linux-swap", or "reiserfs".
|
mklabel label-type
|
Create a new disklabel (partition table) of label-type. label-type should be one of "bsd", "dvh", "gpt", "loop", "mac", "msdos", "pc98", or "sun".
|
mkpart part-type [fs-type] start end
|
Make a part-type partition with filesystem fs-type (if specified), beginning at start and ending at end (by default in megabytes). fs-type can be one of "fat16", "fat32", "ext2", "HFS", "linux-swap", "NTFS", "reiserfs", or "ufs". part-type should be one of "primary", "logical", or "extended".
|
mkpartfs part-type fs-type start end
|
Make a part-type partition with filesystem fs-type beginning at start and ending at end (by default in megabytes). Using this command is discouraged. Instead, use mkpart to create an empty partition, and then use external tools like mke2fs to create the filesystem.
|
move partition start end
|
Move partition so that it begins at start and ends at end. Note: move never changes the minor number.
|
name partition name
|
Set the name of partition to name. This option works only on Mac, PC98, and GPT disklabels. The name can be placed in quotes, if necessary.
|
print
|
Display the partition table.
|
quit
|
Exit from parted.
|
rescue start end
|
Rescue a lost partition that was located somewhere between start and end. If a partition is found, parted will ask if you want to create an entry for it in the partition table.
|
resize partition start end
|
Resize the filesystem on partition so that it begins at start and ends at end (by default in megabytes).
|
rm partition
|
Delete partition.
|
select device
|
Choose device as the current device to edit. The device should usually be a Linux hard disk device, but it can be a partition, software raid device, or an LVM logical volume if necessary.
|
set partition flag state
|
Change the state of the flag on partition to state. Supported flags are: "boot", "root", "swap", "hidden", "raid", "lvm", "lba", "legacy_boot" and "palo". The state should be either "on" or "off".
|
unit unit
|
Set unit as the unit to use when displaying locations and sizes, and for interpreting those given by the user when not suffixed with an explicit unit. The unit can be one of "s" (sectors), "B" (bytes), "kB", "MB", "GB", "TB", "%" (percentage of device size), "cyl" (cylinders), "chs" (cylinders, heads, sectors), or "compact" (megabytes for input, and a human-friendly form for output).
|
version
|
Display version information and a Copyright message.
|