1825827 Members
2908 Online
109688 Solutions
New Discussion

Re: fdisk help

 
SOLVED
Go to solution
Ragni Singh
Super Advisor

fdisk help

Hi all, I need to create several 40g partitions.

When I do fdisk, new for part, when it asks me for size, do I just say +40g, or how do I specify 40gig size. I have a 404g space but I am only able to create 4 partitions and only 1 extended partition. Not sure what I'm doing wrong here. Any help is appreciated.
4 REPLIES 4
Ivan Ferreira
Honored Contributor

Re: fdisk help

To specify a 40 GB partition use:

+40000M

You should create 3 primary paritions, one extended partition that uses the whole disk, and then logical units of 40 GB each.
Por que hacerlo dificil si es posible hacerlo facil? - Why do it the hard way, when you can do it the easy way?
Ragni Singh
Super Advisor

Re: fdisk help

How would I do this..

I have a total of 404gigs. 53546 cylinders. I need a total of 10 partitions of 40gigs and one part.. of 100gigs.

Thanks and points will be assigned.
Ivan Ferreira
Honored Contributor
Solution

Re: fdisk help

Create the partitions in this way:

run fdisk:

n (new)
p (primary)
first cylinder (accept default)
last cylinder +40000M

n (new)
p (primary)
first cylinder (accept default)
last cylinder +40000M

n (new)
p (primary)
first cylinder (accept default)
last cylinder +40000M

n (new)
e (extended)
first cylinder (accept default)
last cylinder (accept default)

n (new)
(You wont be prompted if you want primary, extended or logical unit because logical units is all you can create)
first cylinder (accept default)
last cylinder +40000M

n (new)
(You wont be prompted if you want primary, extended or logical unit because logical units is all you can create)
first cylinder (accept default)
last cylinder +40000M

And so on until you create all your partitions. Use (w) to save the changes.
Por que hacerlo dificil si es posible hacerlo facil? - Why do it the hard way, when you can do it the easy way?
Ragni Singh
Super Advisor

Re: fdisk help

Thanks a bunch. I got it the the tee. You get 10 points and maybe more.