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
09-18-2001 11:31 AM
09-18-2001 11:31 AM
Patches
swinstall -x autoreboot=true -x patch_match_target=true \ -s /tmp/patches/PHCO_23963.depot
ERROR: There is currently no depot software on host "hpk4603" at
location "/var/spool/sw".
* Source connection failed for "hpk4603:/var/spool/sw".
I have a couple patches to load, is there a way to append all the patches together into one depot and then load that one depot?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-18-2001 11:37 AM
09-18-2001 11:37 AM
Re: Patches
To unshar and collect a series of patches into a depot and load them in mass, do this:
# cd /tmp
# for X in PH*
> do
> sh $X
> done
# mkdir /tmp/patches
# for X in /tmp/PH*.depot
> do
> swcopy -s /tmp/${X} \* @ /tmp/patches
> done
...then use /tmp/patches as your depot for 'swinstall'.
Regards!
...JRF...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-18-2001 11:38 AM
09-18-2001 11:38 AM
Re: Patches
Looks like name resolution problem to me. Is your system able to resolve the name and IP.
nslookup
>server_name
>ip_address
You can create a single package and load all the patches at the same time. use swpackage to do this. Do "man swpackage" for more info.
hope this helps.
thanks
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-18-2001 11:38 AM
09-18-2001 11:38 AM
Re: Patches
You could use the swcopy command to create a depot with all the patches that you want to install together. Syntax would be:
swcopy -s
This will create a directory named
swinstall -s
select your patches and install.
Also in the swinstall command you listed, you seem to have a stray \...or was this indicating continuation of line?
-Santosh
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-18-2001 11:40 AM
09-18-2001 11:40 AM
Re: Patches
I think that should be -x match_target=true and yes you can copy many patches to a depot (and it does not have to be /var/adm/swdepot)
and then mark as many of them for install as you like using swinstall.
The easist method is to use SAM->Software Management->Copy Software to Depot
to create the depot and add patches to it
Then when ready to install, you specify the depot location as the source. This depot can also be accessed by remote machines so that one depot can serve many clients.
Clay