Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Big disk and install issue #34

Open
Koxx3 opened this issue Feb 5, 2019 · 0 comments
Open

Big disk and install issue #34

Koxx3 opened this issue Feb 5, 2019 · 0 comments

Comments

@Koxx3
Copy link

Koxx3 commented Feb 5, 2019

Hello,
I am trying to install the hardened OS generated from Centos 7.4 on a new physical server with 15Tb (in a single RAID disk/volume).
And I get this error (see ) whatever the partition pourcentage I use - all to 1% give me the same-
Picture

The same generated ISO works fine in smaller VMs.

Does anyone have an idea how to fix this ?

I looked at the menu.py, but I don't see any issue:
f.write('clearpart --all --drives='+str(self.data["INSTALL_DRIVES"])+'\n')
if self.encrypt_disk.get_active() == True:
f.write('part pv.01 --grow --size=200 --encrypted --cipher='aes-xts-plain64' --passphrase='+self.quoted_password+'\n')
else:
f.write('part pv.01 --grow --size=200\n')
f.write('part /boot --fstype=xfs --size=1024\n')
f.write('volgroup vg1 --pesize=4096 pv.01\n')
if os.path.isdir('/sys/firmware/efi'):
f.write('part /boot/efi --fstype=efi --size=200\n')
f.write('logvol / --fstype=xfs --name=lv_root --vgname=vg1 --percent='+str(self.root_partition.get_value_as_int())+'\n')
f.write('logvol /home --fstype=xfs --name=lv_home --vgname=vg1 --percent='+str(self.home_partition.get_value_as_int())+'\n')
f.write('logvol /tmp --fstype=xfs --name=lv_tmp --vgname=vg1 --percent='+str(self.tmp_partition.get_value_as_int())+'\n')

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant