Back to Posts

Raspberry Pi Headless Setup

I do this task several times per year and always have to google it, not the ssh part, of course, but the wpa_supplicant.conf file one; having this content on my site, I can visit it for my assistance, and if for some reason the SEO spirits put this post above other better than this I hope it’s helpful.

SSH headless enable

For enabeling SSH (Secure shell) is as simple as creating an empty file in the root of the SD memory before booting up the operative system.

In macOS

touch /Volumes/boot/ssh

WiFi default network authentication setup

Create a file called wpa_supplicant.conf in the root of the SD memory before booting up the operative system with the following content:

country=US
ctrl_interface=DIR=/var/run/wpa_supplicant GROUP=netdev
update_config=1

network={
    ssid="NETWORK-NAME"
    psk="NETWORK-PASSWORD"
}
Back to Posts

Posts by me

Raspberry Pi user setup

When first booting a Raspberry Pi the OS comes with a default super admin user and password, and since is common to all fresh setups, it’s important to change the settings for security concerns.

Popular git config options

Yeah, another hightlight from HN. This time Julia Evans (I have her in my syndication list, but saw her post from HN), shared a very interesting list of pupular git config options, source

Recurrency notation RFC-5545

I learn about the https://datatracker.ietf.org/doc/html/rfc5545 From the specification: This document defines the iCalendar data format for representing and exchanging calendaring and scheduling information such as events, to-dos, journal …