root@wl ~ # man standards
페이지를 다시 포맷 중입니다. 기다려 주십시오... 완료
Standards, Environments, and Macros standards(5)
NAME
standards, ANSI, C, C++, ISO, POSIX, POSIX.1, POSIX.2, SUS,
SUSv2, SUSv3, SVID, SVID3, XNS, XNS4, XNS5, XPG, XPG3, XPG4,
XPG4v2 - standards and specifications supported by Solaris
DESCRIPTION
Solaris 10 supports IEEE Std 1003.1 and IEEE Std 1003.2,
commonly known as POSIX.1 and POSIX.2, respectively. The
following table lists each version of these standards with a
brief description and the SunOS or Solaris release that
first conformed to it.
POSIX Standard Description Release
________________________________________________________________
POSIX.1-1988 system interfaces and headers SunOS 4.1
________________________________________________________________
POSIX.1-1990 POSIX.1-1988 update Solaris 2.0
________________________________________________________________
POSIX.1b-1993 realtime extensions Solaris 2.4
________________________________________________________________
POSIX.1c-1996 threads extensions Solaris 2.6
________________________________________________________________
POSIX.2-1992 shell and utilities Solaris 2.5
________________________________________________________________
POSIX.2a-1992 interactive shell and utilities Solaris 2.5
________________________________________________________________
POSIX.1-2001 POSIX.1-1990, POSIX.1b-1993, Solaris 10
POSIX.1c-1996, POSIX.2-1992, and
POSIX.2a-1992 updates
Solaris 10 also supports the X/Open Common Applications
Environment (CAE) Portability Guide Issue 3 (XPG3) and Issue
4 (XPG4); Single UNIX Specification (SUS, also known as
XPG4v2); Single UNIX Specification, Version 2 (SUSv2); and
Single UNIX Specification, Version 3 (SUSv3). Both XPG4 and
SUS include Networking Services Issue 4 (XNS4). SUSv2
includes Networking Services Issue 5 (XNS5).
...
q
root@wl ~ #
스페이스바 ▷ 다음 페이지로 스크롤 /정규표현식 ▷ 정규표현식을 찾음 b ▷ 이전 페이지로 스크롤 f ▷ 다음 페이지로 스크롤 q ▷ 종료 h ▷ 도움말(사용가능한 커맨드 보임)
root@wl ~ # man intro ... root@wl ~ # man -s 5 intro 1) ... root@wl ~ # man intro.5 2) ... root@wl ~ #1) intro 라는 키워드는 각 섹션마다 존재하며, 섹션 검색 순서에 따라 먼저 검색된 맨 페이지를 보여준다. 따라서 섹션 1에 대한 intro 맨 페이지가 보여질 것이다. 다른 섹션을 보려면 섹션 이름을 [-s]인자를 통해 전해야 한다.
root@wl ~ # man xhost
xhost에 대한 설명서 항목이 없습니다.
root@wl ~ # man -M /usr/openwin/share/man xhost 1)
페이지를 다시 포맷 중입니다. 기다려 주십시오... 완료
X Version 11 XHOST(1)
NAME
xhost - server access control program for X
...
root@wl ~ #
1) xhost 는 openwin 의 명령어로 솔라리스에서 사용 가능하지만, 맨페이지는 검색되지 않는다. man 은 별도의 설정을 하지 않는한 (하단의 MANPATH 환경변수 참조) /usr/share/man 아래의 디렉토리만 검색하기 때문이다. 따라서 xhost 맨 페이지가 없는 것으로 나온다. [-M] 옵션을 통해 디렉토리를 지정하면 맨 페이지를 볼 수 있다.
root@wl /usr/openwin/share/man # nroff -man xhost.1 | more -s ...man 으로는 볼 수 없고 위와 같이 nroff 와 more 를 이용 해야 한다. 위 명령은 man 에서 처리하는 방법과 유사하다.
root@wl ~ # man pipe.2 | col -x -b텍스트로 전환하는 방법은 많지만 col 명령어를 사용하는 방법도 있어 소개한다. (man(1)에 설명되어있다)
root@wl ~ # man -f smf smf smf (5) - service management facility root@wl ~ # whatis smf smf smf (5) - service management facility1) 만약 /usr/share/man/windex 를 찾을 수 없다는 메시지가 나오면 [/usr/bin/catman -w]명령을 실행해 해결할 수 있다. catman에 대해서는 문서 하단의 내용을 참조하자.
root@wldev ~ # man -k smf inetconv inetconv (1m) - convert inetd\&.conf entries into smf service manifests, import them into smf repository ksslcfg ksslcfg (1m) - enable and configure SMF instance of Kernel SSL smf smf (5) - service management facility ... root@wldev ~ # apropos smf inetconv inetconv (1m) - convert inetd\&.conf entries into smf service manifests, import them into smf repository ksslcfg ksslcfg (1m) - enable and configure SMF instance of Kernel SSL smf smf (5) - service management facility ...1) 만약 /usr/share/man/windex 를 찾을 수 없다는 메시지가 나오면 [/usr/bin/catman -w]명령을 실행해 해결할 수 있다. catman에 대해서는 문서 하단의 내용을 참조하자.
root@wl ~ # /usr/bin/catman -w
mansample.txt | 다운로드 |
.\" This is a comment. .TH MANSAMPLE 1 "2010-01" "SunOS 5.10" "User Manual" .SH NAME mansample \- mansample script .SH SYNOPSIS .B mansample .SH DESCRIPTION .B mansample is textfile for generating sample man pages. You can refer to .BR man(5) man pages. .SH "SEE ALSO" .BR man(5) .SH AUTHOR WindyHana <windyhana@solanara.net>
root@wl ~ # mkdir man1
root@wl ~ # cd man1
root@wl ~/man1 # nroff -man mansample.txt > mansample.1
root@wl ~/man1 # cd ..
root@wl ~ # man -M `pwd` mansample
페이지를 다시 포맷 중입니다. 기다려 주십시오... 완료
User Manual MANSAMPLE(1)
NAME
mansample - mansample script
SYNOPSIS
mansample
DESCRIPTION
mansample is textfile for generating sample man pages. You
can refer to man(5) man pages.
SEE ALSO
man(5)
AUTHOR
WindyHana <windyhana@solanara.net>
SunOS 5.10 Last change: 2010-01 1
root@wl ~ #
|
|
Copyright © 2004-2010 Jo HoSeok. All rights reserved. |