Oprócz zaakceptowanej odpowiedzi warto znać następujące informacje ...
Z każdą z tych funkcji powinny być skojarzone strony podręcznika .
Jeśli uruchomisz man -k syslog
(wyszukiwanie słów kluczowych w stronach podręcznika), otrzymasz listę stron podręcznika, które odnoszą się do syslog lub są o nim
$ 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
Musisz zrozumieć sekcje instrukcji, aby zagłębić się dalej.
Oto fragment strony man dla man, który wyjaśnia sekcje strony 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]
Aby przeczytać powyższe uruchom
$man man
Tak więc, jeśli uruchomisz man 3 syslog
, otrzymasz pełną stronę podręcznika dla syslog
funkcji, którą wywołałeś w swoim kodzie.
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);
Nie jest to bezpośrednia odpowiedź, ale miejmy nadzieję, że okaże się przydatna.
/etc/
którym musisz zmienić swój identyfikator ("test"
w twoim przypadku) i placówkę.