- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - Linux
- >
- Bootnet Image for Red Hat Enterprise Linux 2.1 ES ...
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
04-06-2004 03:14 AM
04-06-2004 03:14 AM
Bootnet Image for Red Hat Enterprise Linux 2.1 ES U3
I was wondering it is possible to modify the bootnet.img image or if there is a HP representative who can post a U3 compatiable bootnet.img file?
Many thanks in advance for your advice or assistance,
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-08-2004 03:00 AM
04-08-2004 03:00 AM
Re: Bootnet Image for Red Hat Enterprise Linux 2.1 ES U3
1) mount the U3 bootnet.img up and get the initrd.img out of it to modify it.
2) modify the initrd.img to add the bcm5700 driver
3) package the initrd.img back in the bootnet.img and write the file to disk
Ok, that part wasn't as involved. Here's exactly what I did, hopefully it will make it easier for you:
# mount /dev/cdrom /mnt
# cp /mnt/images/bootnet.img /root
# umount /mnt
# mount -t msdos -o loop=/dev/loop0 /root/bootnet.img /mnt
# cp /mnt/initrd.img /root
# umount /mnt
# gunzip < initrd.img > initrd
# mount -t ext2 -o loop=/dev/loop0 /mnt
# cd /mnt/modules
# cp modules.cgz module-info /root
# cd /root
# gunzip < modules.cgz >modules.cpio
# cpio -i --make-directories
# rm eepro100.o pcnet32.o 3c59x.o
# cp /path/to/bcm5700.o .
# cd /root
# rm modules.cpio modules.cgz
# ls 2.4.9-e.34BOOT/* > file-list
# cpio -o
# gzip -9
Edit module info to look like this:
Version 0
bcm5700
eth
"HP Broadcom Driver"
# cp module-info modules.cgz /mnt/modules
# umount /mnt
# gzip -9
# mount -t msdos /root/bootnet.img /mnt
# cp initrd.img /mnt
# umount /mnt
# dd if=/root/bootnet.img of=/dev/fd0
Voila!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-15-2004 10:30 PM
04-15-2004 10:30 PM
Re: Bootnet Image for Red Hat Enterprise Linux 2.1 ES U3
Many thanks, this was excellent information. I have completed the process and now have a functional bootnet.img, but I am having issues with the bcm5700 module itself.
At the Installation Method screen and after selecting the 'NFS image', I am receiving a error 'Failed to insert bcm5700 module'. If I F3 across to the install screen I see the following:
*starting to STEP_URL
* going to insmod bcm5700.o (path is NULL)
error 2 reading header: cpio: bad Magic
* goto url (null)
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-11-2004 01:21 AM
05-11-2004 01:21 AM
Re: Bootnet Image for Red Hat Enterprise Linux 2.1 ES U3
cpio -oc < modules.cpio > modules.cgz
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-11-2004 11:26 AM
05-11-2004 11:26 AM