Recently I setup a new box with Debian 8 Jessie (I used Debian 6 and 7 on other boxes). I was disappointed to see the startup messages only on 2 or 3 text lines. No more list of startup services written "OK" or "Failed", or filesystem details with fsck etc.
Searched the web, I found to remove the "quiet" option from the /etc/default/grub file. I did that, recovered the messages I used to see on previous versions but also a lot of garbage, making the text scrolling so fast I couldn't read anything.
I liked to see the "light" messages before to have an overview of the box health when restarting. How could I have this back on Jessie ? (Checked on the older boxes, the "quiet" option was present, so it seems the difference is not there).
I don't care about having a "beautiful" startup screen, these are only servers ...
Thanks for your help
As it was already pointed out, Debian 8 Jessie comes with
systemd
init system by default, which behaves differently than older SysV init system. To get your startup messages back you need to make following changes:Add
systemd.show_status=1
to the kernel options list. The easiest way to do so is to add to the/etc/default/grub
:and run
update-grub2
.In principal, that should be enough to get your messages back on the console. But, there is another catch -
systemd
is also controlling TTY allocation now and invocation ofgetty
, sotty1
will be cleared before thelogin
prompt is shown. To disable clearingtty1
you need to create file, for ex.noclear.conf
, in/etc/systemd/system/[email protected]/
directory with the content:With those two steps you'll get your startup messages back.