Gentoo Archives: gentoo-user

From: Walter Dnes <waltdnes@××××××××.org>
To: Gentoo Users List <gentoo-user@l.g.o>
Subject: [gentoo-user] Some log stuff shows up on text console after recent emerge
Date: Mon, 14 Jun 2010 02:19:08
Message-Id: 20100614021827.GA4479@waltdnes.org
1 Any time I insert/remove a USB key, or when iptables has something to
2 say, it shows up on all text consoles, not just number 12. This seems
3 to be happening after a recent update. I'm running syslog-ng 3.0.6. I
4 have not manually touched any config files.
5
6 Searching through Google turned up answers for various other distros,
7 directing me to various config files that don't exist in Gentoo. Here
8 is my config for syslog-ng.
9
10 @version: 3.0
11
12 options {
13 chain_hostnames(no);
14 stats_freq(43200);
15 };
16
17 source src {
18 unix-stream("/dev/log" max-connections(256));
19 internal();
20 file("/proc/kmsg");
21 };
22
23 destination messages { file("/var/log/messages"); };
24
25 destination console_all { file("/dev/tty12"); };
26
27 log { source(src); destination(messages); };
28 log { source(src); destination(console_all); };
29
30
31 --
32 Walter Dnes <waltdnes@××××××××.org>

Replies

Subject Author
Re: [gentoo-user] Some log stuff shows up on text console after recent emerge Mick <michaelkintzios@×××××.com>