- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- How to get the man pages installed for kernel/driv...
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-02-2000 08:48 AM
06-02-2000 08:48 AM
How to get the man pages installed for kernel/driver functions
Can you tell me how to install the man pages for kernel/driver functions? I can access some shell commands and some application C functions' man page, but when I try to access like kmem_alloc or dma_setup etc kernel/driver functions using man xxxx, No manual page. Do I need to reinstall HP/UX 11.00 man pages or all the man pages are already installed I only need to set up something to make it work?
I appreciated very much for your help.
JohnL
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-02-2000 11:05 AM
06-02-2000 11:05 AM
Re: How to get the man pages installed for kernel/driver functions
Find all of the directories which man pages are housed. Place this information (with each directory separated by a colon) in a file called /etc/MANPATH
Next, set the environment variable MANPATH to the contents of the file, (i.e. MANPATH=$(cat /etc/MANPATH) ; export MANPATH).
Next run the Makewhatis utility (/usr/lbin/mkwhatis on HP-UX 11.0)
Now you can issue your man -k commands to find out if the Man Pages you want are installed on the Server, or if you need to go re-install them.
Good Luck.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-02-2000 11:18 AM
06-02-2000 11:18 AM
Re: How to get the man pages installed for kernel/driver functions
I checked as you suggested MANPATH etc. no problem.
Then, I run
# /usr/lbin/mkwhatis
I got the following information repeat four times
stdio: not in compressed format
I wonder if I need to give some options for mkwhatis cause I even have no idea what mkwhatis is going to do. I don't have the man page for mkwhatis either.
Thanks again
JohnL
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-03-2000 07:03 PM
06-03-2000 07:03 PM
Re: How to get the man pages installed for kernel/driver functions
For detailed descriptions of each kernel parameter, run sam in X11 mode and access kernel configuration. After selecting a kernel parameter, click on the Help button in the dialog box. It gives you a detailed description of the kernel parameter and its use in detail.
Using this method, I have the entire set of kernel parameters along with the detailed descriptions printed out and bound in a file.
Regards.
Steven Sim.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-05-2000 02:26 AM
06-05-2000 02:26 AM
Re: How to get the man pages installed for kernel/driver functions
You can restore man pages with the help of command
/etc/catman
if you try this command this command will restore all the needed man pages in your system but it could take more than six hours to bulid man pages ,so it is recommened that you can try this in night.
More is if you have man pages installed
set
MANPATH=/usr/share/man;export MANPATH
Thanks
Nikhil
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-05-2000 10:40 AM
06-05-2000 10:40 AM
Re: How to get the man pages installed for kernel/driver functions
I got some messages whan I run
#//etc/catman
cannot open file man3/DtDndDragStart.3
cannot open file man3/DtDndDropRegister.3
cannot open file man3/DtAppInitialize.3
col: Input line is TOO long!
/usr/share/man/C: No such file or directory
cannot open file man3/DtDndDragStart.3
cannot open file man3/DtDndDropRegister.3
cannot open file man3/DtAppInitialize.3
cannot open file man3/DtSearchHasMessages.3
cannot open file man3/DtSearchHasMessages.3
cannot open file man3/DtSearchHasMessages.3
....
I wonder what's wrong with these messages.
Thanks
John