mention ssh-keygen in ssh-copy-id tip 0.4.4
authorMichael Prokop <mika@grml.org>
Wed, 8 Aug 2007 19:37:29 +0000 (21:37 +0200)
committerMichael Prokop <mika@grml.org>
Wed, 8 Aug 2007 19:37:29 +0000 (21:37 +0200)
debian/changelog
grml_tips

index aad0f0c..fea4a00 100644 (file)
@@ -2,7 +2,8 @@ grml-tips (0.4.4) unstable; urgency=low
 
   * Added tip 'record sound via rec', updated
     'Convert files from Unicode / UTF-8 to ISO' and
-    'Use a Vodafone 3G Datacard (UMTS) with Linux'.
+    'Use a Vodafone 3G Datacard (UMTS) with Linux' and
+    mention ssh-keygen in ssh-copy-id tip.
   
  -- Michael Prokop <mika@grml.org>  Fri, 27 Jul 2007 00:41:33 +0200
 
index df23ee8..d8ac68d 100644 (file)
--- a/grml_tips
+++ b/grml_tips
@@ -663,7 +663,9 @@ to get a list of all supported trees
 -- 
 Transfer your SSH public key to another host:
 
-% ssh-copy-id -i ~/.ssh/id_dsa.pub user@remote-system
+% ssh-keygen   # if you don't have a key yet
+[...]
+% ssh-copy-id -i ~/.ssh/id_rsa.pub user@remote-system
 or
 % cat $HOME/.ssh/id_rsa.pub  | ssh user@remote-system 'cat >> .ssh/authorized_keys'
 --