Displaying 20 results from an estimated 10000 matches similar to: "Device enumeration during kickstart"
2019 Apr 03
2
Kickstart putting /boot on sda2 (anaconda partition enumeration)?
Does anyone know how anaconda partitioning enumerates disk partitions when
specified in kickstart? I quickly browsed through the anaconda installer
source on github but didn't see the relevant bits.
I'm using the centOS 6.10 anaconda installer.
Somehow I am ending up with my swap partition on sda1, /boot on sda2, and
root on sda3. for $REASONS I want /boot to be the partition #1 (sda1)
2016 Aug 23
3
Kickstart issue with UEFi
On Tue, 23 Aug 2016 at 02:18 Gordon Messmer <gordon.messmer at gmail.com>
wrote:
> On 08/21/2016 11:56 PM, Phil Manuel wrote:
> > part /boot/efi --fstype="efi" --size=200 --ondisk=sda
> > And I have tried the latter with location as mbr still fails
> > What am I missing ?
>
>
> I very vaguely remember struggling with this as well, but I can't find
2010 Nov 18
1
kickstart raid disk partitioning
Hello.
A couple of years ago I installed two file-servers
using kickstart. The server has two 1TB sata disks
with two software raid1 partitions as follows:
# cat /proc/mdstat
Personalities : [raid1]
md1 : active raid1 sdb4[1] sda4[0]
933448704 blocks [2/2] [UU]
md0 : active raid1 sdb1[1] sda2[2](F)
40957568 blocks [2/1] [_U]
Now the drives are starting to be failing and next week
2016 Aug 28
2
Kickstart issue with UEFi
On Fri, Aug 26, 2016 at 10:39 AM, Gordon Messmer
<gordon.messmer at gmail.com> wrote:
> On 08/25/2016 11:35 PM, Phil Manuel wrote:
>>
>> The relevant kickstart section is:-
>>
>> part /boot/efi --fstype efi --grow --maxsize=200 --size=20 --ondisk=sda
>> bootloader --append=" crashkernel=auto" --location=mbr --boot-drive=sda1
>> autopart
2016 Aug 22
2
Kickstart issue with UEFi
On Sun, 21 Aug 2016 at 12:51 Gordon Messmer <gordon.messmer at gmail.com>
wrote:
> On 08/19/2016 11:35 PM, Phil Manuel wrote:
> > The install fails under UEFi due to the fact the partitions are not
> cleared, and it doesn?t have any space to continue. Is there an extra step
> I need to do to remove the original partitions before the new layout will
> work ?
>
>
>
2008 Mar 28
3
questions on kickstart
I have 2 questions dealing with 2 different kickstart files.
1) my kickstart sections for RAID disk setup and kickstart reports it
cannot find sda. Why is that. sda is there and works.
clearpart --all --initlabel
part raid.01 --asprimary --bytes-per-inode=4096 --fstype="raid"
--onpart=sda1 --size=20000
part swap --asprimary --bytes-per-inode=4096 --fstype="swap"
2016 Aug 26
3
Kickstart issue with UEFi
Hi all,
This the latest output from anaconda.log:-
06:08:54,828 DEBUG anaconda: new disk order: []
06:08:54,832 DEBUG anaconda: new disk order: []
06:08:54,851 DEBUG anaconda: stage1 device cannot be of type disk
06:08:54,865 DEBUG anaconda: _is_valid_disklabel(sda1) returning True
06:08:54,867 DEBUG anaconda: _is_valid_size(sda1) returning True
06:08:54,867 DEBUG anaconda:
2005 Jun 17
1
kickstart software raid on sata drives
This is what I have for configuring software raid on sata drives in my
kickstart config
<snip kickstart.cfg>
clearpart --initlabel --all
part swap --size=2048 --ondisk=sdb
part swap --size=2048 --ondisk=sda
part raid.01 --size=101 --ondisk=sda
part raid.02 --size=101 --ondisk=sdb
part raid.04 --size=1 --grow --ondisk=sdb
part raid.03 --size=1 --grow --ondisk=sda
raid / --fstype ext3
2007 Jun 07
2
error in kickstart file for raid1 setup
Hello,
I'm trying to do a kickstart install of centos5. I'm pulling it off a
network server and i'm getting an error, in the parsing of the file. It
refers to line 31, i'm not going to show the complete file, but here is the
indicated line:
raid swap --fstype swap --level=RAID1 raid.4 raid.7
and the raid lines:
part raid.7 --size=512 --ondisk=hdb
part raid.4 --size=512
2016 Aug 28
0
Kickstart issue with UEFi
> On 28 Aug 2016, at 10:04 AM, Chris Murphy <lists at colorremedies.com> wrote:
>
> On Fri, Aug 26, 2016 at 10:39 AM, Gordon Messmer
> <gordon.messmer at gmail.com <mailto:gordon.messmer at gmail.com>> wrote:
>> On 08/25/2016 11:35 PM, Phil Manuel wrote:
>>>
>>> The relevant kickstart section is:-
>>>
>>> part /boot/efi
2008 Apr 30
4
kickstart question
I have a couple lines like:
part / --ondisk=sda --fstype ext3 --size=20000 --asprimary
part swap --ondisk=sda --size=4000 --asprimary
part /home --ondisk=sda --fstype ext3 --size=1 --asprimary --grow
in my kickstart file.
Is there a way to have 1 kickstart file that works for hda and sda both???
So I would like to have 1 kickstart file that works for either a hda
2019 Jul 09
2
adding uefi to kickstart CentOS 7
I am trying to add an efi partition to my working kickstart file.
bootloader --driveorder=sda --append="rhgb quiet biosdevname=0
net.ifnames=0"
clearpart --all --initlabel
part / --ondisk=sda --fstype xfs --size=20000 --asprimary
part swap --ondisk=sda --size=4000 --asprimary
part /boot/efi --ondisk=sda --fstype efi --size=1000 --asprimary
part /home --ondisk=sda
2019 May 08
5
kickstart compat C7 -> C8
Hi all,
I still use the following kickstart partition scheme for C7 installations (via virt-install):
Briefly, fixed size for /root and /boot, and the rest is filled up for /srv.
The same kickstart (despite that c7 uses vda, f29 uses sda) doesn't work with Fedora29 (EL8).
I get a "device is too small for new format" error. Any hints?
part /RESCUE --fstype="ext4"
2012 Mar 06
1
kickstart partitioning and cylinder boundary
As I understand anaconda uses parted to partition (starting from
centos 6), using this as example (kickstart configuration file):
clearpart --all --drives=sda --initlabel
part /boot --asprimary --size=200 --fstype=ext2 --ondisk=sda
part swap --asprimary --size=16384 --fstype=swap --ondisk=sda
part / --asprimary --size=512000 --fstype=ext4 --ondisk=sda
part /scratch --asprimary --size=1 --grow
2016 Aug 20
2
Kickstart issue with UEFi
Hi,
I have a test system that booted fine using "Legacy Bios? mode and using the following Kickstart snippet configured the disks correctly:-
# Clear the Master Boot Record
zerombr
# Partition clearing information
clearpart --all --initlabel
# Disk partitioning information
part raid.01 --fstype="raid" --ondisk=sda --size=500
part raid.02 --fstype="raid" --grow
2007 Oct 13
1
Problem creating volgroups with kickstart installations (on xen)
I'm testing doing kickstart installations on Xen VMs. This is
the first time I'm trying out kickstart at all, so I rather think I'm
doing something wrong in the kickstart configuration than it is
a Xen issue.
I use a modified kickstart file from an earlier manual installation
with a very basic filesystem setup. It fails with
"SystemError: vgcreate failed for VolGroup00".
2019 May 08
2
kickstart compat C7 -> C8
On Wed, 8 May 2019 at 13:24, mark <m.roth at 5-cent.us> wrote:
> Leon Fauster via CentOS wrote:
> > Hi all,
> >
> >
> > I still use the following kickstart partition scheme for C7 installations
> > (via virt-install):
> > Briefly, fixed size for /root and /boot, and the rest is filled up for
> > /srv.
> >
> > The same kickstart
2016 Aug 26
1
Kickstart issue with UEFi
Gordon Messmer wrote:
> On 08/25/2016 11:35 PM, Phil Manuel wrote:
>> The relevant kickstart section is:-
>>
>> part /boot/efi --fstype efi --grow --maxsize=200 --size=20 --ondisk=sda
>> bootloader --append=" crashkernel=auto" --location=mbr --boot-drive=sda1
>> autopart --type=lvm
>
> A couple of things to consider:
> * The documentation for
2016 Aug 05
1
CentOS 7 kickstart question
On Thu, August 4, 2016 7:13 pm, Paul Heinlein wrote:
> On Thu, 4 Aug 2016, Valeri Galtsev wrote:
>
>> Dear Experts,
>>
>> Could somebody point to kicstart HOWTO specific for CentOS 7?
>>
>> On CentOS 7 I somehow am always given human intervention questions
>> about drive which defeats unattended ks install.
>>
>> At least one snag I hit
2008 Apr 25
2
PXE / Kickstart / nfs ....
hello there,
I wonder if you could help me:
I am trying to install 50 diskless servers using PXE / kickstart, it all starts well, DHCP server issues a dynamic address, tftp issues the kickstart file, the client starts reading the KS file but at some point anaconda brings up an unhandled exception related to Python when reading Comps.xml??
What is really unsettling is the fact that if I plug