- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- How to create a depot?
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
10-03-2003 02:40 AM
10-03-2003 02:40 AM
How to create a depot?
How can I make one myself?
Sometime you cannot find a ready HP depot for a GNU pack, and sometime the newer version of the pack is wanted, but not available in depot format. I know I can compile and install the pack directly.
Jun
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-03-2003 02:46 AM
10-03-2003 02:46 AM
Re: How to create a depot?
and put it to depot:
1. Create psf-file for this package: my.psf
2. Create a depot for this package and others:
#swpackage -v -s my.psf @ /var/spool/sw
3.Register this depot:
#swreg -l depot /var/spool/sw
4.Install package from this depot:
#swinstall -s /var/spool/sw
Regards,Stan
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-03-2003 02:48 AM
10-03-2003 02:48 AM
Re: How to create a depot?
http://forums1.itrc.hp.com/service/forums/parseCurl.do?CURL=%2Fcm%2FQuestionAnswer%2F1%2C%2C0xed731012aa92d5118ff10090279cd0f9%2C00.html&admit=716493758+1065192371501+28353475
Regards,
Sergejs
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-03-2003 03:01 AM
10-03-2003 03:01 AM
Re: How to create a depot?
cd /dir (* where you've ftp'd patches *)
for i in PH*
do
sh $i
done
mkdir /tmp/PATCH
(* Still in /dir *)
for i in PH*.depot
do
swcopy -s ${PWD}/$i \*
done
verify depot:
swlist -d @ /tmp/patches
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-03-2003 03:14 AM
10-03-2003 03:14 AM
Re: How to create a depot?
HTH
Bruno