Is it possible to install OS Windows 8.1, Windows 7, Windows Server 2012, Oracle Linux, Oracle Solaris, Fedora Linux?

0

I'm planning to have 6 operating systems in my laptop. And wanted to have more in the future.

I want to install 2 versions of desktop OS in windows (7 and 8.1) and a server OS in windows (Windows Server 2012).
I also want to install 2 versions of Linux (Oracle and Fedora).
I also want to install 1 version of Unix (Oracle Solaris).
I wanted to use those OSes for my studying purposes.
I'll use Oracle Linux as my main OS for programming Java.

If that's possible, what would be the installation order?

marion-jeff

Posted 2014-09-07T23:20:29.373

Reputation: 139

1

The only real problem is going to be getting the Windows stuff to play nicely. http://windows.microsoft.com/en-us/windows/install-multiple-operating-system-multiboot#1TC=windows-7 Aside from that, this is just a bad idea. You really want to look into virtual machines. It's a much better way to get the same thing without rebooting each time you want to try a new OS.

– krowe – 2014-09-07T23:31:51.527

2

You really should be using virtualization software at this point. Virtualization technology simulates a computer running on top of a computer, so you get much more control and flexibility. I personally use Client Hyper-V, which requires Windows 8.1 Pro. You can also look into VirtualBox.

– bwDraco – 2014-09-08T00:01:52.243

Most important question : BIOS or UEFI? – Milind R – 2014-09-10T09:24:34.593

Answers

1

Oh its doable, but its going to be kind of messy, and I'm not familiar with one of the OSes. Virtualisation is the smart option at this point, and you're basically going to end up splitting up your hard drive into very small partitions. With virtualisation, you can do neat things like sparse images (so your installs don't use up space that dosen't actually have data in it), snapshots (perfect for when you've goofed up) and running more than one OS at a time. With a reasonably modern system, this should be acceptably fast, though you have a slightly different set of constraints to worry about.

If you must do this on physical hardware

If you're going with gpt, ignore the next bit about primary and extended partitions.

For starters, plan your partitions first. You need one primary partition (use this for a windows install) and one extended partition at least, and one logical partition per OS. Install windows first then linux (or at the very least, the last os you install

Linux supports using a swap file, and as such I recommend it - manually partition when installing linux, have a single / partition, and no swap partition, and add a swap file later.

I'm unfamiliar with Oracle Unix - Solaris uses grub to boot,so treat it as any linux distro, right down to using a swap file

Journeyman Geek

Posted 2014-09-07T23:20:29.373

Reputation: 119 122

"Oracle Unix": The OP meant Solaris.

– bwDraco – 2014-09-08T00:05:14.450

0

The first step would be to partition the disk into 3 primary partitions and then split the last partition into 4 logical partitions (3 OS and a swap). One of the Linux or Unix OS would be the best to partition the disk since it would support the different types of formats you need.

Since Windows wants to be the only OS on your disk, I would install them first and not worry about being able to boot to all of them until you get GRUB (or GRUB2) written into the boot sector.

I stand corrected:
Here is what Ubuntu recommends:

  1. Partition the disk
  2. Install Windows in the first partition - it includes cautions and problem fixes
  3. Install the next OS - it includes cautions and problem fixes

LDC3

Posted 2014-09-07T23:20:29.373

Reputation: 2 062

Not really true if I recall correctly. At least one windows install needs to be on a primary partition, but I seem to think it worked fine if you had say, a secondary windows install on an extended partition. A citation would be nice for educational purposes. – Journeyman Geek – 2014-09-08T00:02:16.253

@JourneymanGeek I thought that Windows bootloader looks for the 'Boot' flag on the partition to ensure that it is bootable. Do logical partitions have a 'Boot' flag? – LDC3 – 2014-09-08T00:04:19.707

1I was under the impression one partition could in total, and least with 7 onwards, windows prefers to have a 100mb, seperate boot partition – Journeyman Geek – 2014-09-08T00:18:45.503

@JourneymanGeek I believe that the Windows bootloader ensures that only one partition has the 'Boot' flag set at any time, clearing the flag from the non-booting partitions. – LDC3 – 2014-09-08T00:23:19.090

I doubt it, I have not observed any such behavior with my dual boot system, though rigorous testing should be done to really find out. Windows has become a lot less possessive about disk partitions these days. – Milind R – 2014-09-10T08:59:13.243