# as root...
systemctl set-default multi-user.target
# add file ::: /etc/systemd/system/getty@tty1.service.d/autologin.conf
[Service]
ExecStart=
ExecStart=/sbin/agetty -a r --noclear %I $TERM
Type=idle
# systemctl set-default graphical.target
# ----------------------------
# to start X automatically after login at the first console
# as your user...
# add a line to ~/.bashrc or ~/.bash_aliases
echo '[[ `tty` == "/dev/tty1" ]] && startx' >> ~/.bash_aliases