Re: 'leaking messages' while booting
Reply #4 –
$ tty
/dev/pts/4
(In another terminal tab or window)
# echo "hi there" >/dev/pts/4
> result in the original terminal:
$ hi there
# echo "hi there" >/dev/console
# echo "hi there" >/dev/tty1
(etc)
If messages are sent to /dev/console which is usually /dev/tty1 then they go there. So either you send them somewhere else, either globally or for a particular process, another tty, /dev/null, /dev/log perhaps, or you could (as a user) change the login to another tty, usually if you use startx with autologin then you set it up to login on tty7 automatically and then it switches to tty7 for the graphical session. This can be done on Runit and OpenRC. Probably you could arrange to have the login switch to another tty without logging in. But I guess it would be helpful to silence the noisy process so you could login in tty1 without users having to deal with it individually.