- Run
systemctl edit getty@tty1.service
- In the override file, enter
[Service] ExecStart= ExecStart=-/bin/journalctl -b -ef StandardInput=tty StandardOutput=tty
- To see it right away (without reboot), run
systemctl daemon-reload
followed bysystemctl restart getty@tty1.service
- To stop the console from blanking, edit
/etc/default/grub
, addconsoleblank=0
toGRUB_CMDLINE_LINUX_DEFAULT
, save and exit. Then runupdate-grub
and reboot.
(I adapted the service override from Remy’s old post.)