I found it in: https://wiki.archlinux.org/index.php/Disable_Clearing_of_Boot_Messages And would incorporate it to our wiki if you don't disagree Reproducible: Always
http://wiki.gentoo.org/wiki/Systemd#Configuration_files Added
Re-opening this. Telling people to modify that file directly is not a good idea. floppym@naomi ~ % readlink /etc/systemd/system/getty.target.wants/getty@tty1.service /usr/lib/systemd/system/getty@.service Effectively, you are telling them to edit /usr/lib/systemd/system/getty@.service, which will get overwritten during their next systemd upgrade.
I have removed that small paragraph from the wiki. A better solution is this, which overrides the getty@.serivce file. floppym@naomi ~ % cat /etc/systemd/system/getty@.service .include /usr/lib/systemd/system/getty@.service [Service] TTYVTDisallocate=no I'm not sure where to put that in the wiki article though. Maybe in the section about "custom" units?
(In reply to Mike Gilbert from comment #3) > I'm not sure where to put that in the wiki article though. Maybe in the > section about "custom" units? Or maybe as a new subsection below "custom" but still inside "configuration" section
Another solution: $ cat /etc/systemd/system/getty@tty1.service.d/noclear.conf [Service] TTYVTDisallocate=no
(In reply to Alexander Tsoy from comment #5) Oh, I forgot about the foo.d option. I like this better.
(In reply to Mike Gilbert from comment #6) > (In reply to Alexander Tsoy from comment #5) > > Oh, I forgot about the foo.d option. I like this better. I agree, only doubt about where to place it :(
(In reply to Alexander Tsoy from comment #5) > Another solution: > > $ cat /etc/systemd/system/getty@tty1.service.d/noclear.conf > [Service] > TTYVTDisallocate=no Other option would be to install this file (commented), what do you think?
(In reply to Pacho Ramos from comment #8) > (In reply to Alexander Tsoy from comment #5) > > Another solution: > > > > $ cat /etc/systemd/system/getty@tty1.service.d/noclear.conf > > [Service] > > TTYVTDisallocate=no > > Other option would be to install this file (commented), what do you think? That is what opensuse people is doing