-1

I'm trying to partition and install alongside Windows. I didn't have any free space to begin with, so I followed a guide on this site that told me how to do so. But I think I messed up.

1) I think I took my 500GB with Windows on it and reduced it to only 20GB.

2) it told me to create positions for root, home, boot, var, and tmp, but something seems kind of off.....

enter image description here

thomasrutter
  • 37,804
DarthVoid
  • 111

1 Answers1

1

First, let's talk about Windows. At the bottom of your screen shot it says it is going to install the boot loader onto /dev/sda which is an SSD of 128GB. The partition layout in your screen shot is for /dev/sdb though and it says the Windows 7 loader partition is the first one on this drive. I don't know what you have on the 128GB SSD drive but please be sure your Windows is completely intact and that you know which drive has your boot sector. The Ubuntu installer thinks it is the 128GB SSD. It is usually correct but you should double check since it will affect your ability to boot when you are done.

Now we can talk about Ubuntu. You don't have to create separate partitions for all those mount points. In fact, you can just create one for the root (named simply "/") and the rest of the mount points will be created as subdirectories. If you assign mount points to additional partitions then those partitions will be mounted there and files that go into those directories will be located in their assigned partition. If you don't know what you are doing then just use one partition mounted as root to keep it simple.

ChinnoDog
  • 126