<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
  <meta content="text/html;charset=ISO-8859-1" http-equiv="Content-Type">
  <title></title>
</head>
<body>
<div class="moz-text-flowed"
 style="font-family: -moz-fixed; font-size: 13px;" lang="x-western">Has
anyone had luck auto-partitioning a cciss/c0d0 device using a ks.cfg
file and the ondisk parameter when there are multiple cciss devices on
the system?  Below is the snippet of my ks.cfg file I am using to try
and accomplish this.  Using the below snippet, if I leave off the
ondisk parameters, it all works, but spreads my filesystems across
multiple disks on the system, which is not what I want.  I want to
force it to the internal cciss/c0d0 disk only.  When I leave it this
way, it retrieves the base.img files, parses my config file, then gives
me the error: "Could not allocate the requested partitions: 
Partitioning failed: Could not allocate partitions."
<br>
clearpart --drives cciss/c0d0 --all
<br>
part /boot --fstype ext3 --size 512 --ondisk cciss/c0d0
<br>
part / --fstype ext3 --size 14000 --ondisk cciss/c0d0
<br>
part /var --fstype ext3 --size 10000 --ondisk cciss/c0d0
<br>
part /tmp --fstype ext3 --size 2000 --ondisk cciss/c0d0
<br>
part swap  --size 2048 --ondisk cciss/c0d0
<br>
<br>
If the cciss/c0d0 partition table is cleared, I do have enough room on
the disk for the above partitions.  I've tried the above with and
without the "=" as well.  I've also tried leaving out the clearpart and
starting with a blank disk.  And I can use the same exact snippet above
except I replace the cciss/c0d0 with the appropriate sda or hda on a
system with hd or sd drives and it works just fine when there are
multiple hd or sd drives attached. <br>
Any help appreciated.  Thanks. <br>
</div>
</body>
</html>