Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Tell getty to autologin the ubuntu-user

Code Block
$ sudo mkdir /etc/systemd/system/getty@tty1.service.d/
$ sudo cat << EOF > /etc/systemd/system/getty@tty1.service.d/override.conf
[Service]
ExecStart=
ExecStart=-/sbin/agetty --autologin ubuntu --noclear %I $TERM
EOF

$ sudo systemctl enable getty@tty1.service

...