- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- man - simple question on how to use it.
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
02-26-2006 03:02 PM
02-26-2006 03:02 PM
-->man tar
tar(4) tar(4)
NAME
tar - format of tar tape archive
DESCRIPTION
The header structure produced by tar (see tar(1)) is as follows (the
array size defined by the constants is shown on the right):
What I really want of course is man tar(1).
How do I do this???
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-26-2006 03:13 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-26-2006 03:32 PM
02-26-2006 03:32 PM
Re: man - simple question on how to use it.
Use $man 1 tar , to learn about man use
$man man
Rgds,
Ajit
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-26-2006 03:42 PM
02-26-2006 03:42 PM
Re: man - simple question on how to use it.
The sections are:
1) Commands
1m) Admin Commands
2) System Calls
3) Library Function
4) File Formats
5) Misc
7) Drivers
Theere are sometimes other sections as well. 6 --> games 8 --> networking commands, additional data
On various flavors of UNIX, the section meanings may vary, but generally sections 1, 2, 3, and 4 are constant.
In your specific case, man 4 tar will detail the file layout of a tar image and man 1 will describe the command itself.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-26-2006 03:45 PM
02-26-2006 03:45 PM
Re: man - simple question on how to use it.
"man man" leads me on to query the following output:
If section is not specified (see next argument
description), man searches all sections of the
manual in order: man1, man2, man1M, man3, man4,
man5, man6, man7, man8, man9, manlocal, mannew,
manold, then manpublic; and printing the first
matching entry it encounters.
I guess with "man 1 tar" - the "1" is the section.
The search order above indicates tar(1) should be returned first? Not tar(4) as I have seen. Just an observation.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-26-2006 04:02 PM
02-26-2006 04:02 PM
Re: man - simple question on how to use it.
It should be related to your MANPATH. Checkout, # echo $MANPATH. In my system, it searches correctly (section1, section 2, etc..)
-Arun
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-26-2006 04:13 PM
02-26-2006 04:13 PM
Re: man - simple question on how to use it.
see also:
http://en.wikipedia.org/wiki/Man_page
kind regards
yogeeraj
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-26-2006 05:13 PM
02-26-2006 05:13 PM
Re: man - simple question on how to use it.
Cheers for now!