From: Michael Prokop Date: Wed, 8 Aug 2007 19:37:29 +0000 (+0200) Subject: mention ssh-keygen in ssh-copy-id tip X-Git-Tag: 0.4.4 X-Git-Url: http://git.grml.org/?a=commitdiff_plain;h=044dc85899d9d3da8bf659f2528169d9ba277b05;hp=cc3193940c320358f05813b8cdf93512b568072f;p=grml-tips.git mention ssh-keygen in ssh-copy-id tip --- diff --git a/debian/changelog b/debian/changelog index aad0f0c..fea4a00 100644 --- a/debian/changelog +++ b/debian/changelog @@ -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 Fri, 27 Jul 2007 00:41:33 +0200 diff --git a/grml_tips b/grml_tips index df23ee8..d8ac68d 100644 --- 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' --