Re: [CentOS] kickstart question

2009-06-13 Thread Ian Forde
On Fri, 2009-06-12 at 14:54 +0200, Rainer Duffner wrote: Jerry Geis schrieb: Hi all, I have a kickstart file that works for /dev/sda. I now need to detect an HP server and use /dev/cciss instead of hard coded /dev/sda. How can I detect what the name of the device is and use

[CentOS] kickstart question

2009-06-12 Thread Jerry Geis
Hi all, I have a kickstart file that works for /dev/sda. I now need to detect an HP server and use /dev/cciss instead of hard coded /dev/sda. How can I detect what the name of the device is and use /dev/cciss and not /dev/sda? Jerry ___ CentOS

Re: [CentOS] kickstart question

2009-06-12 Thread Rainer Duffner
Jerry Geis schrieb: Hi all, I have a kickstart file that works for /dev/sda. I now need to detect an HP server and use /dev/cciss instead of hard coded /dev/sda. How can I detect what the name of the device is and use /dev/cciss and not /dev/sda? Jerry

Re: [CentOS] kickstart question

2009-06-12 Thread Ross Walker
On Jun 12, 2009, at 8:24 AM, Jerry Geis ge...@pagestation.com wrote: Hi all, I have a kickstart file that works for /dev/sda. I now need to detect an HP server and use /dev/cciss instead of hard coded /dev/sda. How can I detect what the name of the device is and use /dev/cciss and not

Re: [CentOS] kickstart question

2009-06-12 Thread Joseph L. Casale
I have a kickstart file that works for /dev/sda. I now need to detect an HP server and use /dev/cciss instead of hard coded /dev/sda. If you already know where you want the install, simply replace 'sda' or whatever it was with 'cciss/c0d0' or whatever controller/disc you intend. jlc

Re: [CentOS] kickstart question

2009-05-05 Thread John Kennedy
On Monday 04 May 2009 18:28:16 Jerry Geis wrote: Hi all, My kickstart section for packages is %packages @base-x @dialup @gnome-desktop @base @development-libs @core snip I do not have package @mysql in the list - yet after install rpm -qa | grep -i mysql reports mysql loaded. how

[CentOS] kickstart question

2009-05-04 Thread Jerry Geis
Hi all, My kickstart section for packages is %packages @base-x @dialup @gnome-desktop @base @development-libs @core @x-software-development @mail-server @development-tools @web-server @graphical-internet @sound-and-video @legacy-software-development @editors @smb-server @ftp-server

Re: [CentOS] kickstart question

2009-05-04 Thread Joshua Baker-LePain
On Mon, 4 May 2009 at 1:28pm, Jerry Geis wrote I do not have package @mysql in the list - yet after install rpm -qa | grep -i mysql reports mysql loaded. how can I stop mysql from loading from anaconda? Type 'yum remove mysql' and see what depends on it. I'd guess something in the

Re: [CentOS] kickstart question

2009-05-04 Thread Jerry Geis
/ I do not have package @mysql in the list - yet after install rpm -qa | // grep -i mysql reports mysql loaded. // // how can I stop mysql from loading from anaconda? / Type 'yum remove mysql' and see what depends on it. I'd guess something in the gnome-desktop group is bringing it in as

Re: [CentOS] kickstart question

2009-05-04 Thread Joshua Baker-LePain
On Mon, 4 May 2009 at 1:38pm, Jerry Geis wrote / I do not have package @mysql in the list - yet after install rpm -qa | // grep -i mysql reports mysql loaded. // // how can I stop mysql from loading from anaconda? / Type 'yum remove mysql' and see what depends on it. I'd guess something

Re: [CentOS] kickstart question

2009-05-04 Thread John R Pierce
Jerry Geis wrote: / I do not have package @mysql in the list - yet after install "rpm -qa | // grep -i mysql" reports mysql loaded. // // how can I stop mysql from loading from anaconda? / Type 'yum remove mysql' and see what depends on it. I'd guess something

[CentOS] kickstart question with 2 network cards

2008-05-19 Thread Jerry Geis
I am using kickstart to automate installs. working nicely. I now have a box with 2 NIC cards and I am getting prompted for which nick to use. I have a line like: network --device eth0 --bootproto dhcp --hostname tmp.msgnet.com in my kickstart. This line does not seem to be enough to say

Re: [CentOS] kickstart question with 2 network cards

2008-05-19 Thread Fabian Arrotin
On Mon, 19 May 2008, Jerry Geis wrote: I am using kickstart to automate installs. working nicely. I now have a box with 2 NIC cards and I am getting prompted for which nick to use. I have a line like: network --device eth0 --bootproto dhcp --hostname tmp.msgnet.com in my kickstart. This

[CentOS] kickstart question

2008-04-30 Thread Jerry Geis
I have a couple lines like: part / --ondisk=sda --fstype ext3 --size=2 --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

Re: [CentOS] kickstart question

2008-04-30 Thread Joshua Baker-LePain
On Wed, 30 Apr 2008 at 2:46pm, Jerry Geis wrote I have a couple lines like: part / --ondisk=sda --fstype ext3 --size=2 --asprimary part swap --ondisk=sda --size=4000 --asprimary part /home --ondisk=sda --fstype ext3 --size=1 --asprimary --grow in my kickstart file.

Re: [CentOS] kickstart question

2008-04-30 Thread Ben
Jerry Geis wrote: I have a couple lines like: part / --ondisk=sda --fstype ext3 --size=2 --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