1

I'm installing Ubuntu on a Windows 10 laptop but I want to completely remove Windows and use all the 500+32 GB for Ubuntu. How should I partition both HDD and SSD?

I think I have to choose "erase disk and install Ubuntu" when asked and to install Ubuntu on the SSD but I'm not sure where, when and how to put /home and /swap (and something else if needed).

Thanks.

1 Answers1

3

Recommendation

  • SSD;
    1. Make one partition taking up the entire SSD for /.
  • HDD:
    1. Make one partition taking up the amount of RAM you have for swap.
    2. Make one partition taking up the remaining space for /home.

Benefits

  • Fairly easy-to-understand.
  • Really fast speeds for loading the operating system and programs.
  • Lots of space for your personal files in your home directory.
  • Swap gets stored on the HDD instead of the SSD to avoid swapping causing excess wear on the SSD.
  • Since /home is on its own partition, a clean reinstall of the OS or a clean install of a different OS while keeping your personal files is much easier (though you have to be careful not to accidentally format the /home partition).

Setting it up

  1. When the installer asks for the installation type, choose Something else.
  2. For each device (the lines that start with /dev/), click on the device and click the New Partition Table... button and click Continue to clear away any existing partitions on that device.
  3. On the disk with about 32 GB of free space, click on the free space line and click the + button.
  4. Change Mount point to / and click OK.
  5. On the disk with about 500 GB of free space, click on the free space line, and click the + button.
  6. Change Size to the amount of RAM you have, change Use as to swap area, and click OK.
  7. Click on free space again and click the + button.
  8. Change Mount point to /home and click OK.
  9. Click Install Now, then click Continue.
  10. Continue with the regular installation questions.

If the above steps give a warning about the need for an EFI boot partition

  1. Go back to the partitioning screen
  2. For each device (the lines that start with /dev/), click on the device and click the New Partition Table... button and click Continue to clear away any existing partitions on that device.
  3. On the disk with about 32 GB free space, click on the free space line and click the + button.
  4. Change Size to 500, change Use as to EFI System Partition, and click OK.
  5. On the disk with about 32 GB of free space, click on the lower of the two free space lines for that disk and click the + button.
  6. Change Mount point to / and click OK.
  7. On the disk with about 500 GB of free space, click on the free space line, and click the + button.
  8. Change Size to the amount of RAM you have, change Use as to swap area, and click OK.
  9. Click on free space again and click the + button.
  10. Change Mount point to /home and click OK.
  11. Click Install Now, then click Continue.
  12. Continue with the regular installation questions.
  13. Ignore the warning about existing operating systems using BIOS compatibility mode.
Chai T. Rex
  • 5,323