How to automatically create windows partitions(fat/ntfs) through Linux. I have all the required information for partitions to be created.

For example:

  1. Size
  2. Flag
  3. Partition Type
  4. etc.
link|improve this question

77% accept rate
feedback

2 Answers

up vote 0 down vote accepted

You may use parted to do that. Something like:

parted /dev/sda mkpartfs <partition-type> <filesystem-type> <start> <end>

See parted's manpage for details.

link|improve this answer
feedback

You can also use gparted, which is a nice graphical partition editor. (depends on what you mean by "automatically"?)

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.