файл syslog-ng.conf выглядит так:
source kernell { pipe("/proc/kmsg"); }; source sys { unix-stream("/dev/log"); internal(); }; destination dest_kern { file("/var/log/kern.log"); }; destination dest_sys { file("/var/log/syslog-ng"); }; log { source("kernell"); destination("dest_kern"); }; log { source("sys"); destination("dest_sys"); };
Заранее благодарен.
