Back

Explore Courses Blog Tutorials Interview Questions
0 votes
2 views
in DevOps and Agile by (29.3k points)

I've just generated my RSA key pair, and I wanted to add that key to GitHub.

I tried cd id_rsa.pub and id_rsa.pub, but no luck. How can I access my SSH public key?

1 Answer

0 votes
by (50.2k points)

To access the ssh public key you can use 

cat ~/.ssh/id_rsa.pub 

Or

cat ~/.ssh/id_dsa.pub

To list the public keys you need to use:

$ ls ~/.ssh/*.pub

Thus, you can access the ssh public key.

Browse Categories

...