Skip to content

Instantly share code, notes, and snippets.

View bitdruid's full-sized avatar
🌲

bitdruid

🌲
  • free state of bavaria
  • Azeroth
View GitHub Profile
@bitdruid
bitdruid / pi_simple_samba.sh
Created June 20, 2024 19:50
Simple samba installation for raspberry pi for fast file exchange e.g. after a new installation. Configures /home/pi/samba as a samba share.
#!bin/bash
# install samba
sudo apt -qq update && sudo apt -qq install -y samba
sudo systemctl enable --now smbd nmbd
# create samba share directory
mkdir -p /home/pi/samba
# create samba user
@bitdruid
bitdruid / activate_buildx.sh
Last active May 24, 2025 14:44
run to activate buildx for docker on host
docker buildx create --driver-opt image=moby/buildkit:latest --name multi-arch-builder --use
docker buildx inspect --bootstrap