- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: How to update swlist
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
01-24-2004 10:36 PM
01-24-2004 10:36 PM
How can I update the "swlist" listing to include software not installed by swinstall (SD-UX) tools, such as Oracle 8i or 9i ? This is only for documentation purposes,,,,
Thanks,,,,
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-24-2004 11:09 PM
01-24-2004 11:09 PM
Re: How to update swlist
You are going to have to write a script that looks elsewhere.
You could look for files of a certain type with the file command.
SEP
Owner of ISN Corporation
http://isnamerica.com
http://hpuxconsulting.com
Sponsor: http://hpux.ws
Twitter: http://twitter.com/hpuxlinux
Founder http://newdatacloud.com
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-25-2004 01:42 AM
01-25-2004 01:42 AM
Re: How to update swlist
you can not do that.
SD-UX commands automatically keep track of software management operations by creating an Installed Products Database (IPD) and various "catalog files" that contain information about the software on the system
regards
ravi
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-25-2004 01:48 AM
01-25-2004 01:48 AM
Re: How to update swlist
You'd have to create "dummy" pkgs that don't actually install anything but do put entries into the IPD (Installed Product Database)
Here's a TKB doc on how to do this for a truly dummy pkg, but it'll give you the idea on what needs to be done:
http://www1.itrc.hp.com/service/cki/search.do?category=c0&mode=id&searchString=KBRC00003721&searchCrit=allwords&docType=Security&docType=Patch&docType=EngineerNotes&docType=BugReports&docType=Hardware&docType=ReferenceMaterials&docType=ThirdParty&search.x=31&search.y=7
Document ID = KBRC00003721
DO NOT follow the directions to remove the INDEX file, rather look at how to use a .psf file to create a pkg to be swinstalled. Search the TKB for "swpackage" & you'll get all kinds of hits on docs that can help.
HTH,
Jeff
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-25-2004 12:33 PM
01-25-2004 12:33 PM
Re: How to update swlist
It's always seemed to me to be easier to make "real" packages rather than fake ones for the purpose of documentation. That way, it should be less likely that the running system and swlist will be out of sync.
Mic
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-25-2004 03:54 PM
01-25-2004 03:54 PM
Re: How to update swlist
Thanks guys,
Jeff I didn't find that doc...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-25-2004 04:23 PM
01-25-2004 04:23 PM
SolutionMy preference goes to creating a dummy package. You will find it very difficult to prepare packages for some of the softwares (like oracle itself). For only documentation purposes you can go with as Jeff suggested.
For ex., take the following psf file (you can actually use it). MOdify it to your choice.
distribution
layout_version 1.0
#Vendor definition
vendor
tag Oracle
title Oracle
end
bundle
tag oracle8i
title "Oracle 8i Bundle"
revision 1
number ORA-1
category System_management
category_title System_management Software
architecture HP-UX_B.11.00_700/800
vendor_tag Oracle
machine_type 9000/[678]??
os_name HP-UX
os_release ?.11.??
os_version ?
contents None
end
Save it as oracle.psf and run 'swpackage -s oracle.psf -d /tmp/oracle'
And then install it from the depot /tmp/oracle. It may complain that it is an empty bundle but will let you install it.
It should create an entry called oracle8i in your IPD.
-Sri
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-25-2004 10:30 PM
01-25-2004 10:30 PM
Re: How to update swlist
Thanks Sri,
For documentation purposes this is what I need for now from HP-UX. Thanks for all members,,,,,,,