Re: [systemd-devel] permanent autologin

2021-05-02 Thread Emanuel Berg
>> After touching those files you need to run »systemd >> deamon-reload« to tell systemd, that you touched them. > > This worked > > $ sudo systemctl daemon-reload > > and after copying the tty1 directory and renaming it, there is > autologin everywhere! > > :) How to do it, https://dataswamp

Re: [systemd-devel] permanent autologin

2021-05-02 Thread Emanuel Berg
Silvio Knizek wrote: > After touching those files you need to run »systemd > deamon-reload« to tell systemd, that you touched them. This worked $ sudo systemctl daemon-reload and after copying the tty1 directory and renaming it, there is autologin everywhere! :) -- underground experts unit

Re: [systemd-devel] permanent autologin

2021-05-02 Thread Emanuel Berg
Silvio Knizek wrote: > So, if you have this setup, I really suggest that you use > specialised units Hm... what "units" do you refer to here? > for every terminal and a graphical login manager for the > X stuff. So instead of starting agetty you can directly > start emacs or tmux as the User= yo

Re: [systemd-devel] permanent autologin

2021-05-02 Thread Emanuel Berg
My other message doesn't seem to have come yet, but to answer that message, yes, it does work on tty! I need one such directory and file for each tty? -- underground experts united https://dataswamp.org/~incal ___ systemd-devel mailing list systemd-de

Re: [systemd-devel] permanent autologin

2021-05-02 Thread Emanuel Berg
Silvio Knizek wrote: > /etc/systemd/system/getty@tty1.service.d/10-autologin.conf > [Service] > ExecStart= > ExecStart=-/sbin/agetty -a incal --noclear %I $TERM I tried it in tty2 and it didn't work. Is it because it only works for tty1 as is mentioned, of for some other reason, I don't know. I'l

Re: [systemd-devel] permanent autologin

2021-05-02 Thread Emanuel Berg
Silvio Knizek wrote: > > your path is wrong. You want the following: > > /etc/systemd/system/getty@tty1.service.d/10-autologin.conf I don't have that file or even directory, but I can put it there manually, of course. > Do you need this auto login for debug reasons (than maybe > debug- shell.ser

Re: [systemd-devel] permanent autologin

2021-05-02 Thread Silvio Knizek
Am Sonntag, dem 02.05.2021 um 19:14 +0200 schrieb Emanuel Berg: > Silvio Knizek wrote: > > > > > your path is wrong. You want the following: > > > > /etc/systemd/system/getty@tty1.service.d/10-autologin.conf > > I don't have that file or even directory, but I can put it > there manually, of course.

Re: [systemd-devel] permanent autologin

2021-05-01 Thread Silvio Knizek
Am Samstag, dem 01.05.2021 um 07:17 +0200 schrieb Emanuel Berg: > I do autologin like this: > >    ExecStart=-/sbin/agetty -a incal --noclear %I $TERM > >    /etc/systemd/system/getty.target.wants/getty@tty1.service # line ~39 > >    $ sudo systemctl daemon-reload > > However, it seems to disappear

[systemd-devel] permanent autologin

2021-05-01 Thread Emanuel Berg
I do autologin like this: ExecStart=-/sbin/agetty -a incal --noclear %I $TERM /etc/systemd/system/getty.target.wants/getty@tty1.service # line ~39 $ sudo systemctl daemon-reload However, it seems to disappear after a while, maybe when systemd gets updated? So my question is how do I m