Answers for "get ssh key"

1

get my ssh key

cat ~/.ssh/id_rsa.pub 
# or 
cat ~/.ssh/id_dsa.pub
Posted by: Guest on July-13-2021
3

ssh get key

cat ~/.ssh/id_ed25519.pub
Posted by: Guest on December-09-2020
5

checking for existing ssh keys

$ ls -al ~/.ssh
# Lists the files in your .ssh directory, if they exist
Posted by: Guest on April-12-2020
4

create a ssh key

ssh-keygen -t rsa -C "[email protected]"
Posted by: Guest on May-08-2020
0

see ssh key

# see SSH key List
~/.ssh
# see public key from existing file
cat ~/ssh/<filename>.pub
Posted by: Guest on December-18-2020
3

ssh key

ssh-keygen -t ed25519 -C "[email protected]"
cat ~/.ssh/id_ed25519.pub | clip
Posted by: Guest on January-27-2021

Browse Popular Code Answers by Language