Posts tonen met het label ssh. Alle posts tonen
Posts tonen met het label ssh. Alle posts tonen

zondag 17 maart 2019

How to make ssh key


# Steps to take to make sshkeys for github
1. ssh-keygen -t rsa -b 4096 -f github_file -C "example"
2. create a passphrase
3. eval "$(ssh-agent -s)" # runs ssh-agent in the background
4. add the public key to your github account
5. ssh-add ~/.ssh/id_rsa # take the path of the private key
6. git remote set-url origin git@github.com:username/your-repository.git # use clone SSH of Gitlab and Github

vrijdag 1 februari 2019

SSH Key - Still asking for password and passphrase

Add Identity without Keychain

There may be times in which you don't want the passphrase stored in the keychain, but don't want to have to enter the passphrase over and over again.
You can do that like this:
ssh-add ~/.ssh/id_rsa 
This will ask you for the passphrase, enter it and it will not ask again until you restart.

Add Identity Using Keychain

As @dennis points out in the comments, to persist the passphrase through restarts by storing it in your keychain, you can use the -K option (-k for Ubuntu) when adding the identity like this:
ssh-add -K ~/.ssh/id_rsa
Once again, this will ask you for the passphrase, enter it and this time it will never ask again for this identity.

vrijdag 13 april 2018

ssh login

ssh -i /path/my-key-pair.pem ec2-user@public-dns-hostname

Enlarging Libreoffice window completely with command

 You can open the LibreOffice window completely by pressing the CTRL+Shift+J keys together.