- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - Linux
- >
- RH / Kickstart issues
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-09-2004 07:24 AM
11-09-2004 07:24 AM
When I load RH WS3.0 U1, this all works fine and my nodes load as expected without problems(see question below).
If I attempt to load RHWS3.0 U2 or U3, none of this works and I get the standard install menu choices on the console of each node (i.e. none of my Kickstart choices are loaded). Did something change from U1 to U2/U3 that prevents this sort of auto load from happening?
2) When reloading my ia32 nodes after the root disk has been zeroed out, the kickstart installation process asks me if I want to continue, possibly destroying the data on the disk (even though it's zero'd out). I presume this is because the partition table has been destroyed? Is there a way to "automate" the answering of this question ("Yes") so that all of my 128 nodes will auto load without intervention for this type of reload??
If anyone can assist it would be much aprreciated!
Mark
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-09-2004 08:14 AM
11-09-2004 08:14 AM
Re: RH / Kickstart issues
You can accomplish this by adding the below in your ks.cfg:
clearpart --all
This will remove all existing disk partitions.
Hope this helps.
Cheers,
John
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-09-2004 08:40 AM
11-09-2004 08:40 AM
SolutionIt seems that some options don't work very well (like --bootproto static), whereas new kickstart package isn't really supposed to change anything...
A good way round is to add, in your command section :
autostep
or :
interactive
They will both show you ks option and go to next step (interactive waits for your ok, autostep goes by itself) : you should be able to see where it blocks...
hth
J
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-09-2004 09:31 AM
11-09-2004 09:31 AM
Re: RH / Kickstart issues
It appears several of the kickstart parameters "slightly" changed from U1 to U2.
I'm loading U3 now. :)
Any thoughts on how to get around the second part of my question? We'd like to zero out the disk(s) each a customer is done with machine before we reload the OS, but having to answer the question slows the process down.
Again, many thanks!
Mark
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-09-2004 12:08 PM
11-09-2004 12:08 PM
Re: RH / Kickstart issues
Or you're saying it's already been zero'd out, and even though you've got 'clearpart --all', it's prompting you with the confirmation dialog?
Possibly in the zeroing-out phase, make a dummy partition with nothing on it or even formatted. it should not reach that area of logic.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-10-2004 01:10 AM
11-10-2004 01:10 AM
Re: RH / Kickstart issues
I need to remove at least the /boot partition, otherwise the node will attempt to boot from disk, rather than do a reload. I've tried to skip the first few blocks on the disk, but it still hits the confirmation question.
Mark
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-10-2004 03:08 AM
11-10-2004 03:08 AM
Re: RH / Kickstart issues
Couldn't you use in %pre section :
badblocks -w /dev/sda1 (assuming sda1 is your /boot ?)
Never tried it, but it would zero it, above erasing partitions.
What command do you use to zero it now ?
J
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-10-2004 03:55 AM
11-10-2004 03:55 AM
Re: RH / Kickstart issues
In this way, the customer is assured that it's all clean before we get it back.
I appreciate the feedback on this!
Mark
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-10-2004 02:58 PM
11-10-2004 02:58 PM
Re: RH / Kickstart issues
zerombr yes
and see what it does.
If that still fails, build one up with interactivity, then view the 'anaconda-ks.cfg' and see what flags there are that you're not aleady using.
To give us a bit mroe of an idea of what's going on, try also attaching your 'ks.cfg' so we can have a look at what it's trying to do.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-11-2004 01:25 AM
11-11-2004 01:25 AM
Re: RH / Kickstart issues
That does it, thanks so much. I read right over that and didn't even see it.
Thanks to all for the help!
Mark