Skip to content

Latest commit

 

History

History
21 lines (17 loc) · 580 Bytes

README.md

File metadata and controls

21 lines (17 loc) · 580 Bytes

Template fo raspberry startup configuration

To disable wifi or bluetooth at start

dtoverlay=disable-wifi
dtoverlay=disable-bt

To disable autologin at start without raspi-config command

The raspi-config simply manipulates this symlink. To switch to manual login, execute (as root):

ln -fs /lib/systemd/system/getty@.service \
 /etc/systemd/system/getty.target.wants/getty@tty1.service

To switch back to automatic login, do:

ln -fs /etc/systemd/system/autologin@.service \
 /etc/systemd/system/getty.target.wants/getty@tty1.service