Quickzi: Stop Syslog from putting –MARK– in the logs
Monday, October 29th, 2007 at
5:26 am
By default, the syslog daemon will place –MARK– messages in your /var/log/messages log file every twenty minutes. This can get annoying and eventually lead to a waste of space. Heres a quick tip on how to stop syslog from putting –MARK– in the messages log.
- Edit the syslogd file. (In Ubuntu, this file is located in /etc/default/syslogd – on some other distributions, you’ll want to edit whatever file starts up the syslog daemon.)
- Locate the following line that starts with:
SYSLOGD=”"
- Modify this line to read:
SYSLOGD=”-m 0″
- Restart syslog:
/etc/init.d/sysklogd restart
Cheers!
Popularity: 3% [?]
Tagged with: HowTo • Linux • quickzi • syslog • tips
Filed under: Linux
Like this post? Subscribe to my RSS feed and get loads more!













I thought the -m tag needed to be followed by an interval (i.e. a number) rather than a letter.