Skip to content

Instantly share code, notes, and snippets.

@netmarkjp
Created January 17, 2015 13:05
Show Gist options
  • Save netmarkjp/c8b829e98f715a9fe926 to your computer and use it in GitHub Desktop.
Save netmarkjp/c8b829e98f715a9fe926 to your computer and use it in GitHub Desktop.
Alternative of fdisk -- parted example.
## ## equivalant of ...
## fdisk /dev/sda
## n
## p
## 1
## [enter]
## [enter]
## w
parted -s /dev/sda mklabel msdos -- mkpart primary ext3 1 -1
## ## result
## Device Boot Start End Blocks Id System
##/dev/sda1 1 <MAX> <MAX> 83 Linux
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment