less /var/log/messages| grep -iE "uninitialized|WARNING|ERROR"
less /var/log/messages| grep -iE "uninitialized|WARNING|ERROR"
of course this is for the /var/log/messages
of course this is for the /var/log/messages
+
+
or if you want to parse all log
+
grep -iE "uninitialized|WARNING|ERROR" /var/log/*
+
+
{{Note box| you have now a tool in your hand to parse logfile : [[Audit_Tools#logcheck]]. You should be aware that tool is here to help to find errors in the development side of the SME Server and thus you could have a lot of false positive}}