Multiboot Installation on GPT Disk
My goal was to install Haiku R 1/Alpha 1 on a GPT (GUID Partition Table) formatted disk that already held several operating systems. Along the way to success, I had various difficulties. The basic problem is that Haiku doesn't really handle GPT right now, but a GPT disk sort of looks like an MBR (Master Boot Record) disk, and the MBR table may or may not accurately reflect the actual contents. Luckily, there are tools and techniques available to make this work. This article describes the steps I took.
Arranging the Partitions
Create or rearrange the partitions on your GPT disk so the partition for Haiku falls within the first four partitions. Remember that the (often-hidden) EFI partition counts. In my case, I started with four partitions as follows:
- EFI
- HFS+
- Linux swap
- Linux ext3
Since I was already up to four used partitions, I created a new Linux swap in the fifth position, and switched my Linux system to use it. Then I reformatted the Linux swap in the third position to FAT32 merely as a placehold. All of this was done using GParted (the Gnome Partition Editor) on the Linux system. When all done, I had the following GPT partitions:
- EFI
- HFS+
- FAT32
- Linux ext3
- Linux swap
Populating the MBR Table
Now it is necessary to populate the MBR table with the locations and length of up to four partitions that you want Haiku to see. There are various approaches to doing this. I read somewhere that the Mac OS X Disk Utility application will do this if one of the partitions is FAT32 (apparently this is part of Boot Camp support, so Windows can be installed). I could not get this to work, so I resorted to a different tool: gptsync from the rEFIt package. There are various ways to obtain gptsync; on my system (Ubuntu Intrepid) it was as simple as typing:
sudo apt-get install gptsync
On other systems it may be harder. Of course you can always go to the ReFIT site, download the source and build from scratch. Once you have the gptsync executable installed, follow these steps:
- Boot your linux system from a different hard drive than the one you wish to modify (this step may be optional, but is generally a good idea).
- Determine the device name of the hard drive (/dev/sda, /dev/sdb, etc.). You can generally do this by typing the df command. On my test example, I mounted a USB drive with four partitions:
$ df Filesystem 1K-blocks Used Available Use% Mounted on /dev/sda4 81703972 4343724 73209860 6% / /dev/sdb2 3913728 25196 3888532 1% /media/MacHD /dev/sdb3 3906080 456 3905624 1% /media/FAT1 /dev/sdb5 3568820 456 3568364 1% /media/FAT3 /dev/sdb4 3906080 456 3905624 1% /media/FAT2I can see that my drive of interest is /dev/sdb, because I recognize the partitions. - Run the gptsync command, with the device name as argument:
$ sudo gptsync /dev/sdb Current GPT partition table: # Start LBA End LBA Type 1 40 409639 EFI System (FAT) 2 409640 8237095 Mac OS X HFS+ 3 8501248 16328703 Basic Data 4 16328704 24156159 Basic Data 5 24156160 31307775 Basic Data Current MBR partition table: # A Start LBA End LBA Type 1 1 409639 ee EFI Protective 2 409640 8237095 af Mac OS X HFS+ 3 8501248 16328703 0b FAT32 (CHS) 4 16328704 24156159 0b FAT32 (CHS) Status: MBR table must be updated. Proposed new MBR partition table: # A Start LBA End LBA Type 1 1 409639 ee EFI Protective 2 409640 8237095 af Mac OS X HFS+ 3 * 8501248 16328703 0c FAT32 (LBA) 4 16328704 24156159 0c FAT32 (LBA) May I update the MBR as printed above? [y/N] - After verifying the correct table, just type y to commit the changes, otherwise type return or N to abort.
At this point I was able to boot the Haiku CD, choose Install, go into DriveSetup (the Haiku partitioner), select the new FAT32 partition I created as a placeholder, and reformat it as a BFS partition. After that, the Haiku installation worked just fine.

Comments
Re: Multiboot Installation on GPT Disk
Are you running this on a Mac or a Hackintosh ? I just loaded Snow Leopard on my PC (hackintosh) on a separate HD and already had Ubuntu Studio 9.04 on one HD and Haiku on a 3rd HD.
If I boot from Chameleon (Hack bootloader) it only lists my Haiku and Mac OS HD. But does not recognize Ubuntu or Haiku HDs, it does not mount them.
If I use GRUB all OSs are listed but, gave me unsupported system error for Mac OS. But works fine with Haiku, since I previously had it as only Ubuntu/Haiku and worked with both.
BTW, I'm posting from Haiku HD, just noticed it sees/mounts my Linux HD, but does not see/mount my Mac OS HD.