HPE GreenLake Administration
- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: Ignite recovery
Operating System - HP-UX
1833752
Members
2802
Online
110063
Solutions
Forums
Categories
Company
Local Language
back
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
back
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
Blogs
Information
Community
Resources
Community Language
Language
Forums
Blogs
Go to solution
Topic Options
- 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-18-2004 04:33 AM
11-18-2004 04:33 AM
Hello guru's,
any help will be greatly appreciated, and points will be awarded!!
What on earth is the /sbin/net_cfg_prep file and what is it supposed to do?? This is an Ignite related file (I think). This file was identified by running a:
strings /opt/ignite/boot/INSTALLFS
Thanks much!
any help will be greatly appreciated, and points will be awarded!!
What on earth is the /sbin/net_cfg_prep file and what is it supposed to do?? This is an Ignite related file (I think). This file was identified by running a:
strings /opt/ignite/boot/INSTALLFS
Thanks much!
Solved! Go to Solution.
3 REPLIES 3
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-18-2004 04:43 AM
11-18-2004 04:43 AM
Solution
It is a part of the Ignite-UX bring up code that does _not_ get installed on the final system. It is _only_ used during the ramdisk execution time.
If you want to peek inside of *FS files ( not recommended to change them)
lvcreate -l 4 -n ifs vg00
dd if=INSTALLFS of=/dev/vg00/rifs bs=10k
mount /dev/vg00/ifs /var/tmp/ifs
find /var/tmp/ifs
If you want to peek inside of *FS files ( not recommended to change them)
lvcreate -l 4 -n ifs vg00
dd if=INSTALLFS of=/dev/vg00/rifs bs=10k
mount /dev/vg00/ifs /var/tmp/ifs
find /var/tmp/ifs
etouq ot hguone revelc ton m'i
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-18-2004 04:52 AM
11-18-2004 04:52 AM
Re: Ignite recovery
That file does not exist on my systems to are Ignite servers or clients.
The location is where one would find a binary. Perhaps its a temporary file that Ignite needs during recovery.
SEP
The location is where one would find a binary. Perhaps its a temporary file that Ignite needs during recovery.
SEP
Steven E Protter
Owner of ISN Corporation
http://isnamerica.com
http://hpuxconsulting.com
Sponsor: http://hpux.ws
Twitter: http://twitter.com/hpuxlinux
Founder http://newdatacloud.com
Owner of ISN Corporation
http://isnamerica.com
http://hpuxconsulting.com
Sponsor: http://hpux.ws
Twitter: http://twitter.com/hpuxlinux
Founder http://newdatacloud.com
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-24-2004 08:57 AM
11-24-2004 08:57 AM
Re: Ignite recovery
I use these steps to see what's in IINSTALLFS:
Step 1) See that we have IINSTALLFS:
----------------------------------------------------
installfs=/opt/ignite/boot/Rel_B.11.23/IINSTALLFS
cd $(dirname ${installfs}) ; ll $(basename ${installfs})
-r-xr-xr-x 1 bin bin 36044800 Oct 7 14:42 IINSTALLFS
Step 2) Create a logical for IINSTALLFS:
------------------------------------------------------
sizeNmb=$(ls -l ${installfs} | awk '{print int($5/1024/1024+1)}')
lvcreate -L ${sizeNmb} -n IINSTALLFS_test /dev/vg00
Step 3) Copy IINSTALLFS to the logicial volume:
-----------------------------------------------------------------
sizeNbytes=$(ls -l ${installfs} | awk '{print $5}')
dd if=${installfs} of=/dev/vg00/rIINSTALLFS_test bs=${sizeNbytes}
1+0 records in
1+0 records out
Step 4) Create a mount-point and mount IINSTALLFS:
-------------------------------------------------------------------------
mkdir /IINSTALLFS_test
mount /dev/vg00/IINSTALLFS_test /IINSTALLFS_test
Step 5) Generate a listing of IINSTALLFS:
--------------------------------------------------------
ls -alR /IINSTALLFS_test
Step 1) See that we have IINSTALLFS:
----------------------------------------------------
installfs=/opt/ignite/boot/Rel_B.11.23/IINSTALLFS
cd $(dirname ${installfs}) ; ll $(basename ${installfs})
-r-xr-xr-x 1 bin bin 36044800 Oct 7 14:42 IINSTALLFS
Step 2) Create a logical for IINSTALLFS:
------------------------------------------------------
sizeNmb=$(ls -l ${installfs} | awk '{print int($5/1024/1024+1)}')
lvcreate -L ${sizeNmb} -n IINSTALLFS_test /dev/vg00
Step 3) Copy IINSTALLFS to the logicial volume:
-----------------------------------------------------------------
sizeNbytes=$(ls -l ${installfs} | awk '{print $5}')
dd if=${installfs} of=/dev/vg00/rIINSTALLFS_test bs=${sizeNbytes}
1+0 records in
1+0 records out
Step 4) Create a mount-point and mount IINSTALLFS:
-------------------------------------------------------------------------
mkdir /IINSTALLFS_test
mount /dev/vg00/IINSTALLFS_test /IINSTALLFS_test
Step 5) Generate a listing of IINSTALLFS:
--------------------------------------------------------
ls -alR /IINSTALLFS_test
What could possibly go wrong?
The opinions expressed above are the personal opinions of the authors, not of Hewlett Packard Enterprise. By using this site, you accept the Terms of Use and Rules of Participation.
Company
Events and news
Customer resources
© Copyright 2025 Hewlett Packard Enterprise Development LP