A few assumptions first... Windows is installed on /dev/sda
, the first hard drive recognized by the system, and Ubuntu will be installed on /dev/sdb
Click through the first steps of the installer until you get to the disk detection step. Even if you do not want to create partitions manually select Something else, then click Continue.
Click here for a screen shot
The Advanced Partitioning Tool should be open now. You should see the disks and partitions connected to the computer. At the top of the list is sda
, where WinXP is installed. You do not want to mess with that one. Any action you take here MUST be on sdb
, the target disk for Ubuntu. If there are existing partitions on it, as in this example, delete them. You do that by selecting each partition and clicking Delete.
Click here for a screen shot
After all of the partitions under sdb
have been deleted, select the free space and click Add.
Click here for a screen shot
The first partition you want to add is going to be mounted at /boot
. This is the boot partition and early on, doesn't take up much space, but let's be a little generous to allow for growth that comes with system upgrades. A size of 500 MB is the default on most Linux distributions. The default file system is ext4
. Unless you know what you are doing, there is no reason to choose any other. Click OK.
Click here for a screen shot
The second partition will be the root partition. Because resizing a non-LVM disk partition is not a trivial matter, be generous with disk allocation here, too. Pictured is about 15G, but I'd shoot for 20G, especially if you're using a second disk. It's not sharing the space with another OS so you can afford to be generous. Be sure to select /
as the mount point, and stick with the default file system type. Click OK.
Click here for a screen shot
For the partition where your home directory will be located, allocate as much disk space as you can afford. Do not skimp on disk space here. More is better, utilize all remaining space. For the mount point, be sure to select /home
. Click OK.
Click here for a screen shot
Lastly, create the swap
partition. A good measure is to use minimally the size of your RAM, maximum double your RAM. Select swap area
from the Use as dropdown menu, then click OK.
Click here for a screen shot
That should bring you back to the main disk partitioning window, where all the partitions you just created should be listed. Before clicking Install Now, you want to make sure that the Device for boot loader installation is /dev/sdb
. Else the installer will be overwriting Windows’s boot programs in the Master Boot Record of sda
.
Click here for a screen shot
At this point, continue installation as any other. Nothing special from here...
Source