This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

Livelog on the console ?

I'm searching a way of having the livelog showed on a tty on the console, to have it eternally opened
The usual livelog is great, but you can't see it from the console, it closes when your session expires plus you have to be logged in to see it ...
Is there a way to export the livelog to the console, like doing a 'tail -f' ? Where is the livelog file, and is it readable that way ?  


This thread was automatically locked due to age.
Parents
  • edit syslog.conf, and syslog.conf-default in /etc
    add at the end 
    *.*                                /dev/tty12

    Kill syslog, and press alt-F12, and you'll see everything coming up just nicely. 
  • Another option is to create a dedicated restricted login account (with a trap statement in its startup) to do the tail of the log (once you redirect to a file first, by editiing the syslog). This way you don't get stuff always printing on your console, and root is not sitting open on the console (I don't know what your physical environment is).

    By the way, tail can reexecute on a timing interval by supplying it with a timing interval argument;
    see tail --help...
Reply
  • Another option is to create a dedicated restricted login account (with a trap statement in its startup) to do the tail of the log (once you redirect to a file first, by editiing the syslog). This way you don't get stuff always printing on your console, and root is not sitting open on the console (I don't know what your physical environment is).

    By the way, tail can reexecute on a timing interval by supplying it with a timing interval argument;
    see tail --help...
Children