Index: syslog-ng/trunk/syslog-ng.conf =================================================================== --- syslog-ng/trunk/syslog-ng.conf (revision 40101) +++ syslog-ng/trunk/syslog-ng.conf (working copy) @@ -42,8 +42,8 @@ destination d_acpid { file("/var/log/acpid.log"); }; destination d_console { usertty("root"); }; -# Log everything to vc12 -destination console_all { file("/dev/vc/12"); }; +# Log everything to tty12 +destination console_all { file("/dev/tty12"); }; filter f_auth { facility(auth); }; filter f_authpriv { facility(auth, authpriv); }; @@ -89,5 +89,5 @@ log { source(src); filter(f_everything); destination(d_everything); }; log { source(src); filter(f_iptables); destination(d_iptables); }; -# Log everything to vc12 +# Log everything to tty12 #log { source(src); destination(console_all); };