- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- patch depot and execution
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 12:53 PM
09-27-2001 12:53 PM
patch depot and execution
for i in PH*
>do
>sh $i
>done
but i keep getting "execute permission denied"
I did a chmod on the patches and they list drwxrwxrwx 6 root sys PHKL_*****
Why can't i execute these. i try them one at a time and get the same message.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-27-2001 01:01 PM
09-27-2001 01:01 PM
Re: patch depot and execution
look at the last answer by Ramesh... He recommends not using sh $i but swcopy...
See if that works for you:
http://forums.itrc.hp.com/cm/QuestionAnswer/1,1150,0x53ec660142b2d5118ff10090279cd0f9,00.html
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-27-2001 01:05 PM
09-27-2001 01:05 PM
Re: patch depot and execution
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-27-2001 01:05 PM
09-27-2001 01:05 PM
Re: patch depot and execution
If I read your post correctly, you indicate the the patches are really directories! This would give the execute permission denied error. "PH*" should expand to a list of files.
Regards!
...JRF...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-27-2001 01:55 PM
09-27-2001 01:55 PM
Re: patch depot and execution
Take 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.
thanks
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-27-2001 02:27 PM
09-27-2001 02:27 PM
Re: patch depot and execution
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:52 PM
09-27-2001 04:52 PM
Re: patch depot and execution
First of all looks like you have PH*.depot files,
when you try to unshar *.depot files you get "Execute permission denied" errors.
If the patches have not been unsharred, then there will be no extension (.depot or .text)
if not just do
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