Skip to content

Instantly share code, notes, and snippets.

@adrian-taralunga
adrian-taralunga / Multiple SSH Keys for Different GitHub Accounts.md
Last active March 27, 2025 11:50
Multiple SSH Keys settings for different github account

Managing Multiple SSH Keys for Different GitHub Accounts

This gist outlines how to configure multiple SSH keys for different GitHub accounts on a single machine.

1. Generate SSH Keys

Generate two SSH key pairs, one for each GitHub account, ensuring you specify a unique file path for each.  Replace the example emails with your actual emails.

$ ssh-keygen -t rsa -f ~/.ssh/id_rsa_work -C "[email protected]" 
@Sitin
Sitin / setup.sh
Last active May 29, 2025 14:02
Run x86-64 Docker images on Raspberry Pi 4 (QEMU/QUS)
# Setup QEMU for x86-64 Docker images on Raspberry Pi 4
# Install Python3 and Docker first: https://dev.to/rohansawant/installing-docker-and-docker-compose-on-the-raspberry-pi-in-5-simple-steps-3mgl
# Install QUEMU (https://www.qemu.org/)
sudo apt-get install qemu binfmt-support qemu-user-static
# Use QUS in Docker (https://github.com/dbhi/qus) to configure x86_64 architecture
docker run --rm --privileged aptman/qus -s -- -p x86_64
# Test x86-64 image: