Created
July 8, 2024 21:16
-
-
Save denisdemaisbr/b494dcb5d399129e27c84e947973579f to your computer and use it in GitHub Desktop.
how create a ntfs partition on blank harddisk using parted
This file contains 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
lsblk | |
parted /dev/sdd mklabel gpt | |
parted /dev/sdd p | |
parted /dev/sdd mkpart primary ntfs 0% 100% | |
parted /dev/sdd p | |
mkfs.ntfs -f /dev/sdd1 | |
exit 0 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment