Solved Disable Login Screen Messages

Forgive me if this has already been answered elsewhere, but I tried searching for it, but I don't think I know the correct name of my problem.

Whenever I go in to my login prompt screen, it's always filled with log messages. I think they're just error messages. I was wondering how could I stop those messages from displaying there, and just have them log to a file.
 
Comment out the line that logs to /dev/console in your /etc/syslogd.conf. Assuming a default install, it will look like this after you comment it out.
Code:
# *.err;kern.warning;auth.notice;mail.crit  /dev/console

Then do a service syslogd restart.
 
Back
Top