CreateSSHKey

Differences between revisions 7 and 9 (spanning 2 versions)
Revision 7 as of 2012-11-14 09:36:38
Size: 429
Editor: 80
Comment:
Revision 9 as of 2012-11-14 09:55:31
Size: 537
Editor: 80
Comment:
Deletions are marked like this. Additions are marked like this.
Line 5: Line 5:
=== Creating the Key in a Terminal === First, make sure you have install the SSH client:

{{{
$ sudo apt-get install openssh-client
}}}

=== Creating the SSH Key in a Terminal ===

SSH stands for Secure Shell. It's a method for connecting to remote places.

As a developer, you will need a SSH client in combination with a SSH key in order upload changes to Ubuntu source.

First, make sure you have install the SSH client:

$ sudo apt-get install openssh-client

Creating the SSH Key in a Terminal

To create a SSH key in a terminal:

$ ssh-keygen -t rsa

Read more about SSH in the Ubuntu Community Wiki

UbuntuStudio/CreateSSHKey (last edited 2012-11-14 10:00:30 by 80)