Added tag 0.4.5 for changeset e1ed5f05b2087396cc7ef185b8310d3eab62c8e3
[grml-tips.git] / grml_tips
index df23ee8..2b150a5 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'
 -- 
@@ -2836,3 +2838,12 @@ Record sound:
 
 This will record a AIFF audio file.
 -- 
+Change passphrase / password of an existing SSH key:
+
+% ssh-keygen -p
+-- 
+Enable syntax highlighting in nano:
+
+Just uncomment the include directives for your respective
+language at the bottom of the file /etc/nanorc
+--