- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- How to determine a verion of a kernel driver
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-23-2004 04:43 AM
09-23-2004 04:43 AM
How to determine a verion of a kernel driver
Thanks
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-23-2004 05:13 AM
09-23-2004 05:13 AM
Re: How to determine a verion of a kernel driver
This is what I figured.
Most of the kernel drivers object files are "archived" in to one archive file called libhp-ux.a.
This file is located in /usr/lib/conf/ directory and ar command can be used to manipulate this file.
# ar -t /usr/lib/conf/libhp-ux.a
this will list all the files in there
# ar -x /usr/lib/conf/libhp-ux.a scsi_tape.o
# what scsi_tape.o
This will tell you the version of stape.
Again, this is the understanding I developed by digging in the system. Possible that I am wrong :-)
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-23-2004 05:20 AM
09-23-2004 05:20 AM
Re: How to determine a verion of a kernel driver
If you're running 11i v2, there is a new command called "kcmodule" that may tell you what you want a little easier. This command displays information about kernel modules, of which stape is one. On my 11.23 system (i.e. 11i v2), I get:
# kcmodule -v stape
Module stape [3F56E2F0]
Description SCSI Tape Driver
State unused
State at Next Boot unused
Capable static unused
Depends On module sctl:0.0.0
interface HPUX_11_23:1.0
Don't know if this is what you're looking for, but thought I'd mention it for those people unfamiliar with kcmodules.
Regards,
Dave
I work at HPE
HPE Support Center offers support for your HPE services and products when and how you need it. Get started with HPE Support Center today.
[Any personal opinions expressed are mine, and not official statements on behalf of Hewlett Packard Enterprise]

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-23-2004 05:23 AM
09-23-2004 05:23 AM
Re: How to determine a verion of a kernel driver
/usr/conf/lib>ar -t /usr/conf/lib/libhp-ux.a
softintr.o
param.o
libhp_ux.modmeta.o
netfunc.o
strtio_tunables_default.o
lv_default.o
lv_config.o
nfs_iface.o
domainname.o
libhp-ux_vers.o
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-23-2004 05:28 AM
09-23-2004 05:28 AM
Re: How to determine a verion of a kernel driver
I believe scsi_tape.o is the object file for the stape driver.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-23-2004 05:53 AM
09-23-2004 05:53 AM
Re: How to determine a verion of a kernel driver
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-23-2004 06:08 AM
09-23-2004 06:08 AM
Re: How to determine a verion of a kernel driver
# what /usr/conf/lib/libhp-ux.a | grep tape
Look for scsi_tape.o