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 …

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