Created
January 17, 2015 13:05
-
-
Save netmarkjp/c8b829e98f715a9fe926 to your computer and use it in GitHub Desktop.
Alternative of fdisk -- parted example.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
## ## 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