Bash

Bourne Again SHell

Mount a Share

sudo mount -t cifs //10.10.145.5/SourceDir /home/<user>/mnt/destination -o username=<user>,password="",uid=1000

Generating an SSH Key

cd ~/.ssh
# Generate the Key
ssh-keygen -t rsa -b 4096 -C "your_email@example.com"
# Copy th ekey
cat gh_actions.pub >> ~/.ssh/authorized_keys
# Copy the key:
cat ~/.ssh/gh_actions