What I Did
- I attach an HDD,
lsblk -Sshows this drive as sdc - I use
sudo parted /dev/sdc/to start parted against sdc - I create a partition table as:
mklabel gpt - I make a partition:
mkpart my-cool-partitionand, - select ext2 as my file type
According to man, this actually:
Creates a new partition, without creating a new file system on that partition
You may specify a file system type, to set the appropriate partition code in the partition table for the new partition
Therefore, I understand that Parted kindly "provisioned" or "optimized" (I hope that's the correct mindset) for me to later format the drive with ext2, for my above example.
However...
- then I use
sudo mkfs.ntfsto format with NTFS instead of ext2. The result is:mkntfs completed successfully. Have a nice day
I don't understand how mkpart is necessary at all. I will not lie to Parted in real life, but if I did, will there be problems?
Environment: Debian, XFCE, xfce4-terminal, Bash