2

I use a Dell Studio 1555 laptop and I want to install Ubuntu 12.04 on it.

I want to know if I can create a partition on my hard disk after installing Ubuntu on it. I want to create partition as we do it in Windows like D: or E: drives etc.

Peachy
  • 7,117
  • 10
  • 38
  • 46
  • Please add more details by editing the question. What do you want the partitions for? Are they for Ubuntu or something else. Ubuntu does not use Drive letters like D, E etc. to identify partitions. – user68186 Sep 04 '12 at 13:24
  • http://askubuntu.com/questions/176187/how-to-create-the-partition-from-unallocated-space – Raja G Sep 04 '12 at 13:29
  • well i want to create partition to store different files in different partition. i have a 320gb drive and i want to create partition on it as we can do it in windows via disk management-> shrink volume – Himjyoti Malakar Sep 04 '12 at 13:43
  • Your laptop may already have 4 primary partitions, the maximum it can have. See http://askubuntu.com/questions/149821/my-laptop-already-has-4-primary-partitions-how-can-i-install-ubuntu – user68186 Sep 04 '12 at 13:53
  • 1
    No Gparted is showing me 3 drive partitions /dev/sda1 ext4.... /dev/sda2 extended..... /dev/sda5 linux-swap..

    i want to create one more partition from the 1st one

    – Himjyoti Malakar Sep 04 '12 at 14:09

2 Answers2

1

Based on your comments above you have a primary partition (sda1), an extended partition (sda2) and within the extended partition you have a logical partition (sda5-swap).

It is not clear if you want to make a primary or a logical partition. In either case, you will need to shrink the sda1 first to free up some space.

In gparted you can click on the sda1 partition and drag it's right edge to shrink it.

Once you have some unused space, you create more partitions.

To create a logical partition you have to shrink sda1, expand the extended sda2 to cover the newly created unused space, and create new sda6 logical partition inside sda2.

You can try this in gparted, nothing will be done until you click Apply.

user68186
  • 33,360
0

yes you can do it , there is a tool named as gparted . you can get it by

sudo apt-get install gparted

after that type as gaprted in unity dash and that will list you gaprted app . click it to open . select the empty with right click and choose New . then from that you can choose what kind of partition you want and how much size you want to give for it .

and moreover you can do it from a LIVE CD/USB Session also if you're installing Ubuntu from a live session .

Hope that helps .

Raja G
  • 102,391
  • 106
  • 255
  • 328