- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- how to use man ?
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
04-15-2002 08:50 PM
04-15-2002 08:50 PM
I install a software in hp box (11.0),
I find the file expect.man , and set The MANPATH,but can not use man expect to view it , why?
Thanks
sunny
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-15-2002 09:08 PM
04-15-2002 09:08 PM
Re: how to use man ?
# echo $MANPATH
to make sure the path is there and correct. Typically an application (for example /opt/perf) has it's man path in /opt/perf/man and under "man" directory will be section of the man pages like man1, man2, etc. In this example the added man path should be /opr/perf/man.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-15-2002 09:15 PM
04-15-2002 09:15 PM
Re: how to use man ?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-15-2002 09:56 PM
04-15-2002 09:56 PM
Re: how to use man ?
# catman -w
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-15-2002 09:56 PM
04-15-2002 09:56 PM
Re: how to use man ?

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-16-2002 05:20 AM
04-16-2002 05:20 AM
SolutionAn *installed* manual page should not have a ".man" extension, but something like ".1" through ".9", possibly with a letter after it, i.e. for example ".3c".
First do (assuming an uncompressed file):
nroff -man expect.man | col -b | more
to see the extension. I.e. if it says in the upper right "expect(1)", then it should have extension ".1", i.e. "expect.1".
Next you have to put it in the right directory, probably below /usr/contrib/man, i.e. in man?[.Z] (and make sure that the path is in MANPATH).
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-17-2002 08:57 PM
04-17-2002 08:57 PM
Re: how to use man ?
I did as you say, find the expect.1 , put the path in MANPATH , and now It work!
Thanks
Sunny