CreateSSHKey

Differences between revisions 3 and 11 (spanning 8 versions)
Revision 3 as of 2012-11-14 09:14:13
Size: 342
Editor: 80
Comment:
Revision 11 as of 2012-11-14 10:00:30
Size: 541
Editor: 80
Comment:
Deletions are marked like this. Additions are marked like this.
Line 1: Line 1:
||<tablestyle="float:right; font-size: 0.9em; background:#F1F1ED;margin: 0 0 1em 1em;" style="padding:0.5em;"><<TableOfContents(2)>>|| SSH stands for [[http://www.openssh.com/|Secure Shell]]. It's a method for connecting to remote places.
Line 3: Line 3:
== Creating the Key in a Terminal == As a developer, you will need a SSH client in combination with a SSH key in order upload changes to Ubuntu source.
Line 5: Line 5:
 * SSH stands for [[http://www.openssh.com/|Secure Shell]] First, make sure you have install the SSH client:

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

=== Creating the SSH Key in a Terminal ===
Line 13: Line 19:
== More on the SSH key ... == ''Read more about [[http://help.ubuntu.com/community/SSH|SSH]] at the Ubuntu Community Wiki''

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 at the Ubuntu Community Wiki

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