- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: avoid starting sam using swcopy tocreate a dep...
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-12-2002 03:43 AM
04-12-2002 03:43 AM
avoid starting sam using swcopy tocreate a depot from many patches
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-12-2002 03:52 AM
04-12-2002 03:52 AM
Re: avoid starting sam using swcopy tocreate a depot from many patches
You can install all patch in one procedure. Try this:
1) Unshare all patch using:
for i in PH*
do
sh $i
done
2) Combine the separate depots into one depot:
mkdir /tmp/patches
for i in PH*.depot
do
swcopy -s ${PWD}/$i \* @ /tmp/patches
done
4) Verify the contents of the depots:
swlist -d @ /tmp/patches
5) Install patch with swinstall, interactive method.
Good Luck
Frank.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-12-2002 03:54 AM
04-12-2002 03:54 AM
Re: avoid starting sam using swcopy tocreate a depot from many patches
# swcopy -d -xlayout_version=1.0 -s `pwd`/PATCHES.depot \* @ /depot
That is I have never seen any SAM nor interactive swcopy when using it.
If this don't help lease mention what you commandline is.
Regards,
Trond
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-15-2002 07:01 AM
04-15-2002 07:01 AM
Re: avoid starting sam using swcopy tocreate a depot from many patches
Is there a space between the x and the layout_version
And the /patches at the end, is that a directory where the current unsharred patches are located ?
Thx
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-15-2002 09:58 PM
04-15-2002 09:58 PM
Re: avoid starting sam using swcopy tocreate a depot from many patches
yes to both. The command should/could read:
swcopy -d -x layout_version=1.0 -s `pwd`/PATCHES.depot \* @ /var/adm/sw/mydepot
Regards,
Trond
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-16-2002 06:20 AM
04-16-2002 06:20 AM
Re: avoid starting sam using swcopy tocreate a depot from many patches
mark