Back to Posts

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.

  1. Change password for pi user
sudo passwd pi
  1. Create a new user
sudo useradd -m username
  1. Define a password for the new user
sudo passwd username
  1. Add the new user to the sudo group

By default on Debian/Ubuntu systems, members of the group sudo are granted with sudo access. To add the user you created to the sudo group use the usermod command:

usermod -aG sudo username
Back to Posts

Posts by me

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 …

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 …