#!/bin/bash
# Create partitions for RAC database
# sbourgeo 07/25/2002


# Create 4 GB extended partition and 19 logical partitions
# Account for overhead by creating partition size 1 MB larger than desired
# Oracle datafile size
/sbin/fdisk /dev/hdf <<EOF
n
e
4

+4096M
n
l

+101M
n
l

+26M
n
l

+26M
n
l

+26M
n
l

+26M
n
l

+26M
n
l

+26M
n
l

+501M
n
l

+101M
n
l

+101M
n
l

+101M
n
l

+101M
n
l

+26M
n
l

+91M
n
l

+71M
n
l

+161M
n
l

+101M
n
l

+6M
n
l

+1M
p
w
EOF



