<div dir="ltr"><div><div>If I understand your problem correctly, you must label the disk as "gpt" which will allow you to specify larger (>2TB) filesystems. Other gotchas: don't use fdisk (doesn't support gpt style partition tables) - use parted instead (not sure if you need to do this in a %pre section or if the default "part" parameter supports gpt in rhel6+)<br><br></div><div>I used the following once:<br><br>%pre<br># Partition alignment<br>dd if=/dev/zero of=/dev/sda bs=512 count=1<br>parted -s /dev/sda mklabel gpt<br>parted -s /dev/sda mkpart primary 2048s 1050624s<br>parted -s /dev/sda mkpart primary 1052672s 100%<br><br></div><div>Note the firs partition starts at 2048 (required for gpt)<br></div><div><br></div>Hope that helps<br></div>Angus<br><div class="gmail_extra"><br><div class="gmail_quote">On 1 August 2016 at 14:08, Felix von Leitner <span dir="ltr"><<a href="mailto:felix-anaconda@fefe.de" target="_blank">felix-anaconda@fefe.de</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">Hi!<br>
<br>
I need to make a kickstart configuration for Redhat 6.8. It is to form<br>
the basis for installing a commercial product on it later, and that<br>
product has some peculiar constraints on what they support and what not.<br>
That is the reason why this is Redhat 6.8 in the first place.<br>
<br>
The system installation is supposed to go on sda, and this works fine,<br>
but there is an sdb, too, and it is comparatively huge (> 20 TB). The<br>
constraints of the product say that there should be two partitions on<br>
sdb, one about 10% of it and one the rest of the space.<br>
<br>
The only way I could make this work is with LVM. It now turns out the<br>
product utterly fails if installed on LVM.<br>
<br>
Please note that I'm not blaming anyone for anything here. I just want<br>
to get this done.<br>
<br>
How do you make a partition 10% of the total size without using LVM in<br>
kickstarter? I found no way, surely I must be missing something obvious.<br>
<br>
Would it help if I made a custom DVD with a newer Anaconda binary, say<br>
from Fedora?<br>
<br>
Thanks,<br>
<br>
Felix<br>
<br>
_______________________________________________<br>
Kickstart-list mailing list<br>
<a href="mailto:Kickstart-list@redhat.com" target="_blank">Kickstart-list@redhat.com</a><br>
<a href="https://www.redhat.com/mailman/listinfo/kickstart-list" rel="noreferrer" target="_blank">https://www.redhat.com/mailman/listinfo/kickstart-list</a><br>
</blockquote></div><br></div></div>