raspberry pi enable ssh code example

Example 1: enable ssh raspberry pi without monitor

How to enable SSH on a Raspberry Pi, without monitor:
1. Plug the Raspberry Pi SD-card into a SD-reader and connect it to a PC.
2. In the root-folder of the SD, create a file named "ssh" (without extention).
3. Plug it back in the Raspberry Pi and turn it on. SSH will start automatically.

Pro tip: If you don't know the IP address, use its hostname. Example:
ping raspberrypi.local

Example 2: how to enable ssh on pi

Enter sudo raspi-config in a terminal window.
Select Interfacing Options.
Navigate to and select SSH.
Choose Yes.
Select Ok.
Choose Finish.

Example 3: raspberry pi ssh

ctrl_interface=DIR=/var/run/wpa_supplicant GROUP=netdev
update_config=1
country=<YOUR TWO LETTER COUNTRY CODE>

network={
    ssid="<YOUR NETWORK NAME>"
    psk="<YOUR NETWORK PASSWORD>"
    key_mgmt=WPA-PSK
}

save this in "wpa_supplicant.conf"