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.

Kernel mods with eBFP

Friday, July 19 2024 was a very interesting day, several Windows machines were down showing the blue screen of death. The problem was caused by a software update from a security company named Crowdstrike, which was installed on all the …

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