- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- ".depot" files not recognized by SDUX
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
05-11-2002 11:04 AM
05-11-2002 11:04 AM
"There currently no depot software on host "hp1' at location /var/spool/sw Make sure an absolute pathname is specified for location...
has anyone seen this problem.. I can install from CDs and tape fine but not from a ".depot" file.
Thanks in advance...
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-11-2002 11:09 AM
05-11-2002 11:09 AM
Re: ".depot" files not recognized by SDUX
Did you give the full path ? After invoking swinstall, give the full path of the depot in the target window:
/var/adm/sw/install.depot
Also register the depot with 'swreg' command. See the man pages for more details:
# man swreg
HTH,
Shiju
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-11-2002 11:33 AM
05-11-2002 11:33 AM
Re: ".depot" files not recognized by SDUX
# /sbin/init.d/swagentd stop
# /sbin/init.d/swagentd start
===> restart swagent daemon
# swreg -l depot /var/spool/sw
===> register the depot
# swinstall -s /var/spool/sw
===> try installing it again
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-11-2002 01:00 PM
05-11-2002 01:00 PM
Re: ".depot" files not recognized by SDUX
If you mean for example PHKL_23456
You have to select source /var/spool/sw/PHKL_23456.depot to install succesfully this .depot file.
It should not be needed to swreg.
But you can always try that as well.
C.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-11-2002 05:24 PM
05-11-2002 05:24 PM
Re: ".depot" files not recognized by SDUX
# #/usr/sbin/swagentd -r
If you have to kill an old swinstall process by hand, you will also have to remove the lock file:
# rm /var/adm/sw/products/swlock
then restart swagentd
.: remember PAP! a.k.a Pliz assign points :)
T??
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-11-2002 09:44 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-12-2002 03:17 AM
05-12-2002 03:17 AM
Re: ".depot" files not recognized by SDUX
since u mentioned several depot files, u need to create a depot of all these files and try to install. iam writing a procedure.
suppose u downloaded two patches into /tmp.
PHKL_20186.html
PHKL_20333.html
# cd /tmp
# sh PHKL_20186.html
#sh PHKL_20333.html
this will create text and depot files of respective patches. copy all depot files into a depot directory (/tmp/depot) with the following command.
# swcopy -x enforce_dependencies=false -s /tmp/PHKL_20186.depot \* @ /tmp/depot
similarly for the other depot file also.
register ur depot
#swreg -l depot /tmp/depot
install depot
#swinstall -s /tmp/depot
hope this helps.
regds
ravi
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-12-2002 03:55 AM
05-12-2002 03:55 AM
Re: ".depot" files not recognized by SDUX
First, let me tell you I experiend the same problem through SAM and it was because I was not using the FULL PATH (directory and depot file name included).
The recommendation I've seen from HP is to place the files (unshared) into a tmp directory (you really do not want to start placing patches in your system directories. We used something like "/tmp/patches/depot".
Then, if the patch still the compressed version (simply PHSS_#####), unshar to extract the standard two (.depot and .txt), intructions and .depot files, i.e.:
cd /tmp/patches/depot
sh PHSS_26262
Should create:
PHSS_26262.depot
PHSS_26262.txt
Run the swintall through the command line or use SAM, i.e. (normally provided in HP instructions -- for SAM you need to use the full path "/tmp/patches/depot/PHSS_26262.depot):
swinstall -x autoreboot=true -x patch_match_target=true -s /tmp/patches/depot/PHSS_26262.depot
Be aware of the options given here, read "man swintall".
I hope this is some help!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-14-2002 05:16 PM
05-14-2002 05:16 PM
Re: ".depot" files not recognized by SDUX
Thanks very much for all of the great tips on resolving this problem I have. After going through and trying the different suggestions, Mr. T G Manikandan's suggestion of registring the actual application to be installed worked ie.. swreg -l depot /var/spool/sw/gcc.depot
and then issuing the install command using the same path and depot file registered as follows: swinstall -s /var/spool/sw/gcc.depot
these worked like a charm...
Mr. T G Manikandan and ALL, thank you VERY MUCH!
Frank
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-15-2002 01:56 AM
05-15-2002 01:56 AM