Convert SSH2 key to OpenSSH format: ssh-keygen -i -f id_dsa_1024_a.pub > id_dsa_1024_a_openssh.pub Or to convert an OpenSSH key to SSH2: ssh-keygen -e -f id_dsa.pub > id_dsa_ssh2.pub
Posts Tagged ‘SSH’
BASH – making tab completion case insensitive
February 25th, 2010
No Comments
This is very lazy, but comes in handy for example if your browsing a Windows mount with random uppercases in file/folder names. Add: make your tab completion case insensitive To your $HOME/.inputrc file (create the file if it doesn’t exist). Alternatively you can make this userwide by adding it to /etc/inputrc . You might need [...]