Same as adding any Secondary Disk to a Gaia Machine.
Expert Mode
cat /proc/partitions
to determine the name of the raw partition.
parted /dev/cciss/c0d1 - replace the cciss/c0d1 with the relevant device name for the partition as shown in the previous output
to start the parted tool that used
mklabel gpt
creates the gpt label
unit TB
sets the system to be working with Terabytes as the Unit Size
mkpart primary 0.00TB 3.60TB - replace the 3.60TB with the actual size of the partition.
quit
to return back to Gaia Expert prompt
mkfs -t ext3 /dev/cciss/c0d1p1 - formats the new parition created, replace the ext3 with the format wanted and the cciss/c0d1p1 with the device name
mkdir /cplos - creates the mount point for the new partition replace cplogs with the directory name want to use
mount -t ext3 /dev/cciss/c0dp1 /cplog - mounts the filesystem replace ext3 with the format wanted and the cciss/c0d1p1 with the device name and the /cplog with the mount point created
Add the following line to /etc/fstab
/dev/cciss/c0d1p1 /cplogs ext3 defaults 1 2
obviously need to replace the parts with your actual settings
Reboot the box and confirm that can access your mount point directory afterwards
do a df -kh and confirm see your mount point etc
After that follow the standard procedure to redirect the logs to the new area.
This was taken from what we did for a HP DL380 Server with built in RAID Card but the principal will be the same just need to identify how Gaia identifies the SAN Card