- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - Linux
- >
- Add Custom RPM's to KickStart cfg file
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
Discussions
Discussions
Discussions
Forums
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
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
тАО01-15-2007 06:57 AM
тАО01-15-2007 06:57 AM
Add Custom RPM's to KickStart cfg file
-We are using iso images and Want the custom rpm's to be outside the iso images
Any help ?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО01-15-2007 07:11 AM
тАО01-15-2007 07:11 AM
Re: Add Custom RPM's to KickStart cfg file
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО01-15-2007 07:25 AM
тАО01-15-2007 07:25 AM
Re: Add Custom RPM's to KickStart cfg file
I have various kickstart cfg files for many several different installations and that's how I install additional rpms.
In %post section I mount a location that holds RPM packages (and lots of configuration files) and then I use rpm command (rpm -Uvh path/packagename) to install the packages.
Best practice is to test it on a pilot system first, so that you'll know what to expect in "real life".
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО01-15-2007 07:29 AM
тАО01-15-2007 07:29 AM
Re: Add Custom RPM's to KickStart cfg file
Thanks
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО01-15-2007 08:04 AM
тАО01-15-2007 08:04 AM
Re: Add Custom RPM's to KickStart cfg file
%post --nochroot
mkdir /mnt/temp
mount 10.0.0.1:/path/to/the/rpms /mnt/temp
rpm -ivh /mnt/temp/mypack.rpm
umount /mnt/temp
--nochroot is not mandatory in that case, but it may be safe to have it if you want to do more than these 5 lines.
hth
Jerome
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО01-15-2007 09:43 AM
тАО01-15-2007 09:43 AM