- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- adding one more file for the insallation
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
07-04-2002 01:09 PM
07-04-2002 01:09 PM
I noticed that in the beginning of the ignite process, the clients gets minimal files that it needs for its operation, maybe its possible to send the files I want with this? (I think its called mini-system or something like that)
10x,
Noam
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-04-2002 07:10 PM
07-04-2002 07:10 PM
Re: adding one more file for the insallation
In /var/opt/ignite/INDEX
cfg file should be added into like
/var/opt/ignite/data/B.11.00/test_cfg
frankly I never did this , but I am able to install any depot files.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-04-2002 11:34 PM
07-04-2002 11:34 PM
Re: adding one more file for the insallation
But thats not what I want.
I want that ignite will copy the client machine, *one more* file that I choose.
Noam
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-07-2002 11:11 PM
07-07-2002 11:11 PM
Re: adding one more file for the insallation
just add the file(s) to the gzipped tar archive "SYSCMDS". You find it in /opt/ignite/data/Rel_B.11.00 for example.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-08-2002 10:12 AM
07-08-2002 10:12 AM
SolutionHere is a way to add a file to SYSCMDS (11.11 in this example):
# unpack SYSCMDS
#
mkdir /var/tmp/tmproot
cd /var/tmp/tmproot
gzcat /opt/ignite/data/Rel_B.11.11/SYSCMDS | pax -pe -rf -
#
# add file in the pseudo root
#
#
# repackage
#
cd /var/tmp/tmproot
tar -vcfb - 20 . | gzip -9 -c > /var/tmp/syscmds
Then move into place in the appropriate directory.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-08-2002 10:23 AM
07-08-2002 10:23 AM
Re: adding one more file for the insallation
10x for your replies.
I might try to check them out.
Just for the record, I had found another way to solve this one (and I believe it's quite nice):
You create a shar archive of the file you want to copy.
Lets say, "tcsh.shar".
Now you edit the head of the file, add (or change) its interepeter to be "/sbin/sh" (so it can run in a minimal environment) and tells it to "cd /usr/bin "where I want to extract the real tcsh.
Now as you guess, shar(1) is actually a shell script... so I just add it to config.local
as a post_config_script... and it works like charm :-)
Noam