I have a Laptop with an SSD and an HDD. It came with Windows installed on SSD and since it is small, I added a HDD to store all my files and install all my games. I would like to install Ubuntu on a part of the HDD (without losing all the data on it. I have about 300GB free and can create an empty partition by "shrinking" the corresponding D: drive, so that should not be a problem) and want to keep using Windows as well as Ubuntu. I have seen several tutorials and questions about installing dual-booting Ubuntu and Windows, but all of them assumed they were installed on same disc. Is something different when it comes to installing Ubuntu on a different hard drive, will it still work and what are the possible problems and solutions?
-
1UEFI or BIOS install. Are drives gpt or MBR(msdos). Windows requires MBR for BIOS boot and gpt for UEFI boot. But then what is HDD? You do want to partition in advance, but slightly different if UEFI or BIOS, but / (root) partition and optional /home partitions are same. https://help.ubuntu.com/community/DiskSpace & https://askubuntu.com/questions/343268/how-to-use-manual-partitioning-during-installation – oldfred Apr 04 '18 at 21:54
1 Answers
You can absolutely do this. There are a few things you'll want to do first:
Next, you'll want to insert your bootable usb and reboot into BIOS. If you don't know how to do that, EasyUEFI is a nice tool to boot into BIOS and edit the UEFI order (the free trial is fine). To use that tool, install it and click on Power -> Reboot into UEFI.
Once in your BIOS/UEFI, select BOOT and move select the usb or move it to the top and save and exit.
You should then load a screen that has a few options to either try out ubuntu, install it directly, or a few other things. You can do either of the first ones as the live cd version of ubuntu will have a desktop icon to install ubuntu.
Once you start installing you will be asked a variety of settings questions (timezone, name, password, etc). Select whatever settings you want for those, although you probably do want the 3rd party software as that will make your life a bit easier.
Important: don't simply select to install ubuntu alongside the windows bootloader. Instead select the last option to select the custom drive (your HDD). Double click the empty partition you made earlier and set the mount point option to be root (/). Then click install and you should be good to go.
Here's a similar guide with screenshots if you get stuck on that last bit.

- 16
-
Thank you for your answer. I know how to change boot priority and how to install OS-es separately, I was not sure about Dual-installing them. Just to clarify: I install it on the selected empty partition and it won't affect the rest of the HDD, right?
And another thing: I've read that there might be complicatiosn with booting after installing ubuntu, so that it loads linux directly, skipping the option of windows totally because GRUB rewrites something on the booting part. Will that be the case with 2 HDDs? And, generally, will it recognize 2 OS-es when they are on 2 different drives?
– Giorgi Apr 06 '18 at 12:30 -
Yes, installing on the selected empty partition won't impact the files on the rest of the HDD.
You shouldn't have issues with booting because GRUB can detect where both OS need to boot from. As long as you follow the steps correctly and set the mount point to be root on your second drive you should be ok, even with multiple drives.
– Nathan Milot Apr 06 '18 at 19:46