Hi, On Fri, May 22, 2026 at 3:47 PM Philippe Delavalade < [email protected]> wrote:
> [...] > I'd like to have almost ten ttys ; with sysvinit, I modified /etc/inttab... > > But with systemd I don't know what to do and where. > This parameter allows you to alter the number of VTs: $ systemd-analyze cat-config systemd/logind.conf | grep NAutoVTs #NAutoVTs=6 Simply use something among the lines to create an ovveride: sudo mkdir /etc/systemd/logind.conf.d echo -e "[login]\nNAutoVTs=11" | sudo tee -a /etc/systemd/logind.conf.d/override.conf Moreover, I would like to modify permanently the size of the screen with > stty but where to do that ? > It is preferable to run stty within your shell profile because they are executed within a terminal session. Unless you wish to alter the screen's resolution, take a look at this: https://wiki.archlinux.org/title/Kernel_mode_setting#Forcing_modes Best, /m
