On Wed, Feb 15, 2017 at 11:28 AM, Salvo Tomaselli <[email protected]> wrote: > Package: systemd > Version: 232-18 > Severity: normal > > Dear Maintainer, > I want to have logs on tty6, rather than a login shell. > > I created a file called /etc/systemd/system/[email protected] > > What happens is that if I press ctrl+alt+f6, I get a login shell. > > However, if after that I give > > # service getty@tty6 stop > # service getty@tty6 start > > and then switch again to tty6 with ctrl+alt+f6, then I will see > the wanted tail of logs.
I think the problem is that logind actually tries to start autovt@tty6. Thus the chain is: autovt@tty6 => resolved as instance of autovt@ => resolved as alias of getty@ The whole alias thing is very weird , as aliasing depends on load orer. There is discussion upstream of better handling but not fixed yet. In the meantime, you should be able to fix the issue via `ln -s [email protected] /etc/systemd/system/[email protected]` -- Saludos, Felipe Sateler

