- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Finding the specific pakage with swinstall
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
11-26-2001 01:57 PM
11-26-2001 01:57 PM
Finding the specific pakage with swinstall
I use swinstall to connect to a software server and then try to find a specific package that I want to install. I find it very hard to look into each source path and see if the name of the desired package is in there. Is there a way that I can type in the name of a package (eg: netscape or LVM) and it will at least tell me what path I should look into?
Thanks for the help.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-26-2001 02:03 PM
11-26-2001 02:03 PM
Re: Finding the specific pakage with swinstall
By way of example, how about this:
# swlist -l file |grep -i glance|more
Regards!
...JRF...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-26-2001 02:04 PM
11-26-2001 02:04 PM
Re: Finding the specific pakage with swinstall
I don't think there is any easy way to find out the info you are looking for. You can do a telnet to the box and do a "ll" for the patch depot directories and locate the packge if you know the packge code B????? or something like that.
Hope this helps.
Regds
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-26-2001 02:08 PM
11-26-2001 02:08 PM
Re: Finding the specific pakage with swinstall
you can try,
swlist -d * @ Depot_Server:/path_to_depot
This will list all the packges on the depot.
Hope this helps.
Regds
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-26-2001 02:10 PM
11-26-2001 02:10 PM
Re: Finding the specific pakage with swinstall
live free or die
harry
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-26-2001 02:34 PM
11-26-2001 02:34 PM
Re: Finding the specific pakage with swinstall
I believe you're going to have to check each depot seperately. The following works on 11.0 but I don't know for certain on earlier OS levels (but I feel pretty good that it will):
List the registered depots on you software_server:
swlist -l depot @ software_server
If the depots aren't registered then you should use "swreg -l depot path_to_depot" on the software server to register them.
Now that you have the list of registered depots, list their contents:
swlist -d @ software_server:/path_to_depot
Repeat the last swlist for each depot you need to.
You can also specify the "-l" option to list filesets, products, or bundles. Example:
swlist -l fileset -d @ software_server:/path_to_depot
Now it's a simple process of grepping the output for the package you need.
Darrell
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-26-2001 02:40 PM
11-26-2001 02:40 PM
Re: Finding the specific pakage with swinstall
if you are on a remote system, do
#swlist -l depot @
This will list the depots present in swserver system
eg:/swdepot/11.11/OV
To list the products in the depot do
#swlist -d * @ swserver:/pathofdepot
eg: swlist -ld * @ swserver:/swdepot/11.11/OV
HTH
raj
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-26-2001 03:04 PM
11-26-2001 03:04 PM
Re: Finding the specific pakage with swinstall
If all depots are registered then use
#swlist -d @
Thanks.
Prashant.