FW: Kickstart-list Digest, Vol 56, Issue 14

Pablo Iranzo Gómez Pablo.Iranzo at redhat.com
Fri Oct 31 07:54:15 UTC 2008


	Send me a copy of your full ks to have a look on it.

	Regards
	Pablo

El jue, 30-10-2008 a las 10:10 -0700, Phillip Groven escribió:
>  
> 
> I tried your partitioning code and I get the same
> 
> I was able get to a shell prompt and scp the anaconda.log file so I
> think the bnx2 driver is working
> 
> Can you look at this log file and tell me if you see what is wrong?
> 
>  
> 
> Phil
> 
> -----Original Message-----
> From: kickstart-list-bounces at redhat.com
> [mailto:kickstart-list-bounces at redhat.com] On Behalf Of
> kickstart-list-request at redhat.com
> Sent: Tuesday, October 28, 2008 11:30 AM
> To: kickstart-list at redhat.com
> Subject: Kickstart-list Digest, Vol 56, Issue 14
> 
>  
> 
> Send Kickstart-list mailing list submissions to
> 
>       kickstart-list at redhat.com
> 
>  
> 
> To subscribe or unsubscribe via the World Wide Web, visit
> 
>       https://www.redhat.com/mailman/listinfo/kickstart-list
> 
> or, via email, send a message with subject or body 'help' to
> 
>       kickstart-list-request at redhat.com
> 
>  
> 
> You can reach the person managing the list at
> 
>       kickstart-list-owner at redhat.com
> 
>  
> 
> When replying, please edit your Subject line so it is more specific
> 
> than "Re: Contents of Kickstart-list digest..."
> 
> 
> mensaje de correo electrónico adjunto
> > --------- Mensaje reenviado --------
> > De: Phillip Groven <pgroven at 2wire.com>
> > Responder a: Discussion list about Kickstart
> > <kickstart-list at redhat.com>
> > Para: Discussion list about Kickstart <kickstart-list at redhat.com>
> > Asunto: RE: cmdline ignored
> > Fecha: Tue, 28 Oct 2008 11:26:49 -0700
> > 
> > I tried this but it the kickstart still comes up with a text-GUI
> > page to configure the drives
> > 
> > I am not sure why
> > 
> >  
> > 
> > -----Original Message-----
> > From: Pablo Iranzo Gómez [mailto:Pablo.Iranzo at redhat.com] 
> > Sent: Tuesday, October 28, 2008 12:19 AM
> > To: Discussion list about Kickstart
> > Subject: Re: cmdline ignored
> > 
> >  
> > 
> >       Try with something like:
> > 
> > %pre
> > 
> > set $(list-harddrives)
> > 
> > let numd=$#/2 # harddrive number
> > 
> > d1=$1 # 1st device
> > 
> > S1=$2 # 1st device size and so on
> > 
> >  
> > 
> > DISCO=$d1
> > 
> >  
> > 
> > echo "clearpart --drives=$DISCO --all --initlabel"
> > >> /tmp/part-include
> > 
> > echo "part /boot --fstype ext3 --size=100 --ondisk=$DISCO"
> > >> /tmp/part-include
> > 
> > echo "part pv.100000 --size=1 --grow --ondisk=$DISCO"
> > >>  /tmp/part-include
> > 
> > echo "volgroup VG --pesize=32768 pv.100000" >> /tmp/part-include
> > 
> > echo "logvol swap --fstype swap --name=Swap --vgname=VG --size=2047"
> > >> /tmp/part-include
> > 
> > echo "logvol  / --fstype ext3 --name=root --vgname=VG --size=1024"
> > >> /tmp/part-include
> > 
> > echo "logvol /home --fstype ext3 --size=1024 --name=home
> > --vgname=VG" >> /tmp/part-include
> > 
> > echo "logvol /tmp --fstype ext3 --size=1024 --name=tmp --vgname=VG"
> > >> /tmp/part-include
> > 
> > echo "logvol /usr --fstype ext3 --size=3000 --name=usr --vgname=VG"
> > >> /tmp/part-include
> > 
> > echo "logvol /opt --fstype ext3 --size=12000 --name=opt --vgname=VG"
> > >> /tmp/part-include
> > 
> > echo "part /opt/iso --fstype vfat --size=8000 --ondisk=$DISCO"
> > >> /tmp/part-include
> > 
> >  
> > 
> >  
> > 
> >       Regards
> > 
> >       Pablo
> > 
> >  
> > 
> >  
> > 
> >  
> > 
> >  
> > 
> > El lun, 27-10-2008 a las 17:42 -0700, Phillip Groven escribió:
> > 
> > > I am trying to kickstart redhat  5.2 64 bit 
> > 
> > > 
> > 
> > > We have used this %pre script for years and had have no issues.
> > 
> > > 
> > 
> > > I am trying to kickstart an HP DL365 G5 but does not like this
> > script
> > 
> > > 
> > 
> > > The kickstart machine is running Redhat 4.5
> > 
> > > 
> > 
> > > This %pre script worked fine on a G4 with red hat 5.1.
> > 
> > > 
> > 
> > > The kickstart always comes up with a GUI to partition the drives
> > 
> > > 
> > 
> > > %pre
> > 
> > > NEWDEV=`sed 's/.*rootdev=\([^ $]*\).*/\1/' < /proc/cmdline`
> > 
> > > echo "##"
> > 
> > > echo "## newdev = $NEWDEV"
> > 
> > >  
> > 
> > > if test "$NEWDEV" = "cciss" ; then
> > 
> > >         DEVICE1="--ondisk cciss/c0d0"
> > 
> > > elif test "$NEWDEV" = "ida" ; then
> > 
> > >         DEVICE1="--ondisk ida/c0d0"
> > 
> > > elif test "$NEWDEV" = "hd"  ; then
> > 
> > >         DEVICE1="--ondisk hda"
> > 
> > > elif test "$NEWDEV" = "sd"  ; then
> > 
> > >         DEVICE1="--ondisk sda"
> > 
> > > else
> > 
> > >         DEVICE1=""
> > 
> > > fi
> > 
> > > echo "## kickstart configured with $DEVICE1"
> > 
> > >  
> > 
> > > cat > /tmp/parts.ks <<EOPARTS
> > 
> > > clearpart --all --initlabel
> > 
> > > part /boot --fstype "ext3" --size=128 --asprimary $DEVICE1
> > 
> > > part swap --size=2048 $DEVICE1
> > 
> > > part / --fstype "ext3" --size=512 --grow --asprimary $DEVICE1
> > 
> > > 
> > 
> > > EOPARTS
> > 
> > > 
> > 
> > >  
> > 
> > > 
> > 
> > > I have tried this fix but it did not resolve the issue
> > 
> > > 
> > 
> > >
> > http://h20000.www2.hp.com/bizsupport/TechSupport/Document.jsp?lang=en&cc=us&taskId=110&prodSeriesId=1121516&prodTypeId=15351&prodSeriesId=1121516&objectID=c01430330
> > 
> > > 
> > 
> > >  
> > 
> > > 
> > 
> > >  
> > 
> > > 
> > 
> > >  
> > 
> > > 
> > 
> > >  
> > 
> > > 
> > 
> > >  
> > 
> > > 
> > 
> > >  
> > 
> > > 
> > 
> > > 
> > 
> > > _______________________________________________
> > 
> > > Kickstart-list mailing list
> > 
> > > Kickstart-list at redhat.com
> > 
> > > https://www.redhat.com/mailman/listinfo/kickstart-list
> > 
> > -- 
> > 
> >  
> > 
> > Pablo Iranzo Gómez (Pablo.Iranzo at redhat.com)
> > 
> > RHCE/RHCSP/RHCSS Global Profesional Services Consultant Spain
> > 
> > Phone: +34 645 01 01 49 (CET/CEST)
> > 
> > GnuPG KeyID: 0xFAD3CF0D
> > 
> >  
> > 
> > --
> > 
> > Inscrita en el Reg. Mercantil de Madrid – C.I.F. B-82 65 79 41
> > 
> > Directores: Michael Cunningham, Charlie Peters y David Owens
> > 
> > Dirección Registrada: Red Hat S.L., C/ Velazquez 63, Madrid 28001,
> > España
> > 
> > Dirección contacto: C/Jose Bardasano Baos, 9, Edif. Gorbea 3, Planta
> > 3ºD, 28016 Madrid, Spain
> > 
> >  
> > 
> >  
> > 
> > 
> mensaje de correo electrónico adjunto
> > --------- Mensaje reenviado --------
> > De: Pablo Iranzo Gómez <Pablo.Iranzo at redhat.com>
> > Responder a: Discussion list about Kickstart
> > <kickstart-list at redhat.com>
> > Para: Discussion list about Kickstart <kickstart-list at redhat.com>
> > Asunto: RE: cmdline ignored
> > Fecha: Tue, 28 Oct 2008 11:30:12 -0700
> > 
> > 
> > 
> > On Tue, 28 Oct 2008, Phillip Groven wrote:
> > 
> > > I tried this but it the kickstart still comes up with a text-GUI
> > page to configure the drives
> > >
> > > I am not sure why
> > 
> > What information did you get at your /tmp/part-include (or your file
> > name), as well as anaconda.log ?
> > 
> > Regards
> > Pablo
> > 
> > >
> > >
> > >
> > > -----Original Message-----
> > > From: Pablo Iranzo Gmez [mailto:Pablo.Iranzo at redhat.com]
> > > Sent: Tuesday, October 28, 2008 12:19 AM
> > > To: Discussion list about Kickstart
> > > Subject: Re: cmdline ignored
> > >
> > >
> > >
> > >      Try with something like:
> > >
> > > %pre
> > >
> > > set $(list-harddrives)
> > >
> > > let numd=$#/2 # harddrive number
> > >
> > > d1=$1 # 1st device
> > >
> > > S1=$2 # 1st device size and so on
> > >
> > >
> > >
> > > DISCO=$d1
> > >
> > >
> > >
> > > echo "clearpart --drives=$DISCO --all --initlabel"
> > >> /tmp/part-include
> > >
> > > echo "part /boot --fstype ext3 --size=100 --ondisk=$DISCO"
> > >> /tmp/part-include
> > >
> > > echo "part pv.100000 --size=1 --grow --ondisk=$DISCO"
> > >>  /tmp/part-include
> > >
> > > echo "volgroup VG --pesize=32768 pv.100000" >> /tmp/part-include
> > >
> > > echo "logvol swap --fstype swap --name=Swap --vgname=VG
> > --size=2047" >> /tmp/part-include
> > >
> > > echo "logvol  / --fstype ext3 --name=root --vgname=VG --size=1024"
> > >> /tmp/part-include
> > >
> > > echo "logvol /home --fstype ext3 --size=1024 --name=home
> > --vgname=VG" >> /tmp/part-include
> > >
> > > echo "logvol /tmp --fstype ext3 --size=1024 --name=tmp
> > --vgname=VG" >> /tmp/part-include
> > >
> > > echo "logvol /usr --fstype ext3 --size=3000 --name=usr
> > --vgname=VG" >> /tmp/part-include
> > >
> > > echo "logvol /opt --fstype ext3 --size=12000 --name=opt
> > --vgname=VG" >> /tmp/part-include
> > >
> > > echo "part /opt/iso --fstype vfat --size=8000 --ondisk=$DISCO"
> > >> /tmp/part-include
> > >
> > >
> > >
> > >
> > >
> > >      Regards
> > >
> > >      Pablo
> > >
> > >
> > >
> > >
> > >
> > >
> > >
> > >
> > >
> > > El lun, 27-10-2008 a las 17:42 -0700, Phillip Groven escribi:
> > >
> > >> I am trying to kickstart redhat  5.2 64 bit
> > >
> > >>
> > >
> > >> We have used this %pre script for years and had have no issues.
> > >
> > >>
> > >
> > >> I am trying to kickstart an HP DL365 G5 but does not like this
> > script
> > >
> > >>
> > >
> > >> The kickstart machine is running Redhat 4.5
> > >
> > >>
> > >
> > >> This %pre script worked fine on a G4 with red hat 5.1.
> > >
> > >>
> > >
> > >> The kickstart always comes up with a GUI to partition the drives
> > >
> > >>
> > >
> > >> %pre
> > >
> > >> NEWDEV=`sed 's/.*rootdev=\([^ $]*\).*/\1/' < /proc/cmdline`
> > >
> > >> echo "##"
> > >
> > >> echo "## newdev = $NEWDEV"
> > >
> > >>
> > >
> > >> if test "$NEWDEV" = "cciss" ; then
> > >
> > >>         DEVICE1="--ondisk cciss/c0d0"
> > >
> > >> elif test "$NEWDEV" = "ida" ; then
> > >
> > >>         DEVICE1="--ondisk ida/c0d0"
> > >
> > >> elif test "$NEWDEV" = "hd"  ; then
> > >
> > >>         DEVICE1="--ondisk hda"
> > >
> > >> elif test "$NEWDEV" = "sd"  ; then
> > >
> > >>         DEVICE1="--ondisk sda"
> > >
> > >> else
> > >
> > >>         DEVICE1=""
> > >
> > >> fi
> > >
> > >> echo "## kickstart configured with $DEVICE1"
> > >
> > >>
> > >
> > >> cat > /tmp/parts.ks <<EOPARTS
> > >
> > >> clearpart --all --initlabel
> > >
> > >> part /boot --fstype "ext3" --size=128 --asprimary $DEVICE1
> > >
> > >> part swap --size=2048 $DEVICE1
> > >
> > >> part / --fstype "ext3" --size=512 --grow --asprimary $DEVICE1
> > >
> > >>
> > >
> > >> EOPARTS
> > >
> > >>
> > >
> > >>
> > >
> > >>
> > >
> > >> I have tried this fix but it did not resolve the issue
> > >
> > >>
> > >
> > >>
> > http://h20000.www2.hp.com/bizsupport/TechSupport/Document.jsp?lang=en&cc=us&taskId=110&prodSeriesId=1121516&prodTypeId=15351&prodSeriesId=1121516&objectID=c01430330
> > >
> > >>
> > >
> > >>
> > >
> > >>
> > >
> > >>
> > >
> > >>
> > >
> > >>
> > >
> > >>
> > >
> > >>
> > >
> > >>
> > >
> > >>
> > >
> > >>
> > >
> > >>
> > >
> > >>
> > >
> > >>
> > >
> > >> _______________________________________________
> > >
> > >> Kickstart-list mailing list
> > >
> > >> Kickstart-list at redhat.com
> > >
> > >> https://www.redhat.com/mailman/listinfo/kickstart-list
> > >
> > >
> > 
> > 
> > 
> > --
> > Pablo Iranzo Gómez
> > (http://Alufis35.uv.es/~iranzo/)
> > (PGPKey Available on http://www.uv.es/~iranzop/PGPKey.pgp)
> >                    --
> > Postulado de Boling sobre la Ley de Murphy:
> > 
> > Si se encuentra bien, no se preocupe. Se le pasará
> > 
> > 
-- 

Pablo Iranzo Gómez (Pablo.Iranzo at redhat.com)
RHCE/RHCSP/RHCSS Global Profesional Services Consultant Spain
Phone: +34 645 01 01 49 (CET/CEST)
GnuPG KeyID: 0xFAD3CF0D

--
Inscrita en el Reg. Mercantil de Madrid – C.I.F. B-82 65 79 41
Directores: Michael Cunningham, Charlie Peters y David Owens
Dirección Registrada: Red Hat S.L., C/ Velazquez 63, Madrid 28001, España
Dirección contacto: C/Jose Bardasano Baos, 9, Edif. Gorbea 3, Planta 3ºD, 28016 Madrid, Spain


-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 189 bytes
Desc: Esta parte del mensaje est? firmada	digitalmente
URL: <http://listman.redhat.com/archives/kickstart-list/attachments/20081031/97bc7582/attachment.sig>


More information about the Kickstart-list mailing list