From 6e30af2c92a197c6dea17b17a7d6fb09cf243590 Mon Sep 17 00:00:00 2001 From: sthope Date: Fri, 3 Sep 2021 21:41:29 +0200 Subject: [PATCH] initial commit --- _posts/2021-09-03-ssh-keys.md | 21 +++++++++++++++++++++ gitpull | 3 +++ 2 files changed, 24 insertions(+) create mode 100644 _posts/2021-09-03-ssh-keys.md create mode 100644 gitpull diff --git a/_posts/2021-09-03-ssh-keys.md b/_posts/2021-09-03-ssh-keys.md new file mode 100644 index 0000000..2412854 --- /dev/null +++ b/_posts/2021-09-03-ssh-keys.md @@ -0,0 +1,21 @@ +--- +layout: post +title: "SSH Keys" +description: "" +author: sthope +image: +categories: [ ssh, ssh keys ] +comments: true +--- + +Generate a long random password with: +``` +cat /dev/urandom | tr -dc 'a-zA-Z0-9' | fold -w 64 | head -n 1 +``` + +Replace `very_long_secret` with the long generated password and replace `/.certs/service` with the location for your keys and the name (different name for each key "service") +Default generally is `~/.ssh/id_rsa`, you can omit `-f "/.certs/service"` if you don't want to choose it. +``` +ssh-keygen -t rsa -b 4096 -f "/.certs/service" -N jw7sfh9y2e5ma9er4qwy3a6cz3gpkcjwkd4r7j4h8czhqy2fbaypvw9rtv587q2k +``` + diff --git a/gitpull b/gitpull new file mode 100644 index 0000000..bae78b0 --- /dev/null +++ b/gitpull @@ -0,0 +1,3 @@ +#!/bin/bash + +git pull \ No newline at end of file