Skip to content

Instantly share code, notes, and snippets.

View alvarosamudio's full-sized avatar
🏠
Trabajando desde casa

Alvaro Samudio alvarosamudio

🏠
Trabajando desde casa
View GitHub Profile
@alvarosamudio
alvarosamudio / change_hostname.sh
Created September 22, 2024 15:13
change the hostname on a raspberry pi
#!/bin/bash
# Check if the user is root
if [ "$EUID" -ne 0 ]; then
echo "Please run this script as root or use sudo"
exit
fi
# Function to check if the hostname ends with ".local"
function check_hostname {