Skip to content

Linux Mint setup

Google Chrome

Make sure you have downloaded the most recent and stable version of .deb package (64-bit).

Terminal window
sudo apt install ./<file>.deb
sudo apt-get install -f

Git

Terminal window
sudo apt install git

GitHub

User configuration

Terminal window
git config --global user.name "Marco Antonio Gonzalez Junior"
git config --global user.email "m@rco.sh"

SSH configuration

Terminal window
ssh-keygen -t ed25519 -C "m@rco.sh"
Terminal window
eval "$(ssh-agent -s)"
ssh-add ~/.ssh/id_ed25519
cat ~/.ssh/id_ed25519.pub

Using the output above, create new Authentication and Signing keys on GitHUb

Testing the configuration
ssh -T git@github.com

SSH commit signature verification

Terminal window
git config --global gpg.format ssh
git config --global user.signingkey </PATH/TO/.SSH/KEY.PUB>