- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: creating a depot
Categories
Company
Local Language
Forums
Discussions
Knowledge Base
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Forums
Discussions
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
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-29-2004 10:38 AM
11-29-2004 10:38 AM
we are trying to create a depot and copy a couple of patch's to this depot.
From the manual the /tmp/depot is created then we run;
# swcopy -s /depot/11.00/PH \* /tmp/depot.
could someone explain what we are doing wrong.
Thanks
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-29-2004 10:54 AM
11-29-2004 10:54 AM
Solutiondepname=/tmp/mydepot.depot
export depname
# for i i
# do
# sh $i
# done
for i in
do
swcopy -s ${PWD}/$i \* @ ${depname}
done
The commented part unshars the patches.
All patches must be in one directory and you must be in that directory.
Then this command set will build you a depot named /tmp/mydepot.depot
swinstall -s /tmp/mydepot.depot \*
Will install your newly created depot
add -x autoreboot=true if the depot includes patches that require a reboot.
SEP
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-29-2004 11:06 AM
11-29-2004 11:06 AM
Re: creating a depot
To copy a patch into a depot use:
# swcopy -s /
Cheers
Con
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-29-2004 11:11 AM
11-29-2004 11:11 AM
Re: creating a depot
second point, you must specify @ symbol before destination. So it looks like this :
for patchname in ...
do
swcopy -s $patchname \* @ /tmp/depot
done
where ... stands for the patches list, separated by spaces.
be carefull on where spaces are.
Regards,
Fred
"Reality is just a point of view." (P. K. D.)
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-29-2004 11:11 AM
11-29-2004 11:11 AM
Re: creating a depot
we had this procedure, we were trying to copy a that was already in another depot but did not have the .depot
make sense?
Tahnks again