- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: swreg error
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-27-2001 11:43 AM
09-27-2001 11:43 AM
Hello guys,
I'm trying to register a depot and I keep getting this message.
There is currently no depot software on host "xxx" at location "/tmp/patches".
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-27-2001 12:00 PM
09-27-2001 12:00 PM
Re: swreg error
what is the command you are using.
you should use
swreg -l depot @ /tmp/patches
Hope this helps.
thanks
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-27-2001 12:02 PM
09-27-2001 12:02 PM
Re: swreg error
http://forums.itrc.hp.com/cm/QuestionAnswer/1,1150,0xf77cdfe5920fd5118fef0090279cd0f9,00.html
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-27-2001 12:15 PM
09-27-2001 12:15 PM
Re: swreg error
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-27-2001 12:20 PM
09-27-2001 12:20 PM
Re: swreg error
I think that is what you want... right?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-27-2001 12:25 PM
09-27-2001 12:25 PM
Re: swreg error
Did you do a ptach analysis and dowloaded the file
If you are not using that and if you want to use the hp cutom patch manager tool follow the link below.
http://us-support.external.hp.com/wps/bin/doc.pl/sid=d9c52c72106f114f82
Hope this helps.
thanks
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-27-2001 12:41 PM
09-27-2001 12:41 PM
Re: swreg error
Have a look at the thread below.
http://docs.hp.com/cgi-bin/fsearch/framedisplay?top=/hpux/onlinedocs/B2355-90107/B2355-90107_top.html&con=/hpux/onlinedocs/B2355-90107/00/00/40-con.html&toc=/hpux/onlinedocs/B2355-90107/00/00/40-toc.html&searchterms=creating%20software%20package&queryid=20010927-134240
Hope this helps.
You can download the pdf of this from http://docs.hp.com
Thanks
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-27-2001 12:56 PM
09-27-2001 12:56 PM
SolutionFirst create a depot with all the patches together.
cd /tmp
for i in PH*
do
swcopy -s /tmp/$i \* @ /tmp/mypatches.depot
done
Once the depot is created you can use the make_bundler command (which is part of ignite/UX) or you can create a PSF file and package your bundle.
Look at the thread, can't get any easier than this ;)
http://forums.itrc.hp.com/cm/QuestionAnswer/1,1150,0x7086abe92dabd5118ff10090279cd0f9,00.html
-HTH
Ramesh
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-27-2001 02:30 PM
09-27-2001 02:30 PM
Re: swreg error
Either of these two links should help.
http://forums.itrc.hp.com/cm/QuestionAnswer/1,1150,0x48920cb17a32d5118fef0090279cd0f9,00.htm
http://forums.itrc.hp.com/cm/QuestionAnswer/1,1150,0xed731012aa92d5118ff10090279cd0f9,00.htm
HTH
-Michael
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-27-2001 04:53 PM
09-27-2001 04:53 PM
Re: swreg error
While working on another thread, i realized i made a mistake. This should definitely work
cd /tmp
for i in $(ls -1 PH* |egrep -v 'depot|text')
do
sh $i
done
for i in PH*.depot
do
swcopy -s /tmp/$i \* @ /tmp/mypatches.depot
done
-HTH
Ramesh
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-28-2001 04:26 AM
09-28-2001 04:26 AM
Re: swreg error
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-28-2001 06:55 AM
09-28-2001 06:55 AM
Re: swreg error
I would strongly recommend reading the guide
http://docs.hp.com/hpux/pdf/5967-3578.pdf
for patch management on HP-UX.
But this is the general procedure i follow,
1. Look for the patch(es) in the patch database,
2. look for dependencies (a Pen and paper is required to sort out the dependencies)
2a. download all the patches(including the dependencies)
3. when you down the patches are in shar format
Unshar them using sh Patchname, here if you have downloaded multiple patches you could do something like
cd /tmp (or whereever you have downloaded the patches)
for i in PH*
do
sh $i
done
4. Now for each patch you will have .depot and .text files. I generally look in the .text file to see if there are any special instructions. If i downloaded multiple patches, i create a depot to minimize reboots
cd /tmp
for i in PH*depot
do
swcopy -s /tmp/$i \* @ /tmp/mypatches.depot
done
This will create a depot with all the patches you downloaded. Sometimes swcopy complains about dependency errors, errors saying all the filesystems are not mounted, so you may have to give additional options to swcopy (man swcopy for all the options)
5. You are now ready to install the patches
swinstall -s /tmp/mypatches.depot
6. If the patches need a reboot, reboot the machine and after the machine is up, check to make sure all the patches are configured.
swlist -a state -l fileset |egrep -v "config|^#"
This should not return anything, if it returns any fileset in installed or transient state you may have to use swconfig to configure the unconfigured filesets.
That's it, this is in short what i normally do when i install the patches.
But like i said, read the doc i mentioned above.
-HTH
Ramesh
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-28-2001 06:57 AM
09-28-2001 06:57 AM
Re: swreg error
thanks a lot bro for all your time and effort. Your work is greatly appreciated.