From 7b409b74d15cc3283e9cfe278d910eb1923d745d Mon Sep 17 00:00:00 2001 From: Jeremy Huntwork Date: Wed, 30 Mar 2005 21:40:13 +0000 Subject: Added sysklogd back in and removed libol and syslog-ng - thanks for the help, archaic git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@4816 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689 --- chapter06/chapter06.xml | 3 +- chapter06/libol.xml | 80 ------------------------ chapter06/sysklogd.xml | 36 +++++------ chapter06/syslogng.xml | 160 ------------------------------------------------ 4 files changed, 19 insertions(+), 260 deletions(-) delete mode 100644 chapter06/libol.xml delete mode 100644 chapter06/syslogng.xml (limited to 'chapter06') diff --git a/chapter06/chapter06.xml b/chapter06/chapter06.xml index b5896f9cd..82d457cbb 100644 --- a/chapter06/chapter06.xml +++ b/chapter06/chapter06.xml @@ -62,8 +62,7 @@ - - + diff --git a/chapter06/libol.xml b/chapter06/libol.xml deleted file mode 100644 index a34fadd81..000000000 --- a/chapter06/libol.xml +++ /dev/null @@ -1,80 +0,0 @@ - - - %general-entities; -]> - -Libol-&libol-version; - - -Libol - - -<para>The Libol package contains support libraries needed by Syslog-ng.</para> - -<segmentedlist> -<segtitle>&buildtime;</segtitle> -<segtitle>&diskspace;</segtitle> -<seglistitem><seg>Unchecked</seg><seg>Unchecked</seg></seglistitem> -</segmentedlist> - -<segmentedlist> -<segtitle>&dependencies;</segtitle> -<seglistitem><seg>Unchecked</seg></seglistitem> -</segmentedlist> -</sect2> - -<sect2 role="installation"> -<title>Installation of Libol - -Prepare Libol for compilation - -./configure --prefix=/usr - -Compile the package: - -make - -Install the package: - -make install - - - - -Contents of Libol - - -Installed programs -Unchecked - - - - - - - diff --git a/chapter06/sysklogd.xml b/chapter06/sysklogd.xml index 6e659e204..588209179 100644 --- a/chapter06/sysklogd.xml +++ b/chapter06/sysklogd.xml @@ -1,5 +1,5 @@ - %general-entities; ]> @@ -20,7 +20,8 @@ as those given by the kernel when unusual things happen. -Sysklogd installation depends on +&dependencies; + Binutils, Coreutils, GCC, Glibc, Make @@ -28,22 +29,16 @@ as those given by the kernel when unusual things happen. Installation of Sysklogd -Sysklogd has issues with the Linux 2.6 kernel series - fix these isues -by applying the following patch: +The following patch fixes various issues, including a problem building +Sysklogd with Linux 2.6 series kernels -patch -Np1 -i ../sysklogd-&sysklogd-version;-kernel_headers-1.patch +patch -Np1 -i ../sysklogd-&sysklogd-version;-fixes-1.patch -There is also a race condition in the signal handling logic, and this -sometimes confuses the sysklogd initscript. -Fix this bug by applying another patch: - -patch -Np1 -i ../sysklogd-&sysklogd-version;-signal-1.patch - -Compile Sysklogd: +Compile the package: make -Now install it: +Install the package: make install @@ -71,6 +66,9 @@ mail.* -/var/log/mail.log user.* -/var/log/user.log *.emerg * +# log the bootscript output: +local2.* -/var/log/boot.log + # End /etc/syslog.conf EOF @@ -84,7 +82,9 @@ EOF klogd and syslogd -Short descriptions +Short Descriptions + + klogd @@ -98,10 +98,10 @@ EOF syslogd syslogd -logs the messages that system programs -offer for logging. Every logged message contains at least a date stamp and a -hostname, and normally the program's name too, but that depends on how -trusting the logging daemon is told to be. +logs the messages that system programs offer for logging. Every logged +message contains at least a date stamp and a hostname, and normally the +program's name too, but that depends on how trusting the logging daemon is told +to be. diff --git a/chapter06/syslogng.xml b/chapter06/syslogng.xml deleted file mode 100644 index 55d624fec..000000000 --- a/chapter06/syslogng.xml +++ /dev/null @@ -1,160 +0,0 @@ - - - %general-entities; -]> - -Syslog-ng-&syslog-ng-version; - - -Syslog-ng - - -<para>The Syslog-ng package contains programs for logging system messages, such -as those given by the kernel when unusual things happen.</para> - -<segmentedlist> -<segtitle>&buildtime;</segtitle> -<segtitle>&diskspace;</segtitle> -<seglistitem><seg>Unchecked</seg><seg>Unchecked</seg></seglistitem> -</segmentedlist> - -<segmentedlist> -<segtitle>&dependencies;</segtitle> -<seglistitem><seg>Unchecked</seg></seglistitem> -</segmentedlist> -</sect2> - -<sect2 role="installation"> -<title>Installation of Syslog-ng - -Prepare Syslog-ng for compilation: - -./configure --prefix=/usr --sysconfdir=/etc - -Compile the package: - -make - -Install the package: - -make install - - - - -Configuring Syslog-ng - -Syslog-ng -configuring - -/etc/syslog-ng/syslog-ng.conf - -Create a new /etc/syslog-ng/syslog-ng.conf file by -running the following: - -mkdir -p /etc/syslog-ng -cat > /etc/syslog-ng/syslog-ng.conf << "EOF" -# Begin /etc/syslog-ng/syslog-ng.conf - -options { sync (0); - time_reopen (10); - log_fifo_size (1000); - long_hostnames(off); - use_dns (no); - use_fqdn (no); - create_dirs (no); - keep_hostname (yes); - }; - -source src { unix-stream("/dev/log"); - internal(); - pipe("/proc/kmsg"); - }; - -destination authlog { file("/var/log/authorize.log"); }; -destination syslog { file("/var/log/syslog.log"); }; -destination cron { file("/var/log/cron.log"); }; -destination daemon { file("/var/log/daemon.log"); }; -destination kernel { file("/var/log/kernel.log"); }; -destination lpr { file("/var/log/lpr.log"); }; -destination user { file("/var/log/user.log"); }; -destination uucp { file("/var/log/uucp.log"); }; -destination mail { file("/var/log/mail.log"); }; -destination news { file("/var/log/news.log"); }; -destination debug { file("/var/log/debug.log"); }; -destination messages { file("/var/log/messages.log"); }; -destination everything { file("/var/log/everything.log"); }; -destination console { usertty("root"); }; -destination console_all { file("/dev/tty12"); }; - -filter f_auth { facility(auth); }; -filter f_authpriv { facility(auth, authpriv); }; -filter f_syslog { not facility(authpriv, mail); }; -filter f_cron { facility(cron); }; -filter f_daemon { facility(daemon); }; -filter f_kernel { facility(kern); }; -filter f_lpr { facility(lpr); }; -filter f_mail { facility(mail); }; -filter f_news { facility(news); }; -filter f_user { facility(user); }; -filter f_uucp { facility(uucp); }; -filter f_debug { not facility(auth, authpriv, news, mail); }; -filter f_messages { level(info..warn) and not facility(auth, authpriv, mail, news); }; -filter f_everything { level(debug..emerg) and not facility(auth, authpriv); }; - -filter f_emergency { level(emerg); }; -filter f_info { level(info); }; -filter f_notice { level(notice); }; -filter f_warn { level(warn); }; -filter f_crit { level(crit); }; -filter f_err { level(err); }; - -log { source(src); filter(f_authpriv); destination(authlog); }; -log { source(src); filter(f_syslog); destination(syslog); }; -log { source(src); filter(f_cron); destination(cron); }; -log { source(src); filter(f_daemon); destination(daemon); }; -log { source(src); filter(f_kernel); destination(kernel); }; -log { source(src); filter(f_lpr); destination(lpr); }; -log { source(src); filter(f_mail); destination(mail); }; -log { source(src); filter(f_news); destination(news); }; -log { source(src); filter(f_user); destination(user); }; -log { source(src); filter(f_uucp); destination(uucp); }; -log { source(src); filter(f_debug); destination(debug); }; -log { source(src); filter(f_messages); destination(messages); }; -log { source(src); filter(f_emergency); destination(console); }; -log { source(src); filter(f_everything); destination(everything); }; -log { source(src); destination(console_all); }; - -# END /etc/syslog-ng/syslog-ng.conf -EOF - - - -Contents of Syslog-ng - - -Installed programs -Unchecked - - -Short Descriptions - - - - -syslog-ng - -syslog-ng -Logs the messages that system programs -offer for logging. Every logged message contains at least a date stamp and a -hostname, and normally the program's name too, but that depends on how -trusting the logging daemon is told to be. - - - - - - - - -- cgit v1.2.3-54-g00ecf