저는 Linux의 온라인 매뉴얼을 더 잘 이해하려고 노력하고 있습니다. 알았다고 생각했는데 나중에 알게 됐어요. postfix가 시스템 관리 도구 및 데몬(8) 아래가 아닌 사용자 명령(1) 아래에 있는 이유는 무엇입니까?
[Michael@devserver postfix]$ man man
MANUAL SECTIONS
The standard sections of the manual include:
1 User Commands
...
8 System Administration tools and Daemons
.
[Michael@devserver postfix]$ man postfix
POSTFIX(1)
NAME
postfix - Postfix control program
SYNOPSIS
postfix [-Dv] [-c config_dir] command
DESCRIPTION
This command is reserved for the superuser. To submit mail, use the Postfix sendmail(1) command.
The postfix(1) command controls the operation of the Postfix mail system: start or stop the master(8) daemon, do a health check, and other maintenance.
답변1
Postfix 메일 시스템에는 명령뿐만 아니라 많은 명령과 데몬이 포함되어 있습니다 postfix
.
Postfix 작성자는 시스템 관리 목적으로 사용되는지 여부에 관계없이 사용자가 액세스할 수 있는 명령을 섹션 1에 포함하기로 결정한 것 같습니다.
- postalias(1), 별칭 데이터베이스 생성/업데이트/쿼리
- postcat(1), Postfix 큐 파일을 확인하세요
- postconf(1), Postfix 구성 유틸리티
- postfix(1),postfix 제어 프로그램
- postfix-tls(1), Postfix TLS 관리
- postkick(1), Postfix 데몬을 트리거합니다.
- postlock(1), Postfix 호환 잠금
- postlog(1), Postfix 호환 로깅
- postmap(1), Postfix 조회 테이블 관리자
- postmulti(1), Postfix 다중 인스턴스 관리자
- postqueue(1), Postfix 메일 큐 제어
- postsuper(1), Postfix 하우스키핑
- mailq(1), Sendmail 호환 인터페이스
- newaliases(1), Sendmail 호환 인터페이스
- sendmail(1), Sendmail 호환 인터페이스
Part 8에서는 데몬, 즉 수동으로 실행해서는 안 되는 것들만 찾을 것입니다:
- anvil(8), Postfix 연결/속도 제한
- 반품(8), 지연(8), 배송조회(8), 배송상태 리포트
- 메시지 정리(8), 정규화 및 대기열에 넣기
- Discard(8), Postfix는 배달 에이전트를 삭제합니다.
- dnsblog(8), DNS 블랙/화이트리스트 로거
- error(8), Postfix 오류 전달 에이전트
- (등등)
섹션 5("파일 형식")에도 설명서가 있습니다.
그들이 이렇게 하는 이유는
각 Postfix 매뉴얼 페이지는 UNIX 매뉴얼의 섹션(예: mailq(1) 또는 access(5))에 따라 번호가 매겨져 있습니다. 불행하게도 매뉴얼 페이지를 구성하는 보편적인 방법은 없습니다. 모든 UNIX 맛은 다른 것 같습니다.
바라보다모든 Postfix 매뉴얼더 많은 정보를 알고 싶습니다.