HOWTO: Installing FreeBSD 9.0 or 9.1 with gmirror (software RAID 1) and the GPT partitioning schemeBy default gmirror and the GPT partitioning scheme do not get along. This is because both GEOM (the provider for gmirror) and GPT write meta data at the end of the disk.
Note: Instructions on rebuiling a gmirror with this kind of setup are at the bottom under Testing & Replacing A Failed Disk.
Note: These instructions have been verified to work for both 9.0-R and 9.1-R.
The concept behind this procedure and "work around" is that instead of mirroring the entire disk, you use gmirror to mirror each of your partitions.
The order of these steps is important to avoid corruption. I would only do this on a clean install (and these directions are for that). If you setup a gmirror after the fact on a running machine the gmirror meta data has to get written somewhere, and if you've got a file system on it with data, you risk corrupting it and losing data if it happens to be at the end.
To avoid this we'll setup GPT, create the partitions, create the gmirror providers and finally newfs the appropriate partition. This ensures nothing will get corrupted.
Start the FreeBSD 9 install process as normal. When you are asked about how you want to partition the disk pick "Shell":

Once inside the shell here are the commands to setup GPT and slice up both disks. These examples assume you are doing this on disk 'ada0' and 'ada1' (SATA), if you are using SCSI you'd do da0, da1:
# ---- Setup 1st disk # gpart create -s gpt ada0 gpart add -s 64k -t freebsd-boot -l boot0 ada0 gpart add -s 8G -t freebsd-swap -l swap0 ada0 gpart add -t freebsd-ufs -l root0 ada0 # -- Install boot code to first disk gpart bootcode -b /boot/pmbr -p /boot/gptboot -i 1 ada0 # ---- Setup 2nd disk # gpart create -s gpt ada1 gpart add -s 64k -t freebsd-boot -l boot1 ada1 gpart add -s 8G -t freebsd-swap -l swap1 ada1 gpart add -t freebsd-ufs -l root1 ada1 # -- Install boot code to 2nd disk gpart bootcode -b /boot/pmbr -p /boot/gptboot -i 1 ada1
Before we proceed we need to have GEOM "re-taste" the partitions so our nice labels show up in /dev/gpt/:
true > /dev/ada0 true > /dev/ada1
# You can check to make sure this worked by running:
ls -l /dev/gpt/
# Output should look similar to this:
crw-r----- 1 root operator 0, 100 /dev/gpt/boot0
crw-r----- 1 root operator 0, 108 /dev/gpt/boot1
crw-r----- 1 root operator 0, 102 /dev/gpt/root0
crw-r----- 1 root operator 0, 110 /dev/gpt/root1
crw-r----- 1 root operator 0, 104 /dev/gpt/swap0
crw-r----- 1 root operator 0, 112 /dev/gpt/swap1
Now we can continue to build the mirror providers for each of our partitions:
# -- Build gmirrors gmirror label boot /dev/gpt/boot0 /dev/gpt/boot1 gmirror label swap /dev/gpt/swap0 /dev/gpt/swap1 gmirror label root /dev/gpt/root0 /dev/gpt/root1# -- Load the geo_mirror KLD kldload geom_mirror # -- Check status gmirror status
# -- You should see something like this:
Name Status Components
mirror/boot COMPLETE ada0p1 (ACTIVE)
ada1p1 (ACTIVE)
mirror/swap COMPLETE ada0p2 (ACTIVE)
ada1p2 (ACTIVE)
mirror/root COMPLETE ada0p3 (ACTIVE)
ada1p3 (ACTIVE)
Here we actually format the root filesystem, enabling soft updates (-U). I also use "-L root" to set the filesystem label but this isn't needed. Then we mount the new filesystem in /mnt (which is where the installer expects the target filesystem to be).
newfs -U -L root /dev/mirror/root mount /dev/mirror/root /mnt
We now need to create the fstab file which will be put into place by the installer:
vi /tmp/bsdinstall_etc/fstab
# Device Mountpoint FStype Options Dump Pass#
/dev/mirror/swap none swap sw 0 0
/dev/mirror/root / ufs rw 1 1
Exit out of the partitioning shell to resume the setup:
exit
Continue through the rest of the install as you normally would do. At the very end when you exit the installer you will see the prompt below:

Pick Yes.
Inside this shell we just need to set a few last minute things to make sure our new OS loads GEOM on boot and also reports the mirror status in the daily report emails.
# -- Make sure gmirror module comes up on boot echo 'geom_mirror_load="YES"' >> /boot/loader.conf # -- Enable daily status reporting echo 'daily_status_gmirror_enable="YES"' >> /etc/periodic.conf
And that's it! Exit out of this shell:
exit
And reboot!
To test your gmirror you can pull a disk out of a gmirror and the server should log a message in dmesg(8) but otherwise function normally. When you re-insert the disk it will rebuild automatically as gmirror will recognize it (be sure to let it rebuild fully before yanking another disk).
If you have a failed disk that needs replacing simply remove it and insert the new disk of the same size or greater (gmirror will only use the original size though). If your hardware supports hot-swap this can be done while the server is running. With the new disk in place we'll need to re-partition in like we originally did above, tell gmirror to forget the old disk's partitions and add the new disk's partitions to the mirror containers.
Let's assume for this example that ada1 has failed. Once the new disk has been inserted you'll first want to make sure it's blank by running:
gpart show ada1
If anything but a blank listing comes up (and your replacement disk is new) think long and hard! Make sure you've got the correct disk and device name!
If you are using a recycled disk that isn't blank, first blank out it's partition (again, double check the device name!):
gpart destroy -F ada1
Now we'll partition the disk the way the originals are (above), adjust for any differences in your own partitioning:
gpart create -s gpt ada1
gpart add -s 64k -t freebsd-boot -l boot1 ada1
gpart add -s 8G -t freebsd-swap -l swap1 ada1
gpart add -t freebsd-ufs -l root1 ada1
gpart bootcode -b /boot/pmbr -p /boot/gptboot -i 1 ada1
Have FreeBSD re-taste the /dev/gpt/ device names:
true > /dev/ada1
ls -l /dev/gpt/
Now for each parition tell gmirror to forget any disk's partitions which aren't currently present and add the new partitions to become mirrored (remember we're gmirroring each parittion individually instead of each disk so GPT can work happily with gmirror):
gmirror forget boot
gmirror insert boot /dev/gpt/boot1
gmirror forget swap
gmirror insert swap /dev/gpt/swap1
gmirror forget root
gmirror insert root /dev/gpt/root1
Finally check the status of the rebuild:
gmirror status
More information can be found at the FreeBSD Handbook's page on RAID1 mirroring.

Fetching vote status, one moment ...
Any problems and their solutions discussed here are designed to be examples and may not exactly match your situation.
No warranty is provided or implied with these articles, if it's critical contact us: we support and guarantee all of our work.