- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: create a depot from CDROM
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
06-05-2002 01:28 PM
06-05-2002 01:28 PM
create a depot from CDROM
This is the procedure I am trying to do..
1. swreg -l depot /cdrom/HWE1100
2. for i in `cat /tmp/patchlist.txt`
do
swcopy /cdrom/HWE1100 $i @ /tmp/Patches
done.
* Session started for user "root@wts".
* Beginning Selection
* "wts:/tmp/Patches": This target does not exist and
will be created.
ERROR: There is currently no depot software on host "wts" at
location "/var/spool/sw". Make sure that an absolute pathname
is specified for location (beginning with "/").
* Source connection failed for "wts:/var/spool/sw".
WARNING: More information may be found in the daemon logfile on this
target (default location is wts:/var/adm/sw/swagentd.log).
* Selection had errors.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-05-2002 01:38 PM
06-05-2002 01:38 PM
Re: create a depot from CDROM
first do
# mkdir /tmp/Patches
# swreg -l depot @/tmp/Patches
Then Issue the swcopy command.
#swcopy /cdrom/HWE1100 $i @ /tmp/Patches
Piyush
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-05-2002 01:53 PM
06-05-2002 01:53 PM
Re: create a depot from CDROM
you may like to look at this :
http://forums.itrc.hp.com/cm/QuestionAnswer/1,,0xf46c7e990647d4118fee0090279cd0f9,00.html
for i in `ls PH*`
do
sh $i
swcopy -s
done
Manoj Srivastava
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-05-2002 01:56 PM
06-05-2002 01:56 PM
Re: create a depot from CDROM
Sorry
The expample is when u dont have s/w depot registered , but then u can use the same logic and command sequence .
Manoj srivastava
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-06-2002 05:22 AM
06-06-2002 05:22 AM
Re: create a depot from CDROM
I don't think swreg command worked it gives and error currently no software depot...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-06-2002 05:31 AM
06-06-2002 05:31 AM
Re: create a depot from CDROM
Try,
swcopy -s /cdrom/HWE1100 \* @ /tmp/depot
Hope this helps.
Regds
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-06-2002 05:36 AM
06-06-2002 05:36 AM
Re: create a depot from CDROM
Use option '-s source' with the swcopy command. By default the swcopy takes the source as /var/spool/sw and -s overrides this default.
# swcopy -s /cdrom/...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-06-2002 05:49 AM
06-06-2002 05:49 AM
Re: create a depot from CDROM
set your display variable and run swcopy
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-06-2002 05:51 AM
06-06-2002 05:51 AM
Re: create a depot from CDROM
Just a thought , if you are messed up with the command line , try using the menu.
Manoj Srivastava
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-06-2002 06:16 AM
06-06-2002 06:16 AM
Re: create a depot from CDROM
I believe you can accomplish what you want to do with a single swcopy command:
swcopy -s /cdrom/HWE1100 -f /tmp/patchlist.txt @ /tmp/Patches
I hope this helps...
Dave