Autologin on boot is not working (Raspbian Jessie Lite)
Create file:
sudo mkdir /etc/systemd/system/getty@tty1.service.d
sudo nano /etc/systemd/system/getty@tty1.service.d/autologin.conf
[Service]
ExecStart=
ExecStart=-/sbin/agetty --autologin yourUserName --noclear %I 38400 linux
replace "yourUserName" with your user
run command:
sudo systemctl enable getty@tty1.service
sudo mkdir /etc/systemd/system/getty@tty1.service.d
sudo nano /etc/systemd/system/getty@tty1.service.d/autologin.conf
[Service]
ExecStart=
ExecStart=-/sbin/agetty --autologin yourUserName --noclear %I 38400 linux
replace "yourUserName" with your user
run command:
sudo systemctl enable getty@tty1.service
Comments
Post a Comment