허용되는 답변 외에도 다음을 아는 것이 유용합니다 ...
각 기능에는 관련된 매뉴얼 페이지 가 있어야 합니다.
당신이 실행하는 경우 man -k syslog
(man 페이지의 키워드 검색을) 당신은 참조하거나 대해있는 사람이 페이지의 목록을 얻을 것이다 시스템 로그를
$ man -k syslog
logger (1) - a shell command interface to the syslog(3) system l...
rsyslog.conf (5) - rsyslogd(8) configuration file
rsyslogd (8) - reliable and extended syslogd
syslog (2) - read and/or clear kernel message ring buffer; set c...
syslog (3) - send messages to the system logger
vsyslog (3) - send messages to the system logger
더 자세히 알아 보려면 매뉴얼 섹션을 이해해야합니다.
다음은 man 페이지 섹션을 설명하는 man 페이지에서 발췌 한 것입니다.
The table below shows the section numbers of the manual followed by
the types of pages they contain.
1 Executable programs or shell commands
2 System calls (functions provided by the kernel)
3 Library calls (functions within program libraries)
4 Special files (usually found in /dev)
5 File formats and conventions eg /etc/passwd
6 Games
7 Miscellaneous (including macro packages and conven‐
tions), e.g. man(7), groff(7)
8 System administration commands (usually only for root)
9 Kernel routines [Non standard]
위의 실행을 읽으려면
$man man
따라서 실행 man 3 syslog
하면 syslog
코드에서 호출 한 함수에 대한 전체 매뉴얼 페이지 가 표시됩니다.
SYSLOG(3) Linux Programmer's Manual SYSLOG(3)
NAME
closelog, openlog, syslog, vsyslog - send messages to the system
logger
SYNOPSIS
#include <syslog.h>
void openlog(const char *ident, int option, int facility);
void syslog(int priority, const char *format, ...);
void closelog(void);
#include <stdarg.h>
void vsyslog(int priority, const char *format, va_list ap);
직접적인 대답은 아니지만 이것이 유용하다는 것을 알게 될 것입니다.
/etc/
식별자 ("test"
귀하의 경우) 및 시설에 대해 변경해야하는 구성 파일이 어딘가에 있어야합니다 .