0

How may I can create/resize like c:drive or system drive partition in ubuntu? where software are installed and Operating System is installed too.

2 Answers2

1

install gparted using the following command from a terminal(ctrl+alt+t)

sudo apt-get install gparted

Once installed, start gparted. it will ask for authentication. Enter you password and you will be able to see and resize your HDD partitions.

Exercise caution and take backups before doing these activities.

Also note that you can't (and shouldn't try to forcefully) alter partitions with mounted file systems. It's also impossible to unmount file systems mounted at /, /usr, /var or similar, since they're crucial for the running operating system. Even /home is difficult in graphical mode. If you want to modify those, use the Live CD, DVD, or USB drive. The Ubuntu ISO comes with gparted tool in the Live session. So you don't even need to install it. Just open it and alter the size of the partitions.

astrob0t
  • 1,746
  • how may i know where my softwares are installed and OS is? – Mfaiz212 Nov 05 '14 at 18:25
  • Linux is fundamentally different from Windows. As in windows, you wont be encountering Drives(like C:/, D:/) Rather, everything in Linux is a folder or a file. We can mount any partition in a folder and one wont even realize that its a partition without going in depth. Coming to your question, the softwares in ubuntu are generally installed in /bin or /usr/bin or /usr/share folder. refer this thread – astrob0t Nov 05 '14 at 18:32
  • 1
    For more info, refer this Q/A – astrob0t Nov 05 '14 at 18:44
  • 1
    Please note, that you can't (and shouldn't try to forcefully) alter partitions with mounted file systems. It's also hard to impossible to unmount file systems mounted at /, /usr, /var or similar, since they're crucial for the running operating system. Even /home is difficult in graphical mode. If you want to modify those, use a live system on a CD, DVD, or USB drive. – David Foerster Nov 05 '14 at 19:29
  • @DavidFoerster can i add your comment to my answer? – astrob0t Nov 05 '14 at 19:32
  • @astrob0t: Of course. Even if I didn't want you to, I'm not able to prevent it. – David Foerster Nov 05 '14 at 19:39
  • Thinking of it, your first, lengthy comment should be part of your answer too since it directly addresses a misconception of the question author. – David Foerster Nov 05 '14 at 20:06
0

Press the "Super" key (windows key) and type GParted. Open the GParted Partition Editor.

In the GParted dropdown menu, you can select which device you want to partition, format, etc.

walden
  • 31