Tag Archives: SSH
How to Add Passwordless User With SSH Key Authentication
I have encountered this problem of adding a system user to access another system with only public ssh key countless times. Every time I finish adding the user and think this time I am going to write about it so that I don’t have to search for it in google and go down the rabbit…
How to Add SSH Key to GitHub Account
Adding a ssh key to your github will allow you to access repositories via ssh rather then https. Generating SSH Key Pair Open a terminal and type – sudo ssh-keygen -t rsa -b 4096 -C "A comment to identify this key" Note -C stands for comment. It’s a common practice to use an email address…