Kickstart installation error
Hi,
I’m trying kickstart on CentOS Â* Below is my ks.cfg [root@localhost ~]# cat /root/ks.cfg #Generated by Kickstart Configurator #platform=x86, AMD64, or Intel EM64T Â* #SystemÂ* language lang en_US #Language modules to install langsupport en_US #System keyboard keyboard us #System mouse mouse #Sytem timezone timezone Asia/Dili #Root password rootpw --iscrypted $1$597tHcci$7GOVXzr92.Ce5IaqnXZA30 #Reboot after installation reboot #Use text mode install text #Install OS instead of upgrade install #Use Web installation url --url ftp://192.168.0.1/pub/ #System bootloader configuration bootloader --location=mbr #Clear the Master Boot Record zerombr yes #Partition clearing information clearpart --all --initlabel #Disk partitioning information part /boot --fstype ext3 --size 100 part swap --size 1987 part / --fstype ext3 --size 1 --grow #System authorization infomation authÂ* --useshadowÂ* --enablemd5 #Network information network --bootproto=dhcp --device=eth0 #Firewall configuration firewall --disabled #SELinux configuration selinux --disabled #Do not configure XWindows skipx #Package install information %packages --resolvedeps @ gnome-desktop @ kde-desktop @ editors @ engineering-and-scientific @ graphical-internet @ text-internet Â* [root@localhost ~]#Â* cat /etc/dhcpd.conf ddns-update-style interim; ignore client-updates; Â* subnet 192.168.0.0 netmask 255.255.255.0 { Â* # --- default gateway Â*Â*Â*Â*Â*Â*Â* option routersÂ*Â*Â*Â*Â*Â*Â*Â*Â*Â*Â*Â*Â*Â*Â*Â*Â* 192.168.0.1; Â*Â*Â*Â*Â*Â*Â* option subnet-maskÂ*Â*Â*Â*Â*Â*Â*Â*Â*Â*Â*Â*Â* 255.255.255.0; Â* #Â*Â*Â*Â*Â*Â* option nis-domainÂ*Â*Â*Â*Â*Â*Â*Â*Â*Â*Â*Â*Â*Â* "domain.org"; #Â*Â*Â*Â*Â*Â* option domain-nameÂ*Â*Â*Â*Â*Â*Â*Â*Â*Â*Â*Â*Â* "domain.org"; #Â*Â*Â*Â*Â*Â* option domain-name-serversÂ*Â*Â*Â*Â* 192.168.1.1; # #Â*Â*Â*Â*Â*Â* option time-offsetÂ*Â*Â*Â*Â*Â*Â*Â*Â*Â*Â*Â*Â* -18000; # Eastern Standard Time #Â*Â*Â*Â*Â*Â* option ntp-serversÂ*Â*Â*Â*Â*Â*Â*Â*Â*Â*Â*Â*Â* 192.168.1.1; #Â*Â*Â*Â*Â*Â* option netbios-name-serversÂ*Â*Â*Â* 192.168.1.1; # --- Selects point-to-point node (default is hybrid). Don't change this unless # -- you understand Netbios very well #Â*Â*Â*Â*Â*Â* option netbios-node-type 2; Â* Â*Â*Â*Â*Â*Â*Â* range dynamic-bootp 192.168.0.128 192.168.0.254; Â*Â*Â*Â*Â*Â*Â* default-lease-time 21600; Â*Â*Â*Â*Â*Â*Â* max-lease-time 43200; Â* #filename "/var/ftp/pub/"; #next-server 192.168.0.1; Â* allow booting; allow bootp; class "pxeclients" { Â*Â* match if substring(option vendor-class-identifier, 0, 9) = "PXEClient"; Â*Â* next-server 192.168.0.1; Â*Â* filename "linux-install/pxelinux.0"; } Â* Â* FTP server showing ks file accessable by ananomous users via browser Â* Â* Â* Can’t find what I’m doing wrong Â* Â* Kickstart installation stops with error Kickstart errorÂ* Â* Error opening kickstart file (null) bad addressÂ* Tried same with NFS also but their also getting Â*the same error. Please suggest.... Warm Regards,Anshul Chauhan "Never expect things to happen struggle & make them happen Never expect yourself to be given a good value Create a value for your own.." _______________________________________________ CentOS mailing list CentOS@centos.org http://lists.centos.org/mailman/listinfo/centos |
Kickstart installation error
>Can't find what I'm doing wrong
* Probably we won't be able to either unless you elaborate on how you begin the installation:) Given you posted dhcpd config, I am willing to guess you are doing|assuming something wrong... http://docs.redhat.com/docs/en-US/Red_Hat_Enterprise_Linux/6/html/Installation_Guide/s1-kickstart2-startinginstall.html _______________________________________________ CentOS mailing list CentOS@centos.org http://lists.centos.org/mailman/listinfo/centos |
Kickstart installation error
hi,
Dhcp seems to be working fine as i'm getting the ip on my client and its booting with prelinux but after starting it gives this error after detecting all the hardware and trying for the kickstart file Kickstart Error : Error opening kickstart file (null) bad address this is my prelinux files [root@localhost ~]# cat /tftpboot/linux-install/pxelinux.cfg/default default local timeout 100 prompt 1 display msgs/boot.msg F1 msgs/boot.msg F2 msgs/general.msg F3 msgs/expert.msg F4 msgs/param.msg F5 msgs/rescue.msg F7 msgs/snake.msg label local * localboot 1 label 0 * localboot 1 label 1 * kernel CentosFTP/vmlinuz * append initrd=CentosFTP/initrd.img ramdisk_size=7000 ks=/var/ftp/pub/ks.cfg [root@localhost ~]# cat /tftpboot/linux-install/CentosFTP/ks.cfg #use FTP installation media url --url ftp://192.168.0.1/pub/ks.cfg checked the NFS share its working fine and FTP also seems to be working fine on browser. Please suggest. Warm Regards,Anshul Chauhan"Never expect things to happen struggle & make them happen Never expect yourself to be given a good value Create a value for your own.." _______________________________________________ CentOS mailing list CentOS@centos.org http://lists.centos.org/mailman/listinfo/centos |
Kickstart installation error
Anshul Chauhan wrote:
> hi, > > Dhcp seems to be working fine as i'm getting the ip on my client and its > booting with prelinux but after > starting it gives this error after detecting all the hardware and trying for > the kickstart file > * > Kickstart Error : Error opening kickstart file (null) bad address* > > > this is my prelinux files > > *[root@localhost ~]# cat /tftpboot/linux-install/pxelinux.cfg/default* > default local > timeout 100 > prompt 1 > display msgs/boot.msg > F1 msgs/boot.msg > F2 msgs/general.msg > F3 msgs/expert.msg > F4 msgs/param.msg > F5 msgs/rescue.msg > F7 msgs/snake.msg > > label local > localboot 1 > > label 0 > localboot 1 > > label 1 > kernel CentosFTP/vmlinuz > append initrd=CentosFTP/initrd.img ramdisk_size=7000 ks=/var/ftp/pub/ks.cfg > > *[root@localhost ~]# cat /tftpboot/linux-install/CentosFTP/ks.cfg* > #use FTP installation media > url --url ftp://192.168.0.1/pub/ks.cfg > > checked the NFS share its working fine and FTP also seems to be working fine > on browser. The ks syntax on append line doesn't look right - I think you should just use "ks=ftp://192.168.0.1/pub/ks.cfg" James Pearson _______________________________________________ CentOS mailing list CentOS@centos.org http://lists.centos.org/mailman/listinfo/centos |
kickstart installation error
Hi List,
I am trying to install rhel5 using kickstart, I have created a kickstart file and provided it using ftp, installation is happening but once the system boots it is booting into init level 1 and when I tried to switch to init 5 it is giving error "x is respawing high disabled for 5 minutes" Can I get the solution for this???? Thanks Kavya -- redhat-list mailing list unsubscribe mailto:redhat-list-request@redhat.com?subject=unsubscribe https://www.redhat.com/mailman/listinfo/redhat-list |
kickstart installation error
I am trying to install rhel5 using kickstart,
I have created a kickstart file and provided it using ftp, installation is happening but once the system boots it is booting into init level 1 and when I tried to switch to init 5 it is giving error "x is respawing high disabled for 5 minutes" Can I get the solution for this???? Does your machine meet the requirements for a graphical install? Change the install method in your kickstart to cmdline to get verbose output in text mode. -- redhat-list mailing list unsubscribe mailto:redhat-list-request@redhat.com?subject=unsubscribe https://www.redhat.com/mailman/listinfo/redhat-list |
kickstart installation error
It does supports, from CD-Rom I will install in graphical mode itself.
On Thu, Sep 22, 2011 at 9:51 PM, Barry Brimer <lists@brimer.org> wrote: > I am trying to install rhel5 using kickstart, >> I have created a kickstart file and provided it using ftp, installation is >> happening but once the system boots it is booting into init level 1 >> and when I tried to switch to init 5 it is giving error "x is respawing >> high >> disabled for 5 minutes" >> Can I get the solution for this???? >> > > Does your machine meet the requirements for a graphical install? Change > the install method in your kickstart to cmdline to get verbose output in > text mode. > > -- > redhat-list mailing list > unsubscribe mailto:redhat-list-request@**redhat.com<redhat-list-request@redhat.com> > ?subject=unsubscribe > https://www.redhat.com/**mailman/listinfo/redhat-list<https://www.redhat.com/mailman/listinfo/redhat-list> > -- Thanks and Regards Kavya.N(Koramangala) -- redhat-list mailing list unsubscribe mailto:redhat-list-request@redhat.com?subject=unsubscribe https://www.redhat.com/mailman/listinfo/redhat-list |
kickstart installation error
Did you change the install type to cmdline or text? What happened then?
It does supports, from CD-Rom I will install in graphical mode itself. On Thu, Sep 22, 2011 at 9:51 PM, Barry Brimer <lists@brimer.org> wrote: I am trying to install rhel5 using kickstart, I have created a kickstart file and provided it using ftp, installation is happening but once the system boots it is booting into init level 1 and when I tried to switch to init 5 it is giving error "x is respawing high disabled for 5 minutes" Can I get the solution for this???? Does your machine meet the requirements for a graphical install? Change the install method in your kickstart to cmdline to get verbose output in text mode. -- redhat-list mailing list unsubscribe mailto:redhat-list-request@**redhat.com<redhat-list-request@redhat.com> ?subject=unsubscribe https://www.redhat.com/**mailman/listinfo/redhat-list<https://www.redhat.com/mailman/listinfo/redhat-list> -- Thanks and Regards Kavya.N(Koramangala) -- redhat-list mailing list unsubscribe mailto:redhat-list-request@redhat.com?subject=unsubscribe https://www.redhat.com/mailman/listinfo/redhat-list !DSPAM:4e7c13cf191041001980966! -- redhat-list mailing list unsubscribe mailto:redhat-list-request@redhat.com?subject=unsubscribe https://www.redhat.com/mailman/listinfo/redhat-list |
kickstart installation error
So I'm not sure I understand. You say installation is happening? Does that mean you successfully install RHEL5 and then can't boot into runlevel 5?
Joshua A. Richardson MIS Operations Support (703)-272-1761 - Desk (202)-400-1733 - Cell -----Original Message----- From: redhat-list-bounces@redhat.com [mailto:redhat-list-bounces@redhat.com] On Behalf Of kavya Sent: Friday, September 23, 2011 12:47 AM To: General Red Hat Linux discussion list Subject: kickstart installation error Hi List, I am trying to install rhel5 using kickstart, I have created a kickstart file and provided it using ftp, installation is happening but once the system boots it is booting into init level 1 and when I tried to switch to init 5 it is giving error "x is respawing high disabled for 5 minutes" Can I get the solution for this???? Thanks Kavya -- redhat-list mailing list unsubscribe mailto:redhat-list-request@redhat.com?subject=unsubscribe https://www.redhat.com/mailman/listinfo/redhat-list -- redhat-list mailing list unsubscribe mailto:redhat-list-request@redhat.com?subject=unsubscribe https://www.redhat.com/mailman/listinfo/redhat-list |
kickstart installation error
yes exactly.....
On Fri, Sep 23, 2011 at 7:27 AM, Richardson, Joshua A. < Joshua.Richardson@gd-ais.com> wrote: > So I'm not sure I understand. You say installation is happening? Does > that mean you successfully install RHEL5 and then can't boot into runlevel > 5? > > Joshua A. Richardson > MIS Operations Support > (703)-272-1761 - Desk > (202)-400-1733 - Cell > > > -----Original Message----- > From: redhat-list-bounces@redhat.com [mailto: > redhat-list-bounces@redhat.com] On Behalf Of kavya > Sent: Friday, September 23, 2011 12:47 AM > To: General Red Hat Linux discussion list > Subject: kickstart installation error > > Hi List, > > > I am trying to install rhel5 using kickstart, > I have created a kickstart file and provided it using ftp, installation is > happening but once the system boots it is booting into init level 1 > and when I tried to switch to init 5 it is giving error "x is respawing > high > disabled for 5 minutes" > Can I get the solution for this???? > > > > Thanks > > Kavya > -- > redhat-list mailing list > unsubscribe mailto:redhat-list-request@redhat.com?subject=unsubscribe > https://www.redhat.com/mailman/listinfo/redhat-list > > -- > redhat-list mailing list > unsubscribe mailto:redhat-list-request@redhat.com?subject=unsubscribe > https://www.redhat.com/mailman/listinfo/redhat-list > -- Thanks and Regards Kavya.N(Koramangala) -- redhat-list mailing list unsubscribe mailto:redhat-list-request@redhat.com?subject=unsubscribe https://www.redhat.com/mailman/listinfo/redhat-list |
| All times are GMT. The time now is 05:10 AM. |
VBulletin, Copyright ©2000 - 2013, Jelsoft Enterprises Ltd.
Content Relevant URLs by vBSEO ©2007, Crawlability, Inc.