Difference between revisions of "Creating your ssh keys (private/public)"

From GLMWiki
Jump to: navigation, search
Line 1: Line 1:
Windows users
+
To create your public/private keys
  
http://msysgit.github.com/
+
Windows users
  
grab the latest version and install
+
open the Git Bash window
  
during your install it will ask about converting to window files say no keep as is (unix)
+
 
 +
Linux users
 +
 
 +
open any terminal application
 +
 
 +
ssh-keygen -t rsa -C "your_email@example.com"
 +
# Enter file in which to save the key
 +
# Enter passphrase (empty for no passphrase):
 +
# Enter passphrase again
 +
 +
replace the "your_email@example.com" with your actual email address. You can use the default for the file name to generate the key.
 +
 
 +
 
 +
Copy the key to your clipboard
 +
pbcopy < ~/.ssh/id_rsa.pub
 +
 
 +
Now you should have a copy in your clipboard of your public key. Send the key to steve@gaslightmedia.com.

Revision as of 16:38, 30 October 2013

To create your public/private keys

Windows users

open the Git Bash window


Linux users

open any terminal application

ssh-keygen -t rsa -C "your_email@example.com"
# Enter file in which to save the key
# Enter passphrase (empty for no passphrase): 
# Enter passphrase again

replace the "your_email@example.com" with your actual email address. You can use the default for the file name to generate the key.


Copy the key to your clipboard

pbcopy < ~/.ssh/id_rsa.pub

Now you should have a copy in your clipboard of your public key. Send the key to steve@gaslightmedia.com.