Remote access to your Raspberry Pi
Starting My Homelab Journey with a Raspberry Pi 4B

I am a french Developer, working for a french startup :) i like video games, computers and drinking Ricoré
Search for a command to run...
Starting My Homelab Journey with a Raspberry Pi 4B

I am a french Developer, working for a french startup :) i like video games, computers and drinking Ricoré
No comments yet. Be the first to comment.
Decided to start a homelab project using a Raspberry Pi 4B I had lying around and will be documenting the journey in case anyone’s interested.
AWS Bedrock AgentCore lets you deploy agents as managed containerized runtimes. This guide shows how to automate this deployment using Pulumi and Docker. What You'll Deploy Docker container with your agent code Amazon ECR to store the image Bedroc...

Introduction This guide shows how to deploy AWS Bedrock Agents using Pulumi and TypeScript. Prerequisites AWS Account with Bedrock access Node.js and npm installed Pulumi CLI installed Project Setup Generate Project with Pulumi pulumi new aws-t...

I recently discovered Docker compose profiles and wanted to share it as it can be useful to someone else. Docker Compose profiles let you control which services run without modifying your docker-compose.yml. They’re useful for separating optional s...

These days, i’m using AWS Bedrock to create Agents.And i faced this error when testing my agents many times so i decided to write down the workaround that i found. An error occurred (dependencyFailedException) when calling the InvokeAgent operation: ...

That’s it—I’ve finally decided to start my homelab: a place to experiment, break things, learn, and start all over again.
I had a Raspberry Pi 4B sitting in a box, so I figured, why not jump in?
I plugged it into my monitor to see what was on it. Turns out I had installed Ubuntu MATE desktop a few years ago. It worked… sort of. I connected to Wi-Fi and started downloading a few things, but every time I opened Firefox, the system froze. After several restarts and failed attempts, I decided Ubuntu MATE wasn’t the right fit—especially with only 2 GB of RAM.
To save resources, I went with Raspberry Pi OS Lite instead of the full desktop version. It boots incredibly fast and gives me a clean terminal-only environment—perfect for setting up a lightweight home server for experimentation.
Of course, I didn’t want to plug the Pi into a monitor every time I wanted to use it. Remote access via SSH is the way to go, and luckily, it’s very straightforward:
On your Raspberry Pi, open the terminal and run:
sudo raspi-config
Go to Interfacing Options → SSH → Enable → OK → Finish.
Find your Pi’s IP address:
hostname -I
From another computer, connect using:
ssh <username>@<ip-address>
The first time you connect, you’ll get a security warning—type yes to proceed. Enter your password when prompted.
You should now see the Raspberry Pi prompt:
<username>@<hostname> ~ $
And that’s it—you’re now connected remotely and ready to start experimenting with your homelab!