I am running systemd
on ArchLinux. I have read various posts of doing this but it seems impossible (i.e. I am incompetent in implementing this:)) ). I want to disable the on-demand tty spawning of systemd and start ttys on Ctrl+Alt+F1-4 and Ctrl+Alt+F6-11 during boot.
On /etc/systemd/logind.conf
I have :
[Login]
NAutoVTs=9
but KDE still starts on tty7 (i.e. I press Ctrl+Alt+F7 to see the desktop). I have created the files:
/etc/systemd/system/getty@tty2.service.d/autologin.conf
/etc/systemd/system/getty@tty3.service.d/autologin.conf
/etc/systemd/system/getty@tty4.service.d/autologin.conf
/etc/systemd/system/getty@tty6.service.d/autologin.conf
/etc/systemd/system/getty@tty7.service.d/autologin.conf
/etc/systemd/system/getty@tty8.service.d/autologin.conf
/etc/systemd/system/getty@tty9.service.d/autologin.conf
/etc/systemd/system/getty@tty10.service.d/autologin.conf
that contain:
[Service]
ExecStart=
ExecStart=-/usr/bin/agetty --autologin confuseduser --noclear %I 38400 linux
but this did not help either.