I think the easiest way to partitioning hard disk is using GParted.
On each HDD, you can only have 4 primary partition. With the one you're in now, you may have this partition setup
Partition #1 System Reserved
Partition #2 Windows 7
Partition #3 Ubuntu
to break those partition limit, you have to convert one primary partition to extended partition and you can create more partition afterwards.
For bootloading (multi-boot), you might have to find another way to make each OS's bootable since I'm only familiar with dual-boot only...
flagstar
Practically a Master Poster
620 posts since Oct 2009
Reputation Points: 126
Solved Threads: 63
Skill Endorsements: 0
Does your assignment require you to physically install three operating systems, or can you prepare 3 Virtual Machines, and call it done?
You may wish to check with your professor, but in my opinion, you would best off picking a base operating system, in your case unfortunately Windows 7, and from there, install a virtual machine program (Virtualbox is free) and from there, setup three virtual machines.
Choosing Ubuntu, Fedora, and OpenSuse will expose you to the three major distributions... Debian style (apt-get), Fedora-Redhat style (yum), and OpenSuse (yast).
You might even be able to earn bonus points if you have enough RAM, and run all three operating systems at the same time. If you create a shared folder, you might be able to have all three see a sharepoint, and exchange files among themselves.
kc0arf
Posting Virtuoso
1,937 posts since Mar 2004
Reputation Points: 121
Solved Threads: 57
Skill Endorsements: 0
Wowsers! Cannot use a VM to accomplish this.
The following I haven't tried, but is the approach I would take:
Format the drive completely empty. Install each Linux to it's own partition, and keep track of which one was done first. I would do Ubuntu first, then OpenSUSE, and then Fedora. Make sure you do an advanced install, or at least have the option to customize your hard drive layout. Each one would only need to be say 20 GB in size... Have the Fedora partition write to the master boot record.
Once everything is installed, you should be able to either run a rescue / repair disk, or boot knoppix, and edit the /boot/grub/grub.conf and define each bootable partition. Make some meaningful descriptions. You will need to do this if you
install Windoze last, as it will clobber anything that grub setup.
Next, you need to edit your grub.conf file to ensure each partition is properly listed. Note the root (hd0,1) area... that is hard disk 0, partition 1. You will need an entry for each linux version (hd0,1) (0,2) (0,3) but properly aligned.
My /boot/grub/grub.conf has these lines:
title Fedora (version)
root (hd0,1)
kernel <bunch of stuff>
title Looze XP
rootnoverify (hd0,0)
chainloader +1
kc0arf
Posting Virtuoso
1,937 posts since Mar 2004
Reputation Points: 121
Solved Threads: 57
Skill Endorsements: 0
Question Answered as of 1 Year Ago by
kc0arf
and
flagstar